@charset "UTF-8";
@-webkit-keyframes fade-in {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
@keyframes fade-in {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
@-webkit-keyframes fade-in-up {
	from {
		opacity: 0;
		-webkit-transform: translateY(5%);
		transform: translateY(5%)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}
@keyframes fade-in-up {
	from {
		opacity: 0;
		-webkit-transform: translateY(5%);
		transform: translateY(5%)
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}
[data-scroll=fade-in-up], [data-scroll=fade-in] {
	opacity: 0;
	will-change: transform, opacity
}
[data-scroll=fade-in].is-show {
	-webkit-animation: fade-in 1s cubic-bezier(.39, .575, .565, 1) .3s forwards;
	animation: fade-in 1s cubic-bezier(.39, .575, .565, 1) .3s forwards
}
[data-scroll=fade-in-up].is-show {
	-webkit-animation: fade-in-up 1s cubic-bezier(.39, .575, .565, 1) .3s forwards;
	animation: fade-in-up 1s cubic-bezier(.39, .575, .565, 1) .3s forwards
}
@-webkit-keyframes reveal {
	0% {
		width: 0
	}
	50% {
		width: 100%
	}
	100% {
		left: 0;
		right: auto;
		width: 0
	}
}
@keyframes reveal {
	0% {
		width: 0
	}
	50% {
		width: 100%
	}
	100% {
		left: 0;
		right: auto;
		width: 0
	}
}
@-webkit-keyframes reveal-img {
	0% {
		opacity: 0
	}
	50% {
		opacity: 0
	}
	51% {
		opacity: 1
	}
	100% {
		opacity: 1
	}
}
@keyframes reveal-img {
	0% {
		opacity: 0
	}
	50% {
		opacity: 0
	}
	51% {
		opacity: 1
	}
	100% {
		opacity: 1
	}
}
.c-button {
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 500;
	width: 100%;
	max-width: 350px;
	border: 1px solid;
	margin-left: auto;
	margin-right: auto;
	padding: 14px 28px;
	line-height: 1.2;
	text-decoration: none;
	-webkit-transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1), -webkit-box-shadow .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform .5s cubic-bezier(.23, 1, .32, 1);
	transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1), -webkit-box-shadow .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform .5s cubic-bezier(.23, 1, .32, 1);
	-o-transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s cubic-bezier(.23, 1, .32, 1), transform .5s cubic-bezier(.23, 1, .32, 1);
	transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s cubic-bezier(.23, 1, .32, 1), transform .5s cubic-bezier(.23, 1, .32, 1);
	transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1), box-shadow .5s cubic-bezier(.23, 1, .32, 1), transform .5s cubic-bezier(.23, 1, .32, 1), -webkit-box-shadow .5s cubic-bezier(.23, 1, .32, 1), -webkit-transform .5s cubic-bezier(.23, 1, .32, 1);
	overflow: hidden;
	cursor: pointer
}
.c-button.-next::after {
	position: absolute;
	top: 50%;
	right: 30px;
	display: block;
	content: "";
	width: 40px;
	height: 8px;
	background: url(../img/common/icon_arrow.svg) no-repeat;
	background-size: contain;
	margin-top: -4px;
	-webkit-transition: right .3s ease;
	-o-transition: right .3s ease;
	transition: right .3s ease
}
.c-button.-next:hover::after {
	right: 20px
}
.c-button.-blue {
	color: #225594;
	border-color: #225594;
	background-color: #fff
}
.c-button.-blue.-next::after {
	background-image: url(../img/common/icon_arrow-blue.svg)
}
.c-button.-blue:hover {
	color: #fff;
	background-color: #225594
}
.c-button.-blue:hover.-next::after {
	background-image: url(../img/common/icon_arrow.svg)
}
.c-button.-ghost {
	color: #fff;
	border-color: #fff;
	background-color: transparent
}
.c-button.-management {
	color: #3c2f50;
	background-color: #fff;
	border: 1px solid #3c2f50;
	max-width: 550px
}
.c-button.-management.-next::after {
	background-image: url(../img/common/icon_arrow-purple.svg)
}
.c-button.-management:hover {
	color: #fff;
	background-color: #3c2f50
}
.c-button.-management:hover.-next::after {
	background-image: url(../img/common/icon_arrow.svg)
}
.c-button.-lg {
	max-width: 100%
}
.c-button[disabled], .c-button[disabled]:hover {
	color: #fff;
	border-color: #555;
	background-color: #555;
	cursor: not-allowed;
	opacity: .4
}
.c-button[disabled].-next::after, .c-button[disabled]:hover.-next::after {
	background-image: url(../img/common/icon_arrow.svg)
}
.c-breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	list-style: none;
	padding-top: 15px;
	padding-bottom: 35px
}
.c-breadcrumbs__item {
	font-size: 13px;
	font-weight: 400
}
.c-breadcrumbs__item a {
	color: #000;
	text-align: underline
}
.c-breadcrumbs__item a:hover {
	color: #225594
}
.c-breadcrumbs__item::after {
	display: inline-block;
	width: 0;
	height: 0;
	content: "";
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent #225594;
	margin: 0 6px
}
.c-breadcrumbs__item:last-child::after {
	display: none
}
.c-line {
	display: block;
	content: "";
	width: 80px;
	height: 2px;
	margin: 40px auto 50px
}
.c-line.-blue {
	background-color: #225594
}
.c-line.-purple {
	background-color: #3c2f50
}
.c-headline {
	position: relative;
	color: #fff;
	line-height: 1;
	background-color: #225594;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 82px 0
}
.c-headline__eng {
	font-size: 50px;
	font-weight: 300;
	margin-bottom: 5px
}
.c-headline__ja {
	font-size: 30px;
	font-weight: 700
}
.c-headline.-consulting {
	background-image: url(../img/common/bg_title-consulting.jpg)
}
.c-headline.-management {
	background-image: url(../img/common/bg_title-management.jpg)
}
.c-headline.-corporate {
	background-image: url(../img/common/bg_title-corporate.jpg)
}
.c-headline.-download {
	background-image: url(../img/common/bg_title-download.jpg)
}
.c-headline.-blog {
	background-image: url(../img/common/bg_title-blog.jpg)
}
.c-headline.-column {
	background-image: url(../img/common/bg_title-column.jpg);
	height: 250px
}
.c-headline.-blog .c-headline__eng {
	color: #d50012
}
.c-headline.-blog .c-headline__ja {
	color: #333
}
.c-headline.-solution {
	padding-top: 45px;
	padding-bottom: 45px
}
.c-headline.-common_building {
	background-image: url(../img/solution/common_building/img_main.jpg)
}
.c-headline.-ten-meters {
	background-image: url(../img/solution/10meters_4stories/img_main.jpg)
}
.c-headline.-soundproof {
	background-image: url(../img/solution/soundproof/img_main.jpg)
}
.c-headline__arrow {
	position: absolute;
	left: 0;
	bottom: 0;
	display: block;
	content: "";
	width: 100%;
	height: 10px
}
.c-headline__arrow::after, .c-headline__arrow::before {
	position: absolute;
	content: "";
	display: block;
	width: 50%;
	height: 100%;
	border-bottom: 10px solid #fff
}
.c-headline__arrow::before {
	left: 0;
	border-right: 10px solid transparent
}
.c-headline__arrow::after {
	right: 0;
	border-left: 10px solid transparent
}
.c-lg-caption {
	color: #225594;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px
}
.c-contents-txt {
	font-size: 16px;
	line-height: 1.9
}
.c-pagination {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	padding-top: 45px
}
.c-pagination a, .c-pagination span {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #333;
	font-size: 22px;
	font-weight: 500;
	width: 50px;
	height: 50px;
	background-color: #e6e6e6;
	margin: 0 1px 1px;
	text-decoration: none;
	z-index: 1
}
.c-pagination .is-current, .c-pagination a:hover {
	color: #fff;
	background-color: #225594
}
.p-hero {
	width: 100%;
	background: url(../img/home/bg_hero.jpg) center center no-repeat;
	background-size: cover
}
.p-hero__inner {
	position: relative;
	width: 100%;
	max-width: 1340px;
	margin: auto;
	z-index: 1
}
.p-hero__catch {
	z-index: 2
}
.p-hero__catch__txt {
	color: #fff;
	font-size: 28px;
	line-height: 1.4;
	opacity: 0
}
.p-hero.is-show .p-hero__catch__txt {
	opacity: 0;
	-webkit-animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1s forwards;
	animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1s forwards
}
.p-hero__catch__txt span {
	display: block
}
.p-hero__catch__logo {
	display: block;
	margin-top: 12px;
	opacity: 0
}
.p-hero.is-show .p-hero__catch__logo {
	-webkit-animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1.2s forwards;
	animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1.2s forwards
}
.p-hero__btn {
	display: block;
	width: 144px;
	height: 144px;
	border-radius: 50%;
	-webkit-transition: opacity .4s ease, -webkit-transform .4s ease;
	transition: opacity .4s ease, -webkit-transform .4s ease;
	-o-transition: transform .4s ease, opacity .4s ease;
	transition: transform .4s ease, opacity .4s ease;
	transition: transform .4s ease, opacity .4s ease, -webkit-transform .4s ease
}
.p-hero__btn:hover {
	opacity: .9;
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	transform: scale(1.06)
}
.p-hero__btn__item {
	opacity: 0
}
.p-hero.is-show .p-hero__btn__item {
	-webkit-animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1.4s forwards;
	animation: fade-in-up .6s cubic-bezier(.39, .575, .565, 1) 1.4s forwards
}
.p-slide {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin-left: auto
}
.p-slide__container {
	position: relative;
	width: 100%;
	padding-top: 61.1111%;
	z-index: 1
}
.p-slide__container::before {
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	content: "";
	width: 0;
	height: 100%;
	background-color: #fff;
	z-index: 1
}
.p-hero.is-show .p-slide__container::before {
	-webkit-animation: reveal 1s cubic-bezier(1, 0, 0, 1) forwards;
	animation: reveal 1s cubic-bezier(1, 0, 0, 1) forwards;
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}
.p-slide__next-btn {
	position: absolute;
	top: 50%;
	left: 0;
	width: 50px;
	height: 50px;
	background-color: transparent;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;
	z-index: 2;
	opacity: 0
}
.p-hero.is-show .p-slide__next-btn {
	-webkit-animation: fade-in .3s linear 1s forwards;
	animation: fade-in .3s linear 1s forwards
}
.p-slide__progress {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 0;
	height: 5px;
	background-color: #225594;
	will-change: width;
	z-index: 2
}
.p-slide__progress.-animeted {
	-webkit-transition: width .05s linear;
	-o-transition: width .05s linear;
	transition: width .05s linear
}
.p-slide__images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: 0
}
.p-hero.is-show .p-slide__images {
	-webkit-animation: reveal-img 1s cubic-bezier(1, 0, 0, 1) forwards;
	animation: reveal-img 1s cubic-bezier(1, 0, 0, 1) forwards;
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}
.slide-enter-active, .slide-leave-active {
	-webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
	-o-transition: all 1s cubic-bezier(1, 0, 0, 1);
	transition: all 1s cubic-bezier(1, 0, 0, 1)
}
.slide-enter-active {
	z-index: 1
}
.slide-leave-active {
	z-index: -1
}
.p-slide__item {
	position: absolute;
	top: 0;
	left: 0;
	color: #225594;
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none
}
.slide-enter-active .p-slide__item, .slide-leave-active .p-slide__item {
	-webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
	-o-transition: all 1s cubic-bezier(1, 0, 0, 1);
	transition: all 1s cubic-bezier(1, 0, 0, 1)
}
.p-slide__item__img {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -1
}
.p-slide__item__img img {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}
.slide-enter-active .p-slide__item__img, .slide-leave-active .p-slide__item__img {
	-webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
	-o-transition: all 1s cubic-bezier(1, 0, 0, 1);
	transition: all 1s cubic-bezier(1, 0, 0, 1)
}
.slide-enter .p-slide__item__img {
	width: 0%
}
.slide-enter-to .p-slide__item__img {
	width: 100%
}
.slide-leave .p-slide__item__img, .slide-leave-active .p-slide__item__img, .slide-leave-to .p-slide__item__img {
	width: 100%;
	z-index: -2
}
.p-slide__item__button {
	position: absolute;
	right: 40px;
	bottom: 40px;
	color: #fff;
	max-width: 250px;
	border-color: #fff;
	background-color: rgba(34, 85, 148, .7);
	z-index: 1
}
.slide-enter-active .p-slide__item__button, .slide-leave-active .p-slide__item__button {
	-webkit-transition: opacity 1s cubic-bezier(1, 0, 0, 1);
	-o-transition: opacity 1s cubic-bezier(1, 0, 0, 1);
	transition: opacity 1s cubic-bezier(1, 0, 0, 1)
}
.slide-enter .p-slide__item__button {
	opacity: 0
}
.slide-enter-to .p-slide__item__button {
	opacity: 1
}
.p-slide__item__box {
	position: absolute;
	background-color: rgba(255, 255, 255, .8);
	z-index: 2
}
.slide-enter-active .p-slide__item__box, .slide-leave-active .p-slide__item__box {
	-webkit-transition: opacity 1s cubic-bezier(1, 0, 0, 1);
	-o-transition: opacity 1s cubic-bezier(1, 0, 0, 1);
	transition: opacity 1s cubic-bezier(1, 0, 0, 1)
}
.slide-enter .p-slide__item__box {
	opacity: 0
}
.slide-enter-to .p-slide__item__box {
	opacity: 1
}
.p-slide__item__caption {
	font-weight: 700;
	line-height: 1.4
}
.p-slide__item__caption span {
	display: block
}
.p-slide__item__txt {
	font-size: 16px;
	line-height: 1.6;
	white-space: nowrap
}
.p-slide__pagination {
	position: absolute;
	left: 0;
	bottom: -25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	opacity: 0
}
.p-hero.is-show .p-slide__pagination {
	-webkit-animation: fade-in .3s linear 1s forwards;
	animation: fade-in .3s linear 1s forwards
}
.p-slide__pagination__item {
	margin: 0 5px
}
.p-slide__pagination__btn {
	display: block;
	width: 52px;
	height: 6px;
	background-color: #c1cfe0;
	cursor: pointer
}
.p-slide__pagination__btn.is-current {
	background-color: #225594
}
.p-slide__bg {
	position: absolute;
	opacity: .7;
	background-color: #225594
}
.p-slide__bg__item {
	position: absolute;
	top: 0;
	left: -126px;
	fill: #225594;
	width: 126px;
	height: 100%
}
.p-news {
	position: relative;
	padding-top: 40px;
	padding-bottom: 40px
}
.p-news__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.p-news__title {
	position: relative
}
.p-news__list {
	overflow-y: auto
}
@-webkit-keyframes skeleton-animation {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
@keyframes skeleton-animation {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%)
	}
	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%)
	}
}
.p-news__list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 14px;
	line-height: 1.6;
	border-bottom: 1px dotted #d4d4d4;
	padding-top: 10px;
	padding-bottom: 10px
}
.p-news__list__loading {
	position: relative;
	display: block;
	width: 100%;
	height: 20px;
	overflow: hidden
}
.p-news__list__loading::after, .p-news__list__loading::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 100%
}
.p-news__list__loading::before {
	background: #d9d9d9;
	z-index: 1
}
.p-news__list__loading::after {
	background: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(rgba(255, 255, 255, .5)), to(transparent));
	background: -o-linear-gradient(left, transparent, rgba(255, 255, 255, .5), transparent);
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
	-webkit-animation: skeleton-animation 1.2s linear infinite;
	animation: skeleton-animation 1.2s linear infinite;
	z-index: 2
}
.p-news__list__date {
	width: 85px
}
.p-news__list__caption {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.p-news__list__caption span {
	display: inline-block
}
.p-news__list__caption span:nth-child(1) {
	margin-right: 10px
}
.p-solution__title {
	color: #225594;
	font-size: 70px;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 10px;
	text-align: center
}
.p-solution__contents {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	text-decoration: none;
	margin-bottom: 10px
}
.p-solution__contents:hover .p-solution__contents__img::before {
	opacity: .9;
	-webkit-transform: scale(1.05);
	-ms-transform: scale(1.05);
	transform: scale(1.05)
}
.p-solution__contents:hover .c-button.-ghost {
	color: #225594;
	background-color: #fff
}
.p-solution__contents:hover .c-button.-next::after {
	background-image: url(../img/common/icon_arrow-blue.svg);
	right: 20px
}
.p-solution__contents.-new_answer .p-solution__contents__img::before {
	background-image: url(../img/home/img_new_answer.jpg)
}
.p-solution__contents.-new_answer .p-solution__contents__txt {
	background-color: #225594;
	background-image: url(../img/home/bg_new_answer.png)
}
.p-solution__contents.-baikyaku .p-solution__contents__img::before {
	background-image: url(../img/home/img_baikyaku.jpg)
}
.p-solution__contents.-baikyaku .p-solution__contents__txt {
	background-color: #229394;
	background-image: url(../img/home/bg_baikyaku.png)
}
.p-solution__contents.-management .p-solution__contents__img::before {
	background-image: url(../img/home/img_management.jpg)
}
.p-solution__contents.-management .p-solution__contents__txt {
	background-color: #3c2f50;
	background-image: url(../img/home/bg_management.png)
}
.p-solution__contents.-reform {
	margin-bottom: 0
}
.p-solution__contents.-reform .p-solution__contents__img::before {
	background-image: url(../img/home/img_reform.jpg)
}
.p-solution__contents.-reform .p-solution__contents__txt {
	background-color: #0D4757;
	background-image: url(../img/home/bg_reform.png)
}
.p-solution__contents__img {
	position: relative;
	width: 50%;
	background-color: #d4d4d4;
	overflow: hidden
}
.p-solution__contents__img::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
	transition: opacity .5s ease, -webkit-transform .5s ease;
	-o-transition: transform .5s ease, opacity .5s ease;
	transition: transform .5s ease, opacity .5s ease;
	transition: transform .5s ease, opacity .5s ease, -webkit-transform .5s ease;
	will-change: transform, opacity
}
.p-solution__contents__txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 50%;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: contain
}
.p-solution__contents__caption {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 14px
}
.p-solution__contents__caption div {
	display: block
}
.p-solution__contents__caption span {
	font-size: 28px;
	border-bottom: 2px solid red
}
.p-solution__contents__detail {
	font-size: 16px;
	margin-bottom: 24px
}
.p-aboutus__container {
	background-color: #fafafa;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2018%2018%22%3E%3Crect%20width%3D%226%22%20height%3D%226%22%20style%3D%22fill%3A%23ebebeb%22%2F%3E%3C%2Fsvg%3E") left top repeat;
	background-size: 3px 3px;
	padding: 50px 20px
}
.p-aboutus__caption {
	color: #225594;
	font-size: 50px;
	font-weight: 300;
	margin-bottom: 20px;
	line-height: 1;
	text-align: center
}
.p-aboutus__bnrs {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto
}
.p-aboutus__bnrs__container {
	width: 100%;
	white-space: nowrap
}
.p-aboutus__bnrs__link, .p-aboutus__external__item {
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
	will-change: opacity
}
.p-aboutus__bnrs__link:hover, .p-aboutus__external__item:hover {
	opacity: .7
}
.p-solution__external {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 35px;
	padding-bottom: 50px
}
.p-solution__external__item {
	border: 1px solid #c5c5c5;
	text-decoration: none
}
.p-solution__external__button {
	color: #225594;
	border-color: #225594;
	background-color: transparent
}
.p-solution__external__button::after {
	position: absolute;
	right: 30px;
	top: 50%;
	content: "";
	width: 21px;
	height: 15px;
	background: url(../img/common/icon_external-blue.svg) no-repeat;
	margin-top: -7.5px
}
.p-solution__external__button:not(:last-child) {
	margin-bottom: 14px
}
.p-solution__external__button:hover {
	color: #fff;
	background-color: #225594
}
.p-solution__external__button:hover::after {
	background-image: url(../img/common/icon_external-white.svg)
}
.p-solution__external__txt {
	padding: 14px 20px 30px
}
.p-solution__external__caption {
	color: #333;
	font-size: 20px;
	margin-bottom: 14px;
	text-align: center
}
.p-aboutus__external {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	max-width: 760px;
	margin: auto;
	padding: 50px 20px
}
.p-aboutus__external__item {
	display: block
}
.p-aboutus__external__l {
	width: 100%;
	max-width: 400px
}
.p-aboutus__external__r {
	width: 100%
}
.p-reason-title {
	position: relative;
	width: 100%;
	background: #4883c4 url(../img/reason/bg_title.png) center center repeat;
	background-size: 127px 128.5px;
	margin-bottom: 20px;
	padding: 70px 20px 50px;
	text-align: center
}
.p-reason-title::after {
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 20px 20px 0 20px;
	border-color: #4883c4 transparent transparent transparent;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%)
}
.p-reason-lead {
	position: relative;
	color: #225594;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center
}
.p-reason-lead span {
	color: #d50012
}
.p-reason-lead::after {
	display: block;
	content: "";
	width: 80px;
	height: 2px;
	background-color: #333;
	margin: 50px auto 55px
}
.p-reason-caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	font-weight: 700;
	background-color: #333;
	margin-bottom: 20px
}
.p-reason-caption__num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 12px;
	width: 50px;
	background-color: #d50012;
	padding: 5px;
	line-height: 1;
	text-align: center
}
.p-reason-caption__num span {
	display: block;
	font-size: 24px;
	margin-top: 2px
}
.p-reason-caption__txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	line-height: 1.4
}
.p-reason-contents {
	background-color: #f4f4f4;
	margin-bottom: 40px;
	padding: 30px
}
.p-reason-contents__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%
}
.p-reason-contents__container+.p-reason-contents__container {
	margin-top: 35px
}
.p-reason-contents__image figcaption {
	font-size: 11.5px;
	padding-top: 8px;
	line-height: 1.6
}
.p-reason-contents__image.-two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.p-reason-contents__image.-two-column figure {
	width: 50%
}
.p-reason-contents__txt p {
	font-size: 16px
}
.p-reason-contents__txt p+p {
	margin-top: 25px
}
.p-reason-contents__answer {
	color: #225594;
	font-size: 24px;
	font-weight: 700;
	text-align: center
}
.p-reason-contents__answer::before {
	display: block;
	content: "";
	width: 42px;
	height: 21px;
	background: url(../img/reason/icon_arrow.svg) no-repeat;
	background-size: contain;
	margin: 30px auto 15px
}
.p-reason-cta {
	padding: 10px 0 45px
}
.p-reason-cta__txt {
	color: #225594;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	text-align: center
}
.p-works-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	width: 100%;
	background-color: #225594;
	margin-bottom: 30px;
	text-align: center
}
.p-works-title__ja {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 8px
}
.p-works-title__ja span {
	display: block
}
.p-works-title__en {
	font-size: 11px;
	font-weight: 700;
	line-height: 1
}
.p-works-lead {
	font-size: 16px;
	line-height: 1.9
}
.p-works-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -3px;
	margin-right: -3px;
	padding-bottom: 55px
}
.p-works-nav__item {
	margin-bottom: 5px;
	padding: 0 3px
}
.p-works-nav__button {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #000;
	font-weight: 700;
	width: 100%;
	text-decoration: none;
	background-color: #f0faff;
	border: 1px solid #225594
}
.p-works-nav__button span {
	display: block
}
.p-works-nav__button::after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: #225594 transparent transparent transparent;
	margin: auto auto 0
}
.p-works-nav__button__num {
	color: #225594;
	line-height: 1
}
.p-works-nav__button__caption {
	line-height: 1.6
}
.p-works-section {
	padding-bottom: 60px
}
.p-works-section.-blue {
	background-color: #f0faff
}
.p-works-caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px
}
.p-works-caption__num {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	background-color: #225594;
	text-align: center
}
.p-works-caption__txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	color: #225594;
	font-weight: 700;
	line-height: 1.4
}
.p-works-point__caption {
	position: relative;
	color: #225594;
	font-weight: 700;
	margin-bottom: 8px
}
.p-works-point__caption::before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: "";
	width: 27px;
	height: 31px;
	background: url(../img/works/icon_like.svg) center center no-repeat;
	background-size: contain
}
.p-works-point__txt {
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 20px
}
.p-works-point__txt span {
	display: block
}
.p-works-gallery {
	position: relative;
	width: 100%;
	background-color: #fff;
	overflow: hidden;
	list-style: none;
	padding: 0;
	-webkit-box-shadow: 0 0 30px rgba(114, 126, 137, .3);
	box-shadow: 0 0 30px rgba(114, 126, 137, .3);
	z-index: 1
}
.p-works-gallery__wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	z-index: 1
}
.p-works-gallery__img {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	-o-transition-property: transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	text-align: center
}
.p-works-gallery__button {
	position: absolute;
	top: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 40px;
	height: 100px;
	background-color: rgba(34, 85, 148, .7);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 2
}
.p-works-gallery__button::after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid
}
.p-works-gallery__button.-prev {
	left: 0
}
.p-works-gallery__button.-prev::after {
	border-width: 7px 8px 7px 0;
	border-color: transparent #fff transparent transparent
}
.p-works-gallery__button.-next {
	right: 0
}
.p-works-gallery__button.-next::after {
	border-width: 7px 0 7px 8px;
	border-color: transparent transparent transparent #fff
}
.p-owners-title {
	margin-bottom: 30px;
	text-align: center
}
.p-owners-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: -1.5px;
	padding-bottom: 40px
}
.p-owners-nav__item {
	width: 50%;
	padding: 1.5px
}
.p-owners-nav__bnr {
	position: relative;
	display: block
}
.p-owners-nav__bnr::after, .p-owners-nav__bnr::before {
	position: absolute;
	display: block;
	content: ""
}
.p-owners-nav__bnr::before {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .1);
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
	will-change: opacity;
	z-index: 2
}
.p-owners-nav__bnr::after {
	left: 50%;
	bottom: 15px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #fff transparent transparent transparent;
	margin-left: -3.5px;
	z-index: 1;
	-webkit-transition: bottom .3s ease;
	-o-transition: bottom .3s ease;
	transition: bottom .3s ease
}
.p-owners-nav__bnr:hover::before {
	opacity: 1
}
.p-owners-nav__bnr:hover::after {
	bottom: 10px
}
.p-owners-container {
	padding-top: 60px;
	padding-bottom: 60px
}
.p-owners-container.-blue {
	background-color: #dbf2f5
}
.p-owners-engtitle {
	line-height: 1;
	margin-bottom: 8px;
	padding-left: 2px
}
.p-owners-name {
	color: #225594;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 15px
}
.p-owners-lead {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	padding-bottom: 30px
}
.p-owners-lead__txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	color: #fff;
	font-weight: 700;
	background-color: #225594
}
.p-owners-lead__img figcaption {
	font-size: 14px;
	padding-top: 4px
}
.p-owners-contents {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 40px;
	padding-bottom: 40px;
	border-top: 1px solid #c8d5e4
}
.p-owners-contents__caption {
	color: #333;
	margin-bottom: 12px
}
.p-owners-contents__img {
	width: auto
}
.p-owners-contents__img figcaption {
	font-size: 14px;
	padding-top: 4px
}
.p-owners-message {
	color: #225594;
	font-weight: 700;
	line-height: 1.8;
	background-color: #fff
}
.p-owners-message.-blue {
	background-color: #dbf2f5
}
.p-management-title {
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.3;
	background-color: #3c2f50;
	margin-bottom: 25px;
	padding: 12px 22px
}
.p-management-container {
	padding-bottom: 50px
}
.p-management-top-txt {
	color: #3c2f50;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.4
}
.p-management-top-txt span {
	display: block;
	font-size: 30px
}
.p-management-lead {
	position: relative
}
.p-management-lead__lg-txt {
	color: #3c2f50;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 14px
}
.p-management-lead__lg-txt.-md-space {
	margin-bottom: 24px
}
.p-management-links {
	counter-reset: num;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 30px
}
.p-management-links__item {
	counter-increment: num;
	padding: 10px
}
.p-management-links__link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	text-decoration: none;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease
}
.p-management-links__link:hover {
	opacity: .7
}
.p-management-links__link.-cleaning {
	background-image: url(../img/management/img_cleaning_thumb.jpg)
}
.p-management-links__link.-administrator {
	background-image: url(../img/management/img_administrator_thumb.jpg)
}
.p-management-links__link.-repair {
	background-image: url(../img/management/img_repair_thumb.jpg)
}
.p-management-links__link.-repairplan {
	background-image: url(../img/management/img_repairplan_thumb.jpg)
}
.p-management-links__link.-officework {
	background-image: url(../img/management/img_officework_thumb.jpg)
}
.p-management-links__link.-buildinginformation {
	background-image: url(../img/management/img_buildinginformation_thumb.jpg)
}
.p-management-links__link.-inspection {
	background-image: url(../img/management/img_inspection_thumb.jpg)
}
.p-management-links__link.-leasing {
	background-image: url(../img/management/img_leasing_thumb.jpg)
}
.p-management-links__link.-result {
	background-image: url(../img/management/img_result_thumb.jpg)
}
.p-management-links__caption {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	background-color: rgba(60, 47, 80, .8);
	padding: 14px 20px
}
.p-management-links__caption span {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.p-management-links__caption::before {
	content: counter(num) ".";
	margin-right: 3px
}
.p-management-links__caption::after {
	display: inline-block;
	content: "";
	width: 24px;
	height: 6px;
	background: url(../img/common/icon_arrow.svg) no-repeat;
	background-size: contain;
	margin-left: 16px
}
.p-management-contents {
	background-color: #f2f1f3;
	margin-bottom: 40px;
	padding: 50px
}
.p-management-contents__title-area {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 18px
}
.p-management-contents__lg-caption {
	color: #3c2f50;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px
}
.p-management-contents__lg-caption.-md-space {
	margin-bottom: 24px
}
.p-management-contents__md-caption {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	background-color: #3c2f50;
	margin-bottom: 10px;
	padding: 10px 20px
}
.p-management-contents__md-caption.-lg-space {
	margin-bottom: 48px
}
.p-management-contents__md-caption.-md-space {
	margin-bottom: 24px
}
.p-management-contents__note {
	font-size: 12px
}
.p-management-contents__main-img {
	margin-bottom: 30px;
	text-align: center
}
.p-management-contents__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.p-management-contents__list li {
	position: relative;
	font-size: 16px;
	line-height: 1.5;
	border-bottom: 1px solid #d5d2d8;
	margin-bottom: 8px;
	padding-left: 14px;
	padding-bottom: 8px
}
.p-management-contents__list li::before {
	position: absolute;
	left: 0;
	top: 0;
	content: "・"
}
.p-management-contents__list.-lg-space {
	margin-bottom: 42px
}
.p-management-contents__list.-md-space {
	margin-bottom: 32px
}
.p-management-contents__list.-two-column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.p-management-contents__list.-noline li {
	border-bottom: none
}
.p-repairplan-docs {
	margin-bottom: 25px;
	text-align: center
}
.p-repairplan-chart {
	margin-bottom: 70px
}
.p-buildinginformation__container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.p-buildinginformation__item:nth-child(1) {
	width: 410px
}
.p-buildinginformation__item:nth-child(2) {
	width: 465px;
	margin-left: 20px
}
.p-management-notes {
	font-size: 14px;
	line-height: 1.9;
	border-top: 1px solid #d5d2d8;
	padding-top: 20px
}
.p-management-notes li {
	padding-left: 1em;
	text-indent: -1em
}
.p-result-caption {
	color: #3c2f50;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px;
	text-align: center
}
.p-result-contents {
	border: 1px solid #3c2f50
}
.p-result-chart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 38px
}
.p-result-chart__list {
	font-size: 16px;
	line-height: 1.8
}
.p-result-chart__list li {
	border-bottom: 1px solid #d3d0d6;
	margin-bottom: 6px;
	padding-bottom: 6px
}
.p-result-chart__list li::before {
	position: relative;
	top: -1px;
	display: inline-block;
	content: "";
	width: 13px;
	height: 13px;
	margin-right: 8px;
	vertical-align: middle
}
.p-result-chart__list li:nth-child(1)::before {
	background-color: #ff8495
}
.p-result-chart__list li:nth-child(2)::before {
	background-color: #ffb447
}
.p-result-chart__list li:nth-child(3)::before {
	background-color: #77bb59
}
.p-result-chart__list li:nth-child(4)::before {
	background-color: #418ab3
}
.p-result-note {
	font-size: 14px;
	padding-top: 6px;
	text-align: right
}
.p-company-outline {
	font-size: 16px;
	width: 100%
}
.p-company-outline tr {
	border-top: 1px dotted #d4d4d4;
	border-bottom: 1px dotted #d4d4d4
}
.p-company-outline td, .p-company-outline th {
	padding-top: 12px;
	padding-bottom: 12px
}
.p-company-outline th {
	color: #225594;
	font-weight: 400;
	width: 150px;
	text-align: left;
	vertical-align: top
}
.p-company-outline td {
	text-align: left
}
.p-company-outline td>dl>div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-bottom: 1px dotted #d4d4d4;
	margin-bottom: 12px;
	padding-bottom: 12px
}
.p-company-outline td>dl>div:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0
}
.p-company-outline td>dl>div>dt {
	width: 164px
}
.p-company-outline td>dl>div>dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.p-company-outline__place {
	border-bottom: 1px dotted #d4d4d4;
	margin-bottom: 12px;
	padding-bottom: 12px
}
.p-company-outline__place:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0
}
.p-company-outline__map {
	padding: 15px 0
}
.p-company-outline__contact {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between
}
.p-company-outline__contact dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.p-company-outline__contact dl dt {
	width: 8.3em
}
.p-company-outline__contact dl dd {
	margin-right: 14px
}
.p-company-outline__contact dl dd:last-child {
	margin-right: 0
}
.p-download-container {
	border: 1px solid #d4d4d4
}
.p-download-caption {
	color: #225594;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px
}
.p-download-table {
	width: 100%;
	line-height: 1.4;
	border: 1px solid #225594
}
.p-download-table td, .p-download-table th {
	border: 1px solid #225594
}
.p-download-table thead th {
	color: #225594;
	font-size: 16px;
	font-weight: 700;
	background-color: #eaeff5;
	padding: 12px;
	text-align: center
}
.p-download-table thead th:nth-child(1) {
	background-color: #fff
}
.p-download-table tbody th {
	color: #fff;
	font-weight: 700;
	line-height: 1.4;
	background-color: #6085b2;
	text-align: center
}
.p-download-table tbody th span {
	display: block
}
.p-download-table tbody .place {
	font-weight: 700;
	vertical-align: middle;
	text-align: center
}
.p-download-table a[href$=".pdf"] {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.p-download-table a[href$=".pdf"]:hover {
	color: #225594
}
.p-download-table a[href$=".pdf"]::before {
	display: inline-block;
	content: "";
	width: 25px;
	height: 31px;
	background: url(../img/common/icon_pdf.svg) no-repeat;
	background-size: contain;
	margin-right: 15px
}
.p-download-section {
	padding: 30px 0;
	border-bottom: 1px solid #d4d4d4
}
.p-download-contact dt {
	color: #225594;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 8px
}
.p-download-contact dd {
	font-size: 16px
}
.p-download-contact ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.p-download-contact ul li {
	font-size: 18px;
	font-weight: 700;
	margin-right: 1em
}
.p-download-contact ul li:last-child {
	margin-right: 0
}
.p-download-contact ul li a, .p-download-contact ul li span {
	color: #225594;
	text-decoration: none
}
.p-download-contact ul li a:hover {
	color: #225594;
	text-decoration: underline
}
.p-privacy-container {
	border: 1px solid #d4d4d4;
	padding: 40px
}
.p-privacy-contents {
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 40px
}
.p-privacy-contents ol {
	margin-left: 50px
}
.p-privacy-contents:last-child {
	margin-bottom: 0
}
.p-privacy-caption {
	position: relative;
	color: #225594;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.4;
	border-bottom: 1px solid #225594;
	margin-bottom: 16px;
	padding: 0 0 16px 28px
}
.p-privacy-caption::before {
	position: absolute;
	left: 0;
	top: 7px;
	content: "";
	width: 18px;
	height: 18px;
	background-color: #225594
}
.p-privacy-contact {
	margin-top: 20px
}
.p-privacy-contact>dt {
	color: #225594;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px
}
.p-privacy-contact>dd {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.p-privacy-contact>dd dl dt {
	font-weight: 700
}
.p-privacy-note {
	font-size: 16px;
	padding-top: 10px;
	text-align: right
}
.p-blog-icon::before {
	display: inline-block;
	content: "";
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: middle
}
.p-blog-icon.-staff::before {
	width: 31px;
	height: 30px;
	background-image: url(../img/blog/icon_staff.svg)
}
.p-blog-icon.-staff.-sm::before {
	width: 23px;
	height: 22px
}
.p-blog-icon.-area::before {
	width: 25px;
	height: 30px;
	background-image: url(../img/blog/icon_area.svg)
}
.p-blog-icon.-area.-sm::before {
	width: 17px;
	height: 22px
}
.p-blog-icon.-category::before {
	width: 25px;
	height: 30px;
	background-image: url(../img/blog/icon_category.svg)
}
.p-blog-icon.-category.-sm::before {
	width: 17px;
	height: 22px
}
.p-blog-icon.-new::before {
	width: 25px;
	height: 30px;
	background-image: url(../img/blog/icon_new.svg)
}
.p-blog-icon.-new.-sm::before {
	width: 17px;
	height: 22px
}
.p-blog-menu {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 10px;
	margin-bottom: 30px;
	line-height: 1;
	z-index: 2
}
.p-blog-menu__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	background-color: #225594
}
.p-blog-menu__btns {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.p-blog-menu__button {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #225594;
	font-weight: 700;
	width: 50%;
	background-color: #fff;
	border: 1px solid #225594;
	padding: 0 10px;
	cursor: pointer
}
.p-blog-menu__button.-category {
	width: 100%;
}
.p-blog-menu__button::after {
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 6px 0 6px;
	border-color: #225594 transparent transparent transparent;
	margin-left: 14px
}
.p-blog-menu__button:nth-child(2) {
	border-left: none
}
.p-blog-menu__button.is-current {
	background-color: #e2e9f1
}
.p-blog-menu__window {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
	background-color: #e2e9f1;
	padding-left: 26px;
	padding-right: 26px;
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s ease, visibility .3s ease, padding .3s ease;
	-o-transition: opacity .3s ease, visibility .3s ease, padding .3s ease;
	transition: opacity .3s ease, visibility .3s ease, padding .3s ease
}
.p-blog-menu__window.is-show {
	opacity: 1;
	visibility: visible;
	padding-top: 23px;
	padding-bottom: 23px
}
.p-blog-menu__window__close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 38px;
	height: 38px;
	background-color: #333;
	border-radius: 50%;
	cursor: pointer;
	z-index: 2
}
.p-blog-menu__window__close-btn::after {
	display: inline-block;
	content: "";
	width: 16px;
	height: 16px;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.5%2015.5%22%3E%3Cpath%20d%3D%22M9.16%2C7.75l6.05-6A1%2C1%2C0%2C1%2C0%2C13.79.29l-6%2C6.05-6-6A1%2C1%2C0%2C0%2C0%2C.29%2C1.71l6.05%2C6-6%2C6a1%2C1%2C0%2C0%2C0%2C0%2C1.42%2C1%2C1%2C0%2C0%2C0%2C1.42%2C0l6-6.05%2C6%2C6.05a1%2C1%2C0%2C0%2C0%2C1.42%2C0%2C1%2C1%2C0%2C0%2C0%2C0-1.42Z%22%20style%3D%22fill%3A%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat;
	background-size: contain
}
.p-blog-menu__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.p-blog-menu__tags a {
	display: inline-block;
	color: #333;
	font-size: 18px;
	font-weight: 500;
	line-height: 1;
	background-color: #fff;
	text-decoration: none;
	padding: 5px 16px;
	margin: 7px;
	border-radius: 16px
}
.p-blog-menu__tags a:hover {
	color: #225594
}
.p-blog-list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	z-index: 1
}
.p-blog-list__thumbnail {
	position: relative;
	display: block
}
.p-blog-list__thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover
}
.p-blog-list__thumbnail::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, .3);
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
	z-index: 2
}
.p-blog-list__thumbnail:hover::before {
	opacity: 1
}
.p-blog-list__thumbnail::after {
	display: block;
	content: "";
	padding-top: 66%
}
.p-blog-list__info {
	line-height: 1.4;
	background-color: #f5f5f5;
	padding: 15px 20px
}
.p-blog-list__date {
	font-size: 12px
}
.p-blog-list__title {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 14px
}
.p-blog-list__title a {
	color: #225594;
	text-decoration: none
}
.p-blog-list__title a:hover {
	color: #225594;
	text-decoration: underline
}
.p-blog-list__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	line-height: 1;
	margin-bottom: -4px
}
.p-blog-list__tags__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 4px;
	margin-right: 20px
}
.p-blog-list__tags__item dt {
	margin-right: 6px
}
.p-blog-list__tags__item:last-child {
	margin-right: 0
}
.p-blog-list__tags__link {
	display: inline-block;
	color: #333;
	font-size: 14px;
	line-height: 1;
	background-color: #e6e6e6;
	border-radius: 30px;
	padding: 3px 10px;
	text-decoration: none;
	-webkit-transition: background-color .3s ease;
	-o-transition: background-color .3s ease;
	transition: background-color .3s ease
}
.p-blog-list__tags__link:hover {
	background-color: #ccc
}
.p-blog-title {
	color: #225594;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 10px
}
.p-blog-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}
.p-blog-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1;
	background-color: #f5f5f5;
	margin-bottom: 32px;
	padding: 20px 30px
}
.p-blog-info__date {
	font-size: 14px;
	margin-right: 30px
}
.p-blog-post-thumbnail {
	margin-bottom: 35px;
	text-align: center
}
.p-blog-entry h2:not([class]) {
	color: #225594;
	font-size: 24px;
	font-weight: 700;
	border-bottom: 2px solid;
	margin-bottom: 16px;
	padding-bottom: 8px
}
.p-blog-entry h3:not([class]) {
	color: #225594;
	font-size: 21px;
	font-weight: 700;
	border-left: 5px solid;
	margin-bottom: 16px;
	padding-left: 10px
}
.p-blog-entry h4:not([class]), .p-blog-entry h5:not([class]), .p-blog-entry h6:not([class]) {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px
}
.p-blog-entry p:not([class]) {
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 20px
}
.p-blog-entry ol:not([class]), .p-blog-entry ul:not([class]) {
	font-size: 16px;
	line-height: 1.9;
	margin-left: 50px;
	margin-bottom: 34px
}
.p-blog-entry ol:not([class]) li, .p-blog-entry ul:not([class]) li {
	position: relative;
	padding-left: 20px
}
.p-blog-entry ol:not([class]) li+li, .p-blog-entry ul:not([class]) li+li {
	margin-top: 7px
}
.p-blog-entry .wp-block-columns {
	margin-top: 60px
}
.p-blog-entry .wp-block-buttons {
	margin-bottom: 60px
}
.p-blog-entry .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center
}
.p-blog-entry .alignleft {
	text-align: left
}
.p-blog-entry .alignright {
	text-align: right
}
.p-blog-top-link {
	font-size: 14px;
	margin: 45px 0 30px
}
.p-blog-top-link a, .p-blog-top-link a:hover {
	color: #225594
}
.p-blog-paging {
	width: 100%;
	border-top: 1px solid #d4d4d4;
	padding-top: 25px;
	overflow: hidden
}
.p-blog-paging__link {
	display: inline-block;
	font-size: 14px;
	color: #225594;
	width: auto;
	max-width: 32%
}
.p-blog-paging__link.-prev {
	float: left
}
.p-blog-paging__link.-next {
	float: right;
	text-align: right
}
.p-blog-sidebar__menu {
	border-bottom: 1px solid #225594;
	padding: 28px 0
}
.p-blog-sidebar__menu:first-child {
	border-top: 1px solid #225594
}
.p-blog-sidebar__menu__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #225594;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 15px
}
.p-blog-sidebar__menu__caption .p-blog-icon {
	margin-right: 10px
}
.p-blog-sidebar__menu__list li {
	position: relative;
	line-height: 1.6;
	padding-left: 1em
}
.p-blog-sidebar__menu__list li+li {
	margin-top: 8px
}
.p-blog-sidebar__menu__list li::before {
	position: absolute;
	left: 0;
	content: "・"
}
.p-blog-sidebar__menu__list li a:hover {
	color: #225594
}
.p-contact-container {
	border: 1px solid #d4d4d4
}
.p-contact-form input[type=email], .p-contact-form input[type=tel], .p-contact-form input[type=text] {
	font-size: 16px;
	display: block;
	width: 100%;
	padding: 12px;
	background-color: #eaeff5
}
.p-contact-form textarea {
	font-size: 16px;
	width: 100%;
	height: 230px;
	background-color: #eaeff5;
	padding: 12px;
	resize: vertical
}
.p-contact-form label.error {
	color: #dc0000;
	font-size: 12px
}
.p-contact-form .note {
	color: #555;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3
}
.p-contact-form .note a {
	color: #225594
}
.p-contact-form .address dt {
	color: #555;
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 5px
}
.p-contact-form .address.-zip {
	margin-bottom: 20px
}
.p-contact-form .address.-zip .zip-code {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 8px
}
.p-contact-form .address.-zip .zip-code__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.p-contact-form .address.-zip .zip-code__input input[type=text]:first-child {
	width: 80px
}
.p-contact-form .address.-zip .zip-code__input input[type=text]:last-child {
	width: 100px
}
.p-contact-form .address.-zip .zip-code__input span {
	margin: 0 8px
}
.p-contact-form .address.-zip .zip-code .note {
	padding-left: 10px
}
.p-contact-form .address.-address01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 20px
}
.p-contact-form .address.-address01>div:nth-child(1) {
	width: 180px
}
.p-contact-form .address.-address01>div:nth-child(2) {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 30px
}
.p-contact-form__line {
	border-bottom: 1px dotted #ccc;
	padding-top: 20px;
	padding-bottom: 20px
}
.p-contact-form__line:last-child {
	border-bottom: none;
	padding-bottom: 0
}
.p-contact-form__field>div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex
}
.p-contact-form__field>div>dd {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.p-contact-required {
	color: #dc0000
}
.p-contact-form__caption {
	color: #225594;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2
}
.p-contact-form__caption span {
	color: #dc0000
}
.p-contact-form__caption .note {
	margin-left: 10px
}
.p-contact-form__caption.-pt0 {
	padding-top: 0
}
.p-contact__privacy {
	max-width: 450px;
	background-color: #f0f0f0;
	margin: 30px auto;
	padding: 20px;
	text-align: center
}
.p-contact__privacy p {
	margin-bottom: 5px
}
.p-contact__privacy__link {
	color: #225594
}
.p-contact__privacy__link svg {
	display: inline-block;
	width: 17px;
	height: 12px;
	margin-left: 3px;
	vertical-align: middle
}
.p-contact__privacy label {
	font-weight: 700;
	cursor: pointer
}
.p-contact__privacy label span {
	color: #dc0000
}
.p-confirm {
	font-size: 16px;
	line-height: 1.4;
	width: 100%;
	margin-bottom: 30px
}
.p-confirm th {
	color: #225594;
	width: 32%;
	padding: 12px 15px;
	text-align: left;
	border: 1px solid #ccc;
	border-right: none
}
.p-confirm td {
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-left-style: dotted
}
.p-confirm__btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.p-confirm__btns .c-button {
	margin-bottom: 20px
}
.p-confirm__btns__fix {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	background-color: #9b9b9b;
	padding: 6px 35px;
	text-align: center;
	cursor: pointer
}
.p-contact-thanks {
	text-align: center
}
.p-contact-thanks__lead {
	color: #225594;
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 25px;
	padding-top: 20px;
	text-align: center
}
.p-contact-thanks__msg {
	width: 100%;
	max-width: 640px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin: 0 auto 40px;
	padding: 25px 0
}
.p-contact-thanks__msg__txt {
	color: #333;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px
}
.p-contact-thanks__msg__logo {
	max-width: 250px;
	margin: auto
}
.p-contact-thanks__btn {
	padding-bottom: 20px
}
.p-sl-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 20px
}
.p-sl-title__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
	background-color: rgba(34, 85, 148, .9);
	width: 100%;
	max-width: 320px;
	padding: 30px 20px;
	text-align: center
}
.p-sl-title__caption {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 8px;
	padding-bottom: 12px;
	border-bottom: 2px solid red
}
.p-sl-title__txt {
	font-size: 12px;
	line-height: 1.6
}
.p-sl-case {
	margin-bottom: 40px
}
.p-sl-case__container {
	position: relative;
	margin-top: 30px;
	padding-bottom: 15px;
	border-top: 1px solid #d50012;
	border-bottom: 1px solid #d50012
}
.p-sl-case__container:not(:first-child) {
	margin-top: 65px
}
.p-sl-case__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	width: 60px;
	height: 60px;
	background-color: #d50012;
	margin: -30px auto 15px
}
.p-sl-case__caption__txt {
	font-size: 13px
}
.p-sl-case__caption__num {
	font-size: 28px
}
.p-sl-headline {
	color: #d50012;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	text-align: center
}
.p-sl-headline span {
	display: block
}
.p-sl-caption {
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	background-color: #225594;
	margin-bottom: 30px;
	padding: 8px 12px;
	text-align: center
}
.p-sl-answer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.p-sl-answer__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .2);
	box-shadow: 0 0 15px rgba(0, 0, 0, .2);
	margin-bottom: 30px;
	white-space: nowrap
}
.p-sl-answer__txt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #225594;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	border-top: 1px solid;
	border-bottom: 1px solid;
	margin-bottom: 38px;
	padding: 8px 0
}
.p-sl-answer__txt::before {
	display: block;
	content: "";
	width: 22px;
	height: 22px;
	background: url(../img/solution/icon_answer.svg) no-repeat;
	background-size: contain
}
.p-sl-case__list__item {
	position: relative;
	width: 260px
}
.p-sl-case__list__item.-lg {
	width: 86%;
	max-width: 400px
}
.p-sl-case__list__caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #225594;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 12px
}
.p-sl-case__list__caption.-answer::before {
	display: inline-block;
	content: "";
	width: 26px;
	height: 26px;
	background: url(../img/solution/icon_answer.svg) no-repeat;
	background-size: contain;
	margin-right: 6px
}
.p-sl-case__list__img {
	position: relative;
	margin-bottom: 12px
}
.p-sl-case__list__item:not(:last-child) .p-sl-case__list__img::after {
	position: absolute;
	top: 50%;
	right: -40px;
	display: block;
	content: "";
	width: 20px;
	height: 40px;
	background: url(../img/solution/icon_arrow.svg) no-repeat;
	background-size: contain;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%)
}
.p-sl-case__list__txt {
	font-size: 14px;
	line-height: 1.6
}
.p-sl-lg-lead {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.4;
	padding-top: 12px;
	padding-bottom: 12px;
	border-top: 1px solid #d50012;
	border-bottom: 1px solid #d50012;
	text-align: center
}
.p-sl-lg-lead strong {
	color: #d50012;
	font-size: 44px
}
.p-sl-note {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 8px;
	text-align: center
}
.p-sl-sm-note {
	font-size: 10px;
	line-height: 1.4;
	padding-top: 4px;
	text-align: right
}
.p-sl-4stories {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-left: -4px;
	margin-right: -4px
}
.p-sl-4stories__item {
	width: 50%;
	padding-left: 4px;
	padding-right: 4px;
	padding-bottom: 8px
}
.p-sl-4stories__item__link {
	display: block;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease
}
.p-sl-4stories__item__link:hover {
	opacity: .8
}
.p-sl-soundproof {
	margin-bottom: 40px
}
.p-sl-soundproof__img {
	margin-bottom: 24px;
	text-align: center
}
.p-sl-soundproof__lg-txt {
	color: #225594;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 22px;
	text-align: center
}
.p-sl-soundproof__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #225594;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px
}
.p-sl-soundproof__list__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border: 1px solid currentColor;
	text-align: center
}
.p-sl-soundproof__sm-txt {
	margin-bottom: 20px
}
.p-sl-soundproof__chart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #f4f4f4;
	padding: 25px 15px
}
.p-sl-soundproof__chart__txt {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1
}
.glightbox-container {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999999!important;
	overflow: hidden;
	-ms-touch-action: none;
	touch-action: none;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	outline: 0
}
.glightbox-container.inactive {
	display: none
}
.glightbox-container .gcontainer {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 9999;
	overflow: hidden
}
.glightbox-container .gslider {
	-webkit-transition: -webkit-transform .4s ease;
	transition: -webkit-transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	transition: transform .4s ease, -webkit-transform .4s ease;
	height: 100%;
	left: 0;
	top: 0;
	width: 100%;
	position: relative;
	overflow: hidden;
	display: -webkit-box!important;
	display: -ms-flexbox!important;
	display: flex!important;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}
.glightbox-container .gslide {
	width: 100%;
	position: absolute;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	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;
	opacity: 0
}
.glightbox-container .gslide.current {
	opacity: 1;
	z-index: 99999;
	position: relative
}
.glightbox-container .gslide.prev {
	opacity: 1;
	z-index: 9999
}
.glightbox-container .gslide-inner-content {
	width: 100%
}
.glightbox-container .ginner-container {
	position: relative;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 100%;
	margin: auto;
	height: 100vh
}
.glightbox-container .ginner-container.gvideo-container {
	width: 100%
}
.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
	max-width: 100%!important
}
.gslide iframe, .gslide video {
	outline: 0!important;
	border: none;
	min-height: 165px;
	-webkit-overflow-scrolling: touch;
	-ms-touch-action: auto;
	touch-action: auto
}
.gslide:not(.current) {
	pointer-events: none
}
.gslide-image {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center
}
.gslide-image img {
	max-height: 100vh;
	display: block;
	padding: 0;
	float: none;
	outline: 0;
	border: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	max-width: 100vw;
	width: auto;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-ms-touch-action: none;
	touch-action: none;
	margin: auto;
	min-width: 200px
}
.desc-bottom .gslide-image img, .desc-top .gslide-image img {
	width: auto
}
.desc-left .gslide-image img, .desc-right .gslide-image img {
	width: auto;
	max-width: 100%
}
.gslide-image img.zoomable {
	position: relative
}
.gslide-image img.dragging {
	cursor: -webkit-grabbing!important;
	cursor: grabbing!important;
	-webkit-transition: none;
	-o-transition: none;
	transition: none
}
.gslide-video {
	position: relative;
	max-width: 100vh;
	width: 100%!important
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
	display: none
}
.gslide-video .gvideo-wrapper {
	width: 100%;
	margin: auto
}
.gslide-video::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(255, 0, 0, .34);
	display: none
}
.gslide-video.playing::before {
	display: none
}
.gslide-video.fullscreen {
	max-width: 100%!important;
	min-width: 100%;
	height: 75vh
}
.gslide-video.fullscreen video {
	max-width: 100%!important;
	width: 100%!important
}
.gslide-inline {
	background: #fff;
	text-align: left;
	max-height: calc(100vh - 40px);
	overflow: auto;
	max-width: 100%;
	margin: auto
}
.gslide-inline .ginlined-content {
	padding: 20px;
	width: 100%
}
.gslide-inline .dragging {
	cursor: -webkit-grabbing!important;
	cursor: grabbing!important;
	-webkit-transition: none;
	-o-transition: none;
	transition: none
}
.ginlined-content {
	overflow: auto;
	display: block!important;
	opacity: 1
}
.gslide-external {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	min-width: 100%;
	background: #fff;
	padding: 0;
	overflow: auto;
	max-height: 75vh;
	height: 100%
}
.gslide-media {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: auto
}
.zoomed .gslide-media {
	-webkit-box-shadow: none!important;
	box-shadow: none!important
}
.desc-bottom .gslide-media, .desc-top .gslide-media {
	margin: 0 auto;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.gslide-description {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 0 100%;
	flex: 1 0 100%
}
.gslide-description.description-left, .gslide-description.description-right {
	max-width: 100%
}
.gslide-description.description-bottom, .gslide-description.description-top {
	margin: 0 auto;
	width: 100%
}
.gslide-description p {
	margin-bottom: 12px
}
.gslide-description p:last-child {
	margin-bottom: 0
}
.zoomed .gslide-description {
	display: none
}
.glightbox-button-hidden {
	display: none
}
.glightbox-mobile .glightbox-container .gslide-description {
	height: auto!important;
	width: 100%;
	position: absolute;
	bottom: 0;
	padding: 19px 11px;
	max-width: 100vw!important;
	-webkit-box-ordinal-group: 3!important;
	-ms-flex-order: 2!important;
	order: 2!important;
	max-height: 78vh;
	overflow: auto!important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .75)));
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .75) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .75) 100%);
	-webkit-transition: opacity .3s linear;
	-o-transition: opacity .3s linear;
	transition: opacity .3s linear;
	padding-bottom: 50px
}
.glightbox-mobile .glightbox-container .gslide-title {
	color: #fff;
	font-size: 1em
}
.glightbox-mobile .glightbox-container .gslide-desc {
	color: #a1a1a1
}
.glightbox-mobile .glightbox-container .gslide-desc a {
	color: #fff;
	font-weight: 700
}
.glightbox-mobile .glightbox-container .gslide-desc * {
	color: inherit
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
	color: #fff;
	opacity: .4
}
.gdesc-open .gslide-media {
	-webkit-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
	opacity: .4
}
.gdesc-open .gdesc-inner {
	padding-bottom: 30px
}
.gdesc-closed .gslide-media {
	-webkit-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
	opacity: 1
}
.greset {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}
.gabsolute {
	position: absolute
}
.grelative {
	position: relative
}
.glightbox-desc {
	display: none!important
}
.glightbox-open {
	overflow: hidden
}
.gloader {
	height: 25px;
	width: 25px;
	-webkit-animation: lightboxLoader .8s infinite linear;
	animation: lightboxLoader .8s infinite linear;
	border: 2px solid #fff;
	border-right-color: transparent;
	border-radius: 50%;
	position: absolute;
	display: block;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	top: 47%
}
.goverlay {
	width: 100%;
	height: calc(100vh + 1px);
	position: fixed;
	top: -1px;
	left: 0;
	background: #000;
	will-change: opacity
}
.glightbox-mobile .goverlay {
	background: #000
}
.gclose, .gnext, .gprev {
	z-index: 99999;
	cursor: pointer;
	width: 26px;
	height: 44px;
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column
}
.gclose svg, .gnext svg, .gprev svg {
	display: block;
	width: 25px;
	height: auto;
	margin: 0;
	padding: 0
}
.gclose.disabled, .gnext.disabled, .gprev.disabled {
	opacity: .1
}
.gclose .garrow, .gnext .garrow, .gprev .garrow {
	stroke: #fff
}
.gbtn.focused {
	outline: 2px solid #0f3d81
}
iframe.wait-autoplay {
	opacity: 0
}
.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
	opacity: 0!important
}
.glightbox-clean .gslide-description {
	background: #fff
}
.glightbox-clean .gdesc-inner {
	padding: 22px 20px
}
.glightbox-clean .gslide-title {
	font-size: 1em;
	font-weight: 400;
	font-family: arial;
	color: #000;
	margin-bottom: 19px;
	line-height: 1.4em
}
.glightbox-clean .gslide-desc {
	font-size: .86em;
	margin-bottom: 0;
	font-family: arial;
	line-height: 1.4em
}
.glightbox-clean .gslide-video {
	background: #000
}
.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
	background-color: rgba(0, 0, 0, .75);
	border-radius: 4px
}
.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
	fill: #fff
}
.glightbox-clean .gprev {
	position: absolute;
	top: -100%;
	left: 30px;
	width: 40px;
	height: 50px
}
.glightbox-clean .gnext {
	position: absolute;
	top: -100%;
	right: 30px;
	width: 40px;
	height: 50px
}
.glightbox-clean .gclose {
	width: 35px;
	height: 35px;
	top: 15px;
	right: 10px;
	position: absolute
}
.glightbox-clean .gclose svg {
	width: 18px;
	height: auto
}
.glightbox-clean .gclose:hover {
	opacity: 1
}
.gfadeIn {
	-webkit-animation: gfadeIn .5s ease;
	animation: gfadeIn .5s ease
}
.gfadeOut {
	-webkit-animation: gfadeOut .5s ease;
	animation: gfadeOut .5s ease
}
.gslideOutLeft {
	-webkit-animation: gslideOutLeft .3s ease;
	animation: gslideOutLeft .3s ease
}
.gslideInLeft {
	-webkit-animation: gslideInLeft .3s ease;
	animation: gslideInLeft .3s ease
}
.gslideOutRight {
	-webkit-animation: gslideOutRight .3s ease;
	animation: gslideOutRight .3s ease
}
.gslideInRight {
	-webkit-animation: gslideInRight .3s ease;
	animation: gslideInRight .3s ease
}
.gzoomIn {
	-webkit-animation: gzoomIn .5s ease;
	animation: gzoomIn .5s ease
}
.gzoomOut {
	-webkit-animation: gzoomOut .5s ease;
	animation: gzoomOut .5s ease
}
@-webkit-keyframes lightboxLoader {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}
@keyframes lightboxLoader {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}
@-webkit-keyframes gfadeIn {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
@keyframes gfadeIn {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
@-webkit-keyframes gfadeOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0
	}
}
@keyframes gfadeOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0
	}
}
@-webkit-keyframes gslideInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-60%, 0, 0);
		transform: translate3d(-60%, 0, 0)
	}
	to {
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes gslideInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-60%, 0, 0);
		transform: translate3d(-60%, 0, 0)
	}
	to {
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@-webkit-keyframes gslideOutLeft {
	from {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		-webkit-transform: translate3d(-60%, 0, 0);
		transform: translate3d(-60%, 0, 0);
		opacity: 0;
		visibility: hidden
	}
}
@keyframes gslideOutLeft {
	from {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		-webkit-transform: translate3d(-60%, 0, 0);
		transform: translate3d(-60%, 0, 0);
		opacity: 0;
		visibility: hidden
	}
}
@-webkit-keyframes gslideInRight {
	from {
		opacity: 0;
		visibility: visible;
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes gslideInRight {
	from {
		opacity: 0;
		visibility: visible;
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@-webkit-keyframes gslideOutRight {
	from {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0);
		opacity: 0
	}
}
@keyframes gslideOutRight {
	from {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		-webkit-transform: translate3d(60%, 0, 0);
		transform: translate3d(60%, 0, 0);
		opacity: 0
	}
}
@-webkit-keyframes gzoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 1
	}
}
@keyframes gzoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 1
	}
}
@-webkit-keyframes gzoomOut {
	from {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}
@keyframes gzoomOut {
	from {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}
@-webkit-keyframes scroll-hint-appear {
	0% {
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
		opacity: 0
	}
	10% {
		opacity: 1
	}
	100%, 50% {
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
		opacity: 0
	}
}
@keyframes scroll-hint-appear {
	0% {
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
		opacity: 0
	}
	10% {
		opacity: 1
	}
	100%, 50% {
		-webkit-transform: translateX(-40px);
		transform: translateX(-40px);
		opacity: 0
	}
}
.scroll-hint.is-right-scrollable {
	background: -o-linear-gradient(right, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
	background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0))
}
.scroll-hint.is-right-scrollable.is-left-scrollable {
	background: -o-linear-gradient(left, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), -o-linear-gradient(right, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
	background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0))
}
.scroll-hint.is-left-scrollable {
	background: -o-linear-gradient(left, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
	background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0))
}
.scroll-hint-icon {
	position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 60px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 120px;
	height: 80px;
	border-radius: 5px;
	-webkit-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
	opacity: 0;
	background: rgba(0, 0, 0, .7);
	text-align: center;
	padding: 20px 10px 10px 10px
}
.scroll-hint-icon-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-height: 100%;
	pointer-events: none
}
.scroll-hint-text {
	font-size: 10px;
	color: #fff;
	margin-top: 5px
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
	opacity: .8
}
.scroll-hint-icon:before {
	display: inline-block;
	width: 40px;
	height: 40px;
	color: #fff;
	vertical-align: middle;
	text-align: center;
	content: "";
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=)
}
.scroll-hint-icon:after {
	content: "";
	width: 34px;
	height: 14px;
	display: block;
	position: absolute;
	top: 10px;
	left: 50%;
	margin-left: -20px;
	background-repeat: no-repeat;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
	opacity: 0;
	-webkit-transition-delay: 2.4s;
	-o-transition-delay: 2.4s;
	transition-delay: 2.4s
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
	opacity: 1
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
	-webkit-animation: scroll-hint-appear 1.2s linear;
	animation: scroll-hint-appear 1.2s linear;
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2
}
.scroll-hint-icon-white {
	background-color: #fff;
	-webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
	box-shadow: 0 4px 5px rgba(0, 0, 0, .4)
}
.scroll-hint-icon-white:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=)
}
.scroll-hint-icon-white:after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==)
}
.scroll-hint-icon-white .scroll-hint-text {
	color: #000
}
@media only screen and (max-width:560px) {
	.c-button {
		font-size: 16px;
		padding: 14px 18px
	}
	.c-button.-next {
		padding: 14px 54px 14px 18px
	}
	.c-button.-next::after {
		right: 20px;
		width: 24px;
		height: 6px;
		margin-top: -3px
	}
	.c-button.-next:hover::after {
		right: 15px
	}
	.c-headline {
		padding: 52px 0
	}
	.c-headline__eng {
		font-size: 36px
	}
	.c-headline__ja {
		font-size: 18px
	}
	.c-contents-txt {
		font-size: 14px
	}
	.p-hero__catch__txt {
		font-size: 4.4vw
	}
	.p-hero__catch__logo {
		width: 50%
	}
	.p-hero__btn {
		width: 110px;
		height: 110px
	}
	.p-slide__item__button {
		max-width: 150px;
		padding: 10px 18px
	}
	.p-slide__item__button.-next::after {
		right: 15px
	}
	.p-slide__item__caption {
		font-size: 16px
	}
	.p-slide__pagination__btn {
		width: 35px
	}
	.p-slide__bg {
		top: -46%;
		right: 0;
		width: 52%;
		height: 168%
	}
	.p-news__list__item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-news__list__date {
		width: 100%
	}
	.p-solution__contents:hover .c-button.-next::after {
		right: 15px
	}
	.p-solution__contents__caption {
		font-size: 16px
	}
	.p-solution__contents__caption span {
		font-size: 20px
	}
	.p-solution__contents__detail {
		font-size: 14px
	}
	.p-solution__external__caption {
		font-size: 16px
	}
	.p-aboutus__external__r {
		max-width: 400px
	}
	.p-reason-contents {
		margin-bottom: 30px;
		padding: 20px 20px 30px
	}
	.p-reason-cta__txt span {
		display: block
	}
	.p-works-title {
		padding: 14px 20px
	}
	.p-works-title__ja {
		font-size: 28px
	}
	.p-works-point__txt {
		font-size: 14px
	}
	.p-works-gallery__button {
		width: 26px;
		height: 80px
	}
	.p-works-gallery__button.-prev::after {
		border-width: 4px 5px 4px 0
	}
	.p-works-gallery__button.-next::after {
		border-width: 4px 0 4px 5px
	}
	.p-owners-nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-owners-nav__item {
		width: 100%;
		text-align: center
	}
	.p-owners-container {
		padding-top: 42px;
		padding-bottom: 42px
	}
	.p-management-links__caption {
		font-size: 16px;
		padding: 12px 16px
	}
	.p-management-links__caption::after {
		margin-left: 12px
	}
	.p-management-contents__list li {
		font-size: 14px
	}
	.p-result-chart__list {
		font-size: 14px
	}
	.p-company-outline {
		font-size: 14px
	}
	.p-company-outline th {
		width: 85px
	}
	.p-company-outline td>dl>div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-company-outline td>dl>div>dt {
		width: 100%
	}
	.p-company-outline__map iframe {
		height: 240px
	}
	.p-privacy-contents {
		font-size: 14px
	}
	.p-blog-list__item {
		width: 100%;
		margin-bottom: 20px
	}
	.p-blog-title {
		font-size: 20px
	}
	.p-blog-info {
		margin: 0 calc(50% - 50vw) 24px;
		padding: 10px 15px
	}
}
@media print, screen and (min-width:1080px) {
	.c-headline {
		background-position: left center
	}
	.p-hero {
		padding-top: 120px;
		padding-bottom: 70px
	}
	.p-hero__catch {
		position: absolute
	}
	.p-hero__btn {
		position: absolute;
		bottom: 0
	}
	.p-slide__item__box {
		left: 40px;
		bottom: 40px;
		width: 278px;
		min-height: 244px;
		padding: 34px
	}
	.p-slide__item__caption {
		margin-bottom: 20px
	}
	.p-slide__bg {
		top: -55px;
		left: 40px;
		width: 100%;
		height: 100%
	}
	.p-slide__bg::after {
		position: absolute;
		top: 0;
		right: calc(50% - 50vw);
		left: 100%;
		display: block;
		content: "";
		height: 100%;
		background-color: #225594
	}
	.p-solution__contents__txt {
		padding: 40px 80px
	}
	.p-solution__contents__inner {
		max-width: 545px
	}
	.p-aboutus__bnrs__container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.p-aboutus__bnrs__item {
		width: 23%;
		max-width: 310px
	}
	.p-reason-caption__txt {
		font-size: 26px;
		padding: 7px 18px
	}
	.p-reason-contents__image {
		width: 480px
	}
	.p-works-nav__item {
		width: 20%
	}
	.p-works-nav__button__num {
		font-size: 50px
	}
	.p-works-nav__button__caption {
		font-size: 16px
	}
	.p-owners-lead__txt {
		font-size: 20px;
		margin-right: -150px;
		padding: 40px 150px 40px 30px
	}
	.p-owners-lead__txt span {
		display: block
	}
	.p-owners-message {
		font-size: 20px;
		text-align: center
	}
	.p-owners-message span {
		display: block
	}
	.p-management-lead__lg-txt span {
		display: block
	}
	.p-management-links__caption {
		font-size: 28px
	}
	.p-result-contents {
		padding: 49px
	}
	.p-company-outline__contact>div {
		width: 49%
	}
	.p-download-container {
		padding: 45px 40px
	}
	.p-download-table thead th:nth-child(1) {
		width: 110px
	}
	.p-download-table thead th:nth-child(2) {
		width: 155px
	}
	.p-download-table tbody th {
		font-size: 20px
	}
	.p-download-table tbody td {
		font-size: 16px;
		padding: 20px
	}
	.p-blog-menu__caption {
		font-size: 20px;
		width: 235px;
		height: 70px
	}
	.p-blog-menu__button {
		font-size: 20px
	}
	.p-blog-list {
		margin: -15px
	}
	.p-blog-list__item {
		width: calc(100% / 3);
		padding: 15px
	}
	.p-blog-contents {
		padding-right: 50px
	}
	.p-contact-container {
		padding: 40px 55px
	}
	.p-contact-form__field {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.p-contact-form__field.-col2>div {
		width: 49%
	}
	.p-contact-form__field.-col1>div {
		width: 100%
	}
	.p-contact-form__field>div:nth-child(even)>dt {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.p-sl-case__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		padding-left: 50px;
		padding-right: 50px
	}
	.p-sl-case__list.-lg {
		padding-left: 70px;
		padding-right: 70px
	}
	.p-sl-soundproof__chart__img {
		width: 640px
	}
}
@media only screen and (max-width:1079px) {
	.c-headline {
		background-position: 48% center
	}
	.p-hero {
		padding-top: 40px;
		padding-bottom: 60px
	}
	.p-hero__catch {
		position: relative;
		padding: 0 30px 20px
	}
	.p-hero__btn {
		position: relative;
		margin-left: 3%
	}
	.p-slide {
		margin-bottom: 20px;
		padding-right: 0
	}
	.p-slide__item__box {
		top: 10%;
		right: 0;
		text-align: right;
		padding: 12px 16px
	}
	.p-slide__item__txt {
		display: none
	}
	.p-aboutus__bnrs {
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
		padding-left: 30px
	}
	.p-aboutus__bnrs__item {
		display: inline-block;
		width: 90%;
		max-width: 310px
	}
	.p-aboutus__pagination {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-top: 25px
	}
	.p-aboutus__pagination .swiper-pagination-bullet {
		display: block;
		width: 35px;
		height: 6px;
		background-color: #c1cfe0;
		margin: 0 5px;
		cursor: pointer
	}
	.p-aboutus__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
		background-color: #225594
	}
	.p-reason-caption__txt {
		padding: 10px 18px
	}
	.p-owners-lead__txt {
		font-size: 16px
	}
	.p-owners-lead__img figcaption {
		font-size: 12px
	}
	.p-owners-contents__img figcaption {
		font-size: 12px
	}
	.p-owners-message {
		font-size: 16px
	}
	.p-management-links__caption {
		line-height: 1.2
	}
	.p-management-contents {
		padding: 35px 20px
	}
	.p-management-contents__title-area {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-result-contents {
		padding: 30px 20px
	}
	.p-company-outline__contact>div {
		width: 100%
	}
	.p-download-container {
		padding: 30px 3%
	}
	.p-download-table thead th {
		font-size: 14px
	}
	.p-download-table thead th:nth-child(1) {
		width: 70px
	}
	.p-download-table thead th:nth-child(2) {
		width: 80px
	}
	.p-download-table tbody th {
		font-size: 14px
	}
	.p-download-table tbody td {
		font-size: 14px;
		padding: 12px
	}
	.p-privacy-container {
		padding: 30px 3%
	}
	.p-contact-container {
		padding: 30px 3%
	}
	.p-contact-form__field.-col2>div:first-child {
		border-bottom: 1px dotted #ccc;
		margin-bottom: 20px;
		padding-bottom: 20px
	}
	.p-sl-case__list {
		white-space: nowrap
	}
	.p-sl-case__list__item {
		display: inline-block;
		white-space: normal;
		vertical-align: top
	}
	.p-sl-soundproof__chart__img {
		width: 62%
	}
}
@media only screen and (min-width:768px) {
	.c-headline.-solution {
		padding-top: 60px;
		padding-bottom: 60px
	}
	.c-headline__arrow {
		height: 20px
	}
	.c-headline__arrow::after, .c-headline__arrow::before {
		border-bottom: 20px solid #fff
	}
	.c-headline__arrow::before {
		border-right: 20px solid transparent
	}
	.c-headline__arrow::after {
		border-left: 20px solid transparent
	}
	.c-lg-caption {
		font-size: 30px
	}
	.p-news__title {
		width: 184px
	}
	.p-news__list {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		height: 184px;
		padding-left: 50px
	}
	.p-solution__contents {
		min-height: 340px
	}
	.p-solution__contents.-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse
	}
	.p-solution__contents.-reverse .p-solution__contents__txt {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end
	}
	.p-solution__external__item {
		width: 48%;
		margin-right: 4%
	}
	.p-solution__external__item:last-child {
		margin-right: 0
	}
	.p-aboutus__external__r {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between
	}
	.p-reason-contents__txt {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-left: 30px
	}
	.p-works-nav__button {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: 195px;
		padding: 28px 0 18px;
		text-align: center
	}
	.p-works-caption__num {
		font-size: 50px;
		width: 50px;
		padding: 50px 10px 15px
	}
	.p-works-caption__txt {
		font-size: 30px;
		padding: 54px 0 0 25px
	}
	.p-works-point__caption {
		font-size: 21px;
		padding-top: 3px;
		padding-left: 40px
	}
	.p-owners-name {
		font-size: 30px
	}
	.p-owners-lead__img {
		margin-top: 20px;
		text-align: right
	}
	.p-owners-contents__txt {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-right: 30px
	}
	.p-owners-contents__img {
		text-align: right
	}
	.p-owners-contents.-reverse {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse
	}
	.p-owners-contents.-reverse .p-owners-contents__txt {
		padding-right: 0;
		padding-left: 30px
	}
	.p-owners-message {
		padding: 40px 35px
	}
	.p-management-title.-lg {
		padding: 20px 22px;
		text-align: center
	}
	.p-management-lead.-directly {
		padding-right: 250px
	}
	.p-management-lead__directly {
		position: absolute;
		right: 0;
		top: -60px;
		width: 190px
	}
	.p-management-links__item {
		width: 50%;
		height: 250px
	}
	.p-management-links__item:last-child {
		width: 100%;
		height: 190px
	}
	.p-management-links__caption br {
		display: none
	}
	.p-management-contents__container {
		margin-bottom: -42px
	}
	.p-management-contents__item {
		width: 48%;
		max-width: 430px;
		margin-bottom: 42px
	}
	.p-management-contents__list.-two-column li {
		width: 48%;
		max-width: 430px
	}
	.p-result-chart__img {
		margin-right: 30px
	}
	.p-result-chart__txt {
		width: 200px
	}
	.p-download-caption {
		font-size: 30px
	}
	.p-download-caption span {
		font-size: 22px;
		margin-right: 14px
	}
	.p-download-table tbody .center {
		text-align: center
	}
	.p-privacy-contact>dd dl {
		border-right: 1px solid #d4d4d4;
		margin-right: 30px;
		padding-right: 30px
	}
	.p-privacy-contact>dd dl:last-child {
		border-right: none;
		margin-right: 0;
		padding-right: 0
	}
	.p-blog-contents {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1
	}
	.p-blog-sidebar {
		width: 200px;
		margin-bottom: 60px
	}
	.p-contact-form__field>div>dt {
		min-width: 160px;
		padding-top: 8px;
		padding-right: 18px
	}
	.p-sl-title__item {
		max-width: 430px;
		min-height: 330px;
		padding: 20px
	}
	.p-sl-title__caption {
		font-size: 48px;
		margin-bottom: 20px
	}
	.p-sl-title__txt {
		font-size: 16px
	}
	.p-sl-case__container {
		margin-top: 40px;
		padding-bottom: 40px
	}
	.p-sl-case__container:not(:first-child) {
		margin-top: 85px
	}
	.p-sl-case__caption {
		width: 80px;
		height: 80px;
		margin: -40px auto 25px
	}
	.p-sl-case__caption__txt {
		font-size: 17px
	}
	.p-sl-case__caption__num {
		font-size: 37px
	}
	.p-sl-headline {
		font-size: 36px;
		margin-bottom: 25px
	}
	.p-sl-caption {
		font-size: 24px
	}
	.p-sl-answer__caption {
		font-size: 30px;
		padding: 20px 36px
	}
	.p-sl-answer__caption span {
		margin-right: 10px
	}
	.p-sl-answer__txt {
		font-size: 30px
	}
	.p-sl-answer__txt br {
		display: none
	}
	.p-sl-answer__txt::before {
		width: 35px;
		height: 35px;
		margin-right: 10px
	}
	.p-sl-case__list__txt {
		font-size: 16px
	}
	.p-sl-lg-lead.-lg {
		padding-top: 14px;
		padding-bottom: 24px
	}
	.p-sl-note {
		font-size: 14px
	}
	.p-sl-4stories {
		margin-left: -6px;
		margin-right: -6px
	}
	.p-sl-4stories__item {
		padding-left: 6px;
		padding-right: 6px
	}
	.p-sl-soundproof__list__item {
		width: 220px;
		height: 220px;
		border-radius: 50%
	}
	.p-sl-soundproof__list__item span {
		display: block
	}
	.p-sl-soundproof__list__item:not(:last-child) {
		margin-right: 12px
	}
	.p-sl-soundproof__chart {
		padding: 40px 50px
	}
	.p-sl-soundproof__chart__txt {
		padding-left: 40px
	}
}
@media only screen and (max-width:767px) {

	.c-headline.-column {
	background-image: url(../img/common/bg_title-column--sp.jpg);
	height: 165px;
	}
	.c-lg-caption {
		font-size: 23px
	}
	.c-scrollable-img {
		width: 900px
	}
	.p-slide {
		padding-left: 20px
	}
	.p-slide__next-btn {
		width: 38px;
		height: 38px
	}
	.p-slide__item__button {
		right: 20px;
		bottom: 20px;
		font-size: 13px;
		max-width: 180px
	}
	.p-news__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-news__title {
		width: 126px;
		margin: 0 auto 15px
	}
	.p-news__list {
		width: 100%;
		height: 200px;
		border: 1px solid #d4d4d4;
		padding: 10px 20px
	}
	.p-solution__title {
		font-size: 40px
	}
	.p-solution__contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-solution__contents__img {
		width: 100%;
		padding-top: 45.333333%
	}
	.p-solution__contents__txt {
		width: 100%;
		padding: 32px 3%
	}
	.p-aboutus__caption {
		font-size: 40px
	}
	.p-solution__external {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-solution__external__item {
		width: 100%;
		margin-bottom: 20px
	}
	.p-solution__external__item:last-child {
		margin-bottom: 0
	}
	.p-solution__external__txt {
		padding: 14px 3% 20px
	}
	.p-aboutus__external {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 50px 20px 20px
	}
	.p-aboutus__external__item {
		margin-bottom: 20px
	}
	.p-reason-lead {
		font-size: 16px
	}
	.p-reason-caption__num span {
		font-size: 18px
	}
	.p-reason-caption__txt {
		font-size: 18px
	}
	.p-reason-contents__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-reason-contents__image {
		width: 100%;
		margin-bottom: 20px
	}
	.p-reason-contents__txt p {
		font-size: 14px
	}
	.p-reason-contents__answer {
		font-size: 18px
	}
	.p-reason-contents__answer::before {
		margin: 20px auto
	}
	.p-reason-cta__txt {
		font-size: 21px
	}
	.p-works-nav__item {
		width: 100%
	}
	.p-works-nav__button {
		padding: 6px 22px 6px 0
	}
	.p-works-nav__button br {
		display: none
	}
	.p-works-nav__button span {
		font-size: 12px
	}
	.p-works-nav__button::after {
		position: absolute;
		right: 10px;
		top: 50%;
		border-width: 4px 4px 0 4px;
		margin-top: -2px
	}
	.p-works-nav__button__num {
		font-size: 24px;
		width: 30px;
		text-align: center
	}
	.p-works-nav__button__caption {
		font-size: 14px;
		line-height: 1.4
	}
	.p-works-caption__num {
		font-size: 30px;
		width: 30px;
		padding: 30px 10px 10px
	}
	.p-works-caption__txt {
		font-size: 21px;
		padding: 30px 0 0 10px
	}
	.p-works-point__caption {
		font-size: 18px;
		padding-left: 32px
	}
	.p-works-point__caption::before {
		width: 23px;
		height: 26px
	}
	.p-owners-name {
		font-size: 23px
	}
	.p-owners-lead {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.p-owners-lead__txt {
		width: 100%;
		padding: 20px 3%
	}
	.p-owners-lead__img {
		margin-bottom: 20px;
		text-align: center
	}
	.p-owners-contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-owners-contents__txt {
		margin-bottom: 24px
	}
	.p-owners-contents__img {
		text-align: center
	}
	.p-owners-message {
		padding: 30px 3%
	}
	.p-management-title {
		font-size: 23px;
		padding: 12px 14px
	}
	.p-management-top-txt {
		font-size: 18px
	}
	.p-management-top-txt span {
		font-size: 22px
	}
	.p-management-lead.-directly::after {
		display: block;
		content: "";
		clear: both
	}
	.p-management-lead__lg-txt {
		font-size: 18px
	}
	.p-management-lead__directly {
		float: right;
		width: 140px;
		margin-top: -10px;
		margin-left: 12px
	}
	.p-management-links__item {
		width: 100%
	}
	.p-management-links__link {
		height: auto;
		padding: 15% 0
	}
	.p-management-contents__lg-caption {
		font-size: 22px
	}
	.p-management-contents__md-caption {
		font-size: 16px;
		padding: 10px 14px
	}
	.p-management-contents__container {
		margin-bottom: -28px
	}
	.p-management-contents__item {
		width: 100%;
		margin-bottom: 28px
	}
	.p-management-contents__list.-two-column li {
		width: 100%
	}
	.p-repairplan-chart {
		margin-bottom: 45px
	}
	.p-repairplan-chart__img {
		width: 720px
	}
	.p-buildinginformation__container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-buildinginformation__item:nth-child(1) {
		width: 100%;
		margin-bottom: 24px
	}
	.p-buildinginformation__item:nth-child(2) {
		width: 100%;
		margin-left: 0;
		text-align: center
	}
	.p-result-caption {
		font-size: 24px
	}
	.p-result-chart {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 24px
	}
	.p-result-chart__img {
		margin-bottom: 24px;
		text-align: center
	}
	.p-result-chart__txt {
		width: 100%
	}
	.p-result-note {
		font-size: 13px
	}
	.p-company-outline__contact dl dt {
		width: 100%
	}
	.p-download-caption {
		font-size: 21px
	}
	.p-download-caption span {
		font-size: 16px;
		margin-right: 8px
	}
	.p-download-table.-scrollable {
		width: 720px
	}
	.p-download-table a[href$=".pdf"]::before {
		width: 22px;
		height: 26px;
		margin-right: 10px
	}
	.p-download-contact dt {
		font-size: 18px
	}
	.p-download-contact dd {
		font-size: 14px
	}
	.p-download-contact ul li {
		font-size: 15px
	}
	.p-privacy-caption {
		font-size: 18px;
		padding: 0 0 12px 22px
	}
	.p-privacy-caption::before {
		width: 14px;
		height: 14px
	}
	.p-privacy-contact>dd {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-privacy-contact>dd dl {
		border-bottom: 1px solid #d4d4d4;
		margin-bottom: 20px;
		padding-bottom: 20px
	}
	.p-privacy-contact>dd dl:last-child {
		border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0
	}
	.p-privacy-note {
		font-size: 13px
	}
	.p-blog-icon.-staff::before {
		width: 23px;
		height: 22px
	}
	.p-blog-icon.-staff.-sm::before {
		width: 18px;
		height: 17px
	}
	.p-blog-icon.-area::before {
		width: 17px;
		height: 22px
	}
	.p-blog-icon.-area.-sm::before {
		width: 18px;
		height: 17px
	}
	.p-blog-menu__caption {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		font-size: 14px;
		width: 100%;
		height: 30px;
		padding: 0 20px
	}
	.p-blog-menu__button {
		font-size: 14px;
		height: 40px
	}
	.p-blog-menu__button::after {
		border-width: 6px 4px 0 4px;
		margin-left: 8px
	}
	.p-blog-menu__window {
		padding-left: 10px;
		padding-right: 32px
	}
	.p-blog-menu__window.is-show {
		padding-top: 28px;
		padding-bottom: 28px
	}
	.p-blog-menu__window__close-btn {
		top: 10px;
		right: 10px;
		width: 32px;
		height: 32px
	}
	.p-blog-menu__tags a {
		font-size: 13px;
		padding: 4px 10px;
		margin: 5px
	}
	.p-blog-list__info {
		padding: 15px
	}
	.p-blog-list__tags__item {
		margin-right: 14px
	}
	.p-blog-list__tags__link {
		font-size: 13px
	}
	.p-blog-contents {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: 100%
	}
	.p-blog-info__date {
		font-size: 13px;
		margin-right: 14px
	}
	.p-blog-entry h2:not([class]) {
		font-size: 21px
	}
	.p-blog-entry h3:not([class]) {
		font-size: 18px
	}
	.p-blog-entry h4:not([class]), .p-blog-entry h5:not([class]), .p-blog-entry h6:not([class]) {
		font-size: 16px
	}
	.p-blog-entry p:not([class]) {
		font-size: 15px
	}
	.p-blog-entry ol:not([class]), .p-blog-entry ul:not([class]) {
		font-size: 15px;
		margin-left: 12px
	}
	.p-blog-paging {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		padding-bottom: 25px
	}
	.p-blog-paging__link {
		max-width: 40%
	}
	.p-blog-sidebar {
		-webkit-box-ordinal-group: 4;
		-ms-flex-order: 3;
		order: 3;
		width: 100%
	}
	.p-blog-sidebar__menu__caption {
		font-size: 18px
	}
	.p-contact-form .note {
		display: block;
		font-size: 11px;
		margin: 5px 0 0 0
	}
	.p-contact-form .address.-address01>div:nth-child(1) {
		width: 90px
	}
	.p-contact-form .address.-address01>div:nth-child(2) {
		padding-left: 15px
	}
	.p-contact-form__field>div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-contact-form__caption {
		font-size: 15px;
		margin-bottom: 15px
	}
	.p-contact-form__caption br {
		display: none
	}
	.p-contact-thanks__lead {
		font-size: 21px
	}
	.p-contact-thanks__lead span {
		display: block
	}
	.p-contact-thanks__msg__txt {
		font-size: 16px
	}
	.p-contact-thanks__msg__txt span {
		display: block
	}
	.p-contact-thanks__msg__logo {
		max-width: 200px
	}
	.p-sl-title {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-bottom: 10px
	}
	.p-sl-answer__caption {
		padding: 12px 22px
	}
	.p-sl-answer__caption img {
		width: 150px
	}
	.p-sl-answer__caption span {
		margin-right: 5px
	}
	.p-sl-answer__txt {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		text-align: center
	}
	.p-sl-answer__txt::before {
		margin-bottom: 5px
	}
	.p-sl-case__list__caption {
		font-size: 18px
	}
	.p-sl-case__list__caption.-answer::before {
		width: 20px;
		height: 20px
	}
	.p-sl-lg-lead {
		font-size: 20px
	}
	.p-sl-lg-lead strong {
		font-size: 33px
	}
	.p-sl-lg-lead span {
		display: block
	}
	.p-sl-soundproof__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column
	}
	.p-sl-soundproof__list__item {
		min-height: 4em;
		border-radius: 60px
	}
	.p-sl-soundproof__list__item:not(:last-child) {
		margin-bottom: 8px
	}
	.p-sl-soundproof__chart {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse
	}
	.p-sl-soundproof__chart__img {
		width: 100%
	}
	.p-sl-soundproof__chart__txt {
		margin-bottom: 15px
	}
}
@media print, screen and (min-width:1340px) {
	.p-hero__catch {
		top: 100px;
		left: 115px
	}
	.p-hero__btn {
		left: 115px
	}
}
@media only screen and (max-width:1339px) and (min-width:1080px) {
	.p-hero__catch {
		top: 0;
		left: 40px
	}
	.p-hero__btn {
		left: 40px
	}
	.p-slide {
		width: 65%;
		max-width: 100%;
		padding-right: 20px
	}
}
@media only screen and (max-width:1079px) and (min-width:768px) {
	.p-slide {
		padding-left: 30px
	}
	.p-solution__contents__txt {
		padding: 34px 20px
	}
	.p-reason-lead {
		font-size: 18px
	}
	.p-reason-caption__txt {
		font-size: 21px
	}
	.p-reason-contents__image {
		width: 48%
	}
	.p-works-nav__item {
		width: 25%
	}
	.p-works-nav__button__num {
		font-size: 40px
	}
	.p-works-nav__button__caption {
		font-size: 15px
	}
	.p-owners-lead__txt {
		margin-right: -40px;
		padding: 30px 60px 30px 3%
	}
	.p-owners-lead__img {
		width: 48%
	}
	.p-owners-lead__img img {
		width: 100%
	}
	.p-owners-contents {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center
	}
	.p-owners-contents__img {
		max-width: 48%
	}
	.p-blog-menu__caption {
		font-size: 16px;
		width: 150px;
		height: 55px
	}
	.p-blog-menu__button {
		font-size: 16px
	}
	.p-blog-menu__window {
		top: 55px
	}
	.p-blog-contents {
		padding-right: 20px
	}
}
@media only screen and (min-width:561px) {
	.p-slide__item__caption {
		font-size: 20px
	}
	.p-aboutus__external__r {
		max-width: 280px
	}
	.p-works-title {
		height: 170px;
		background-image: url(../img/works/bg_title.jpg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover
	}
	.p-sl-4stories__item {
		width: 25%;
		padding-bottom: 0
	}
	.p-sl-soundproof__lg-txt {
		font-size: 20px
	}
	.p-sl-soundproof__list {
		font-size: 20px
	}
	.p-sl-soundproof__sm-txt {
		font-size: 16px;
		text-align: center
	}
}
@media only screen and (max-width:1079px) and (min-width:561px) {
	.p-slide__bg {
		top: -10%;
		right: 0;
		width: 85%;
		height: 100%
	}
	.p-management-links__caption {
		font-size: 21px
	}
	.p-blog-list {
		margin: -10px
	}
	.p-blog-list__item {
		width: 50%;
		padding: 10px
	}
}
@media only screen and (min-width:768px) and (-ms-high-contrast:active), only screen and (min-width:768px) and (-ms-high-contrast:none) {
	.p-solution__contents {
		height: 340px
	}
}
@media only screen and (max-width:767px) and (max-width:560px) {
	.p-management-lead__directly {
		width: 110px
	}
}
@media screen and (-ms-high-contrast:active), screen and (-ms-high-contrast:none) {
	.p-management-links__caption {
		display: inline-block
	}
}
@media only screen and (max-width:360px) {
	.p-download-caption span {
		display: block
	}
	.p-blog-menu__button {
		font-size: 11px
	}
}
@media (min-width:769px) {
	.glightbox-container .ginner-container {
		width: auto;
		height: auto;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row
	}
	.glightbox-container .ginner-container.desc-top .gslide-description {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.glightbox-container .ginner-container.desc-left .gslide-description {
		-webkit-box-ordinal-group: 1;
		-ms-flex-order: 0;
		order: 0
	}
	.glightbox-container .ginner-container.desc-left .gslide-image {
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1
	}
	.gslide-image img {
		max-height: 97vh;
		max-width: 100%
	}
	.gslide-image img.zoomable {
		cursor: -webkit-zoom-in;
		cursor: zoom-in
	}
	.zoomed .gslide-image img.zoomable {
		cursor: -webkit-grab;
		cursor: grab
	}
	.gslide-inline {
		max-height: 95vh
	}
	.gslide-external {
		max-height: 100vh
	}
	.gslide-description.description-left, .gslide-description.description-right {
		max-width: 275px
	}
	.glightbox-open {
		height: auto
	}
	.goverlay {
		background: rgba(0, 0, 0, .92)
	}
	.glightbox-clean .gslide-media {
		-webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65);
		box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65)
	}
	.glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
		position: absolute;
		height: 100%;
		overflow-y: auto
	}
	.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
		background-color: rgba(0, 0, 0, .32)
	}
	.glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
		background-color: rgba(0, 0, 0, .7)
	}
	.glightbox-clean .gprev {
		top: 45%
	}
	.glightbox-clean .gnext {
		top: 45%
	}
}
@media (min-width:992px) {
	.glightbox-clean .gclose {
		opacity: .7;
		right: 20px
	}
}
@media screen and (max-height:420px) {
	.goverlay {
		background: #000
	}
}


