@charset "UTF-8";
/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}
html {
	font-size: 62.5%;
}
body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: bold;
}
table,
input,
textarea,
select,
option {
	line-height: 1.1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
}
a,
a img {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a {
	color: inherit;
	text-decoration: none;
}
/* a:hover,
a:hover img {
    opacity: 0.8;
    filter: alpha(opacity=80);
} */
img {
	max-width: 100%;
}
.sp-only {
	display: none;
}
@media only screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
	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;
	padding: 24px 20px 0;
	position: relative;
	background: transparent;
	height: 96px;
	z-index: 11;
}
/* Main menu
------------------------------------------------------------*/

.c-gnav {
	display: flex;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 1000px;
	width: 90%;
}
@media only screen and (max-width: 768px) {
	.c-gnav {
		width: max-content;
		top: 0;
		transform: translate(-50%, 0);
		padding: 40px 0;
	}
}
.c-gnav__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*margin-left: 40px;*/
	width: 80%;
	margin: auto;
}
@media only screen and (max-width: 768px) {
	.c-gnav__list {
		flex-direction: column;
	}
}
.c-gnav__item {
	width: calc((100% - 30px) / 2);
}
@media only screen and (max-width: 768px) {
	.c-gnav__item {
		width: 100%;
	}
}
.c-gnav__item:not(:last-child) {
	margin-bottom: 40px;
}
.c-gnav__ttl {
	font-family: "linotype-didot", serif;
	font-size: 34px;
	line-height: 1;
	margin-bottom: 10px;
	color: #a8a8a8;
	font-weight: normal;
}
@media only screen and (max-width: 768px) {
	.c-gnav__ttl {
		font-size: 26px;
	}
}
.c-gnav__link {
	font-size: 15px;
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.8;
	color: #fff;
}
/* Hambuger menu
------------------------------------------------------------*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openmenu {
	position: fixed;
	/*ボタン内側の基点となるためrelativeを指定*/
	background: #1d1818;
	cursor: pointer;
	width: 50px;
	height: 50px;
	right: 14px;
	top: 14px;
	z-index: 12;
}
/*ボタン内側*/
.openmenu span {
	display: inline-block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
	/*アニメーションの設定*/
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 2px;
	background: #fff;
	width: 54%;
}
.openmenu span:nth-of-type(1) {
	top: 13px;
}
.openmenu span:nth-of-type(2) {
	top: 19px;
}
.openmenu span:nth-of-type(3) {
	top: 25px;
}

.openmenu span:nth-of-type(3)::after {
	content: "Menu";
	/*3つ目の要素のafterにMenu表示を指定*/
	position: absolute;
	top: 5px;
	left: 0;
	right: 0;
	color: #fff;
	font-size: 1rem;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openmenu.active span:nth-of-type(1) {
	top: 14px;
	left: 12px;
	-webkit-transform: translateY(6px) rotate(-45deg);
	transform: translateY(6px) rotate(-45deg);
	width: 54%;
}
.openmenu.active span:nth-of-type(2) {
	opacity: 0;
}
.openmenu.active span:nth-of-type(3) {
	top: 26px;
	left: 12px;
	-webkit-transform: translateY(-6px) rotate(45deg);
	transform: translateY(-6px) rotate(45deg);
	width: 54%;
}
.openmenu.active span:nth-of-type(3)::after {
	content: "Close";
	/*3つ目の要素のafterにClose表示を指定*/
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
	top: 12px;
	left: 15px;
}
/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
	background: #1c1c27;
	color: #fff;
	text-align: center;
}
.c-footer__main {
	padding: 50px 0;
}
.c-footer__main.u-df {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media only screen and (max-width: 1024px) {
	.c-footer__main.u-df {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
}
.c-footer__main--left.u-df {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: calc(50% - 167px);
	text-align: left;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}
@media only screen and (max-width: 1024px) {
	.c-footer__main--left.u-df {
		width: 100%;
		margin-top: 20px;
	}
}
.c-footer__main--right {
	width: 50%;
	filter: grayscale(1);
}
@media only screen and (max-width: 1024px) {
	.c-footer__main--right {
		width: 100%;
	}
}
.c-footer__top {
	font-size: 12px;
	font-weight: 500;
}
@media only screen and (max-width: 1024px) {
	.c-footer__top {
		margin-bottom: 20px;
	}
}
@media only screen and (max-width: 767px) {
	.c-footer__top {
		width: 100%;
		text-align: center;
	}
}
.c-footer__bottom {
	background-color: #101010;
	text-align: center;
	padding: 26px 0;
}
.c-footer__copyright {
	font-size: 12px;
	font-weight: 400;
	color: #7b7b7b;
}
@media only screen and (max-width: 767px) {
	.c-footer__btngroup {
		text-align: center;
		width: 100%;
	}
}
/* layout
------------------------------------------------------------*/
body {
	font-family: "heisei-kaku-gothic-stdn", sans-serif;
	font-size: 1.4rem;
	line-height: 1.5;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: 320px;
	}
}
.l-container {
	max-width: 1350px;
	width: 95%;
	margin: 0 auto;
}
.l-container2 {
	max-width: 1120px;
	width: 95%;
	margin: 0 auto;
}
.c-mainvisual {
	margin-top: -96px;
	padding: 0;
	height: 928px;
	color: #fff;
	position: relative;
	background-color: #03033a;
}
@media only screen and (max-width: 767px) {
	.c-mainvisual {
		height: 650px;
	}
}

.c-mainvisual__inner {
	position: absolute;
	top: 35%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
}
.c-mainvisual__inner.fadeInInner {
	animation: fadeInInner 2s forwards alternate;
}
@keyframes fadeInInner {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@media only screen and (max-width: 767px) {
	.c-mainvisual__inner {
		width: 95%;
		margin: 0 auto;
	}
}
.c-mainvisual--subpage .c-mainvisual__inner {
	/* mix-blend-mode: overlay; */
	top: 34%;
}
.c-mainvisual--subpage {
	background-size: 100%;
	opacity: 0;
}
@media only screen and (min-width: 768px) {
	.zoom {
		animation: zoom 7s forwards alternate;
	}
}

.fadeInBg {
	animation: fadeInBg 2s forwards alternate;
}

@media only screen and (min-width: 768px) {
	.menuBannerZoom {
		animation: menuBannerZoom 7s forwards alternate;
	}
}
@keyframes zoom {
	0% {
		background-size: 100%;
	}
	100% {
		background-size: 103%;
	}
}
@keyframes fadeInBg {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes menuBannerZoom {
	0% {
		background-size: auto 100%;
	}
	100% {
		background-size: auto 103%;
	}
}
.c-mainvisual h2 {
	width: 100%;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	font-size: 6.9rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
	.c-mainvisual h2 {
		font-size: 4.5rem;
	}
}
.c-mainvisual p {
	width: 100%;
	font-size: 2.2rem;
	line-height: 1.5;
	margin-top: 15px;
	font-weight: 700;
	font-family: "heisei-kaku-gothic-stdn", sans-serif;
}
@media only screen and (max-width: 767px) {
	.c-mainvisual p {
		font-size: 2rem;
	}
}
.c-mainvisual .c-btn1 {
	margin-top: 50px;
}
.c-mainvisual--subpage {
	height: 614px;
}
.c-mainvisual--subpage .c-mainvisual__ttl {
	font-size: 4.1rem;
	font-weight: 400;
	color: #ffffff;
	line-height: 1;
	mix-blend-mode: overlay;
	font-family: "linotype-didot", serif;
}
.c-mainvisual__ttl span {
	font-size: 2.9rem;
}
@media only screen and (max-width: 767px) {
	.c-mainvisual__ttl span {
		font-size: 2rem;
	}
}
.c-mainvisual--subpage .c-mainvisual__subttl {
	font-size: 1.8rem;
	font-weight: normal;
	color: #ffffff;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.c-mainvisual .myVideo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	/* position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; */
}
.c-mainvisual #particles-js {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.btn {
	text-align: center;
}
.c-btn {
	display: inline-block;
	padding: 13px 50px 10px 50px;
	font-size: 1.6rem;
	border-radius: 60px;
	line-height: 1;
	background-color: #151313;
	font-family: "circe", sans-serif;
	color: #fff;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	pointer-events: all;
	transition: all 0.5s;
	border: 1px solid #151313;
}
.c-btn:hover {
	background-color: #fff !important;
	color: #151313;
}
@media only screen and (max-width: 767px) {
	.c-btn {
		width: auto;
		font-size: 1.4;
		padding: 10px 20px;
	}
}
.c-btn--purple {
	background-color: #5d295b;
}
.c-btn--purple:hover {
	background-color: #fff;
	color: #5d295b;
}
.c-btn2 {
	display: inline-block;
	padding: 10px 64px;
	font-size: 1.2rem;
	font-weight: 500;
	line-height: 1;
	background-color: #1c1c27;
	color: #fff;
	border: 1px solid #707070;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	transition: all 0.3s;
}
.c-btn2:hover {
	border-color: #fff;
	background-color: #fff;
	color: #1c1c27;
}
.c-btn2:first-child {
	margin-right: 25px;
}
@media only screen and (max-width: 767px) {
	.c-btn2:first-child {
		margin-right: 0;
		margin-bottom: 20px;
	}
}
/*------------------------------------------------------------
title
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-title1 {
	font-size: 3.4rem;
	font-weight: 700;
	color: #fff;
	font-family: "circe", sans-serif;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.c-title1 {
		font-size: 2.4rem;
	}
}
.c-title1--black {
	color: #1f1f1f;
}
.c-subttl {
	font-size: 15px;
	font-weight: 700;
	color: #1d1d1d;
}
.c-title__heading {
	text-align: center;
}
/*------------------------------------------------------------
text
------------------------------------------------------------*/
.c-text1 {
	font-size: 15px;
	font-weight: 700;
	font-family: "circe", sans-serif;
	text-align: center;
}
.c-text1--black {
	color: #1f1f1f;
}
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
TABS
------------------------------------------------------------*/
@media only screen and (max-width: 1024px) {
	.c-tabs.u-df {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
}
@media only screen and (max-width: 767px) {
	.c-tabs.u-df {
		max-width: 400px;
		width: 95%;
	}
}
.tab-link {
	font-size: 1.4rem;
	font-weight: 500;
	color: #3b3b3b;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	padding: 4px 28px;
	border: 1px solid #3b3b3b;
	border-radius: 60px;
	margin-right: 10px;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-align: center;
}
@media only screen and (max-width: 1024px) {
	.tab-link {
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 767px) {
	.tab-link {
		width: calc((100% / 4) - 10px);
		padding: 4px 12px;
	}
}
.tab-link.current,
.tab-link:hover {
	background-color: #1c2d52;
	color: #fff;
}
.s-news__btn {
	color: #393939;
	border: 1px solid #393939;
	padding: 4px 30px;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	transition: all 0.5s;
}
.s-news__btn:hover {
	background-color: #393939;
	color: #fff;
}
.s-news__btn.sp-only {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	margin: 20px auto 0;
}

.c-tab2 {
	margin-bottom: 65px;
}
@media only screen and (max-width: 767px) {
	.c-tab2 {
		flex-wrap: wrap;
		max-width: 400px;
	}
}
.c-tab2__link {
	font-size: 1.7rem;
	font-weight: 500;
	color: #bcbcbc;
	width: calc((100% - 45px) / 4);
	padding: 18px 0px;
	border-radius: 60px;
	background-color: #2a2a38;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-align: center;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.c-tab2__link {
		font-size: 14px;
		width: auto;
		padding: 10px 14px;
	}
}
.c-tab2__link:hover,
.c-tab2__active {
	color: #2a2a38;
	background-color: #ffffff;
}
.c-tab2__active {
	pointer-events: none;
}
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
MENU
------------------------------------------------------------*/
.menu.u-df {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 10;
	background-color: #fff;
	color: #000000;
	overflow-y: auto;
	align-items: flex-start;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
	.menu.u-df {
		flex-direction: column-reverse;
	}
}
.menu.u-df.is-show {
	visibility: visible;
	opacity: 1;
	border: 25px solid #fff;
}

.menu-left {
	flex-grow: 1;
	height: 100%;
	overflow-y: auto;
	position: relative;
	background-color: #2a2a38;
}
@media only screen and (max-width: 768px) {
	.menu-left {
		width: 100%;
	}
	.menu.u-df.is-show {
		border: none;
	}
}
.menu-right {
	background: url(../img/company/mainvisual_single.png) center no-repeat;
	background-size: auto 100%;
	width: 30%;
	align-self: stretch;
	position: relative;
}
@media only screen and (max-width: 768px) {
	.menu-right {
		/* width: 100%;
        height: 400px;
        padding: 80px; */
		display: none;
	}
}
.menu-right__logo {
	width: 90px;
	height: 90px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
	.menu-right__logo {
		width: 75px;
		height: 75px;
	}
}
/*------------------------------------------------------------
breadcrumb
------------------------------------------------------------*/
.c-breadcrumb {
	position: absolute;
	bottom: 250px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	padding: 10px 22px;
	background-color: rgba(36, 37, 44, 0.53);
	border: 1px solid rgba(255, 255, 255, 0.2);
	/*border-bottom: 1px solid rgba(255, 255, 255, 0.2);*/
	flex-wrap: wrap;
	border-radius: 50px;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.c-breadcrumb {
		padding: 10px 15px;
	}
}
.c-breadcrumb__link {
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	font-size: 12px;
	color: #e0e0e0;
}
.c-breadcrumb__link:last-child {
	pointer-events: none;
}
.c-breadcrumb__link::before {
	content: ">";
	display: inline-block;
	margin: 0 20px;
}
@media only screen and (max-width: 767px) {
	.c-breadcrumb__link::before {
		margin: 0 10px;
	}
}
.c-breadcrumb__home img {
	vertical-align: initial;
}
.c-breadcrumb__link.c-breadcrumb__home::before {
	display: none;
}
/*------------------------------------------------------------
GROUP ITEM
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-grpItem {
	background-color: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	display: flex;
}
@media only screen and (max-width: 1024px) {
	.c-grpItem {
		flex-direction: column;
	}
}
.c-grpItem:not(:last-child) {
	margin-bottom: 35px;
}
.c-grpItem__part--left {
	position: relative;
	width: 410px;
	flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
	.c-grpItem__part--left {
		width: 100%;
	}
}
.c-grpItem__part--right {
	flex-grow: 1;
	padding: 55px;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.c-grpItem__part--right {
		padding: 20px;
	}
}
.c-grpItem__ttl {
	font-size: 2.3rem;
	font-weight: 500;
	color: #000000;
	margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
	.c-grpItem__ttl {
		font-size: 1.8rem;
	}
}
.c-grpItem__desc {
	font-size: 1.5rem;
	font-weight: 300;
	color: #707070;
	margin-bottom: 50px;
}
@media only screen and (max-width: 767px) {
	.c-grpItem__desc {
		margin-bottom: 20px;
	}
}
.c-grpItem__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.c-grpItem__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
}
.c-grpItem__btn {
	text-align: center;
	margin-top: auto;
}
.br_class {
	font-weight: normal;
}
@media only screen and (max-width: 767px) {
	.br_class {
		display: block;
	}
}
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
DETAIL TABLE
------------------------------------------------------------*/
.c-detail__row {
	display: flex;
	align-items: center;
	padding: 12px 50px;
	font-size: 1.6rem;
	font-family: "heisei-kaku-gothic-std", sans-serif;
	font-weight: 500;
	font-style: normal;
}
@media only screen and (max-width: 767px) {
	.c-detail__row {
		padding: 8px 20px;
	}
}
.c-detail__row:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.51);
}
.c-detail__ttl {
	width: 100px;
	flex-shrink: 0;
}
.c-detail__txt {
	flex-grow: 1;
	padding-left: 50px;
}
@media only screen and (max-width: 767px) {
	.c-detail__txt {
		padding-left: 0;
	}
}
/*------------------------------------------------------------
label
------------------------------------------------------------*/
.c-label {
	font-size: 1.1rem;
	font-weight: 500;
	color: #2b2b2b;
	background-color: #ccd0ff;
	border-radius: 5px;
	padding: 5px 20px;
	display: inline-block;
	margin: 0 10px;
}
.c-label--optional {
	background-color: #cbcbcb;
}
/*------------------------------------------------------------
form
------------------------------------------------------------*/
.contact-form {
	margin-top: 40px;
}
.contact-form__content.u-df {
	margin-top: 30px;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.contact-form__content.u-df {
		flex-direction: column;
	}
}
.contact-form__content--top {
	padding-bottom: 50px;
	border-bottom: 1px solid #ccd0ff;
}
.contact-form__content--bottom {
	padding-top: 50px;
}
.c-form__part {
	width: calc((100% - 80px) / 2);
}
@media only screen and (max-width: 767px) {
	.c-form__part {
		width: 100%;
	}
}
.wpcf7-form-control-wrap {
	display: block;
	margin: 10px 0;
}
.c-form__row .wpcf7-not-valid-tip {
	margin-top: 5px;
}
.c-form__label {
	display: inline-block;
	width: max-content;
}
.c-form__area,
.c-form__select,
.c-form__input {
	width: 100%;
	padding: 15px 20px;
	background-color: #f5f5f5;
	border-radius: 5px;
	border: 1px solid #f5f5f5;
	box-sizing: border-box;
	cursor: pointer;
	font-family: inherit;
	font-size: inherit;
	-webkit-appearance: none;
}
.c-form__input:focus {
	border-color: #000000;
}
.c-form__input--short {
	width: 175px;
}
.c-form__checkbox {
	vertical-align: bottom;
}
.c-form__area {
	resize: none;
}
.c-form__row {
	font-size: 12px;
	font-weight: 500;
	color: #2b2b2b;
}
@media only screen and (max-width: 1024px) {
	.c-form__row.u-df {
		flex-direction: column;
	}
}
@media only screen and (max-width: 1024px) {
	.c-form__row--wrapper.u-df {
		flex-direction: column;
	}
}
.c-form__row--left {
	width: 73%;
}
@media only screen and (max-width: 1024px) {
	.c-form__row--left {
		width: 100%;
	}
}
.c-form__row--right {
	flex-grow: 1;
	margin-left: 30px;
}
@media only screen and (max-width: 1024px) {
	.c-form__row--right {
		flex-grow: 1;
		margin-left: 0;
		width: 100%;
	}
}
.c-form__row--checkbox {
	text-align: center;
	display: block;
	margin: 80px 0 50px;
	cursor: pointer;
	font-size: 1.2rem;
	font-weight: 500;
	color: #2b2b2b;
}
.c-form__row--m2,
.c-form__row--tsubo {
	width: 100%;
}
@media only screen and (max-width: 1024px) {
	.c-form__row--m2,
	.c-form__row--tsubo {
		width: 100%;
		flex-wrap: wrap;
	}
}
.c-form__input--txt {
	width: 120px;
	flex-shrink: 0;
	flex-grow: 1;
	margin-left: 10px;
}
.c-form__row--m2 .wpcf7-form-control-wrap,
.c-form__row--tsubo .wpcf7-form-control-wrap {
	width: 175px;
}
@media only screen and (max-width: 1024px) {
	.c-form__row--m2 .wpcf7-form-control-wrap,
	.c-form__row--tsubo .wpcf7-form-control-wrap {
		width: 45%;
	}
}
.c-form__submit {
	text-align: center;
	width: max-content;
	margin: 0 auto;
	cursor: not-allowed;
}
.c-form__send {
	color: #2b2b2b;
	background-color: #cbcbcb;
	border: hidden;
	pointer-events: none;
	width: 100%;
}
.c-form__submit.is-confirm {
	cursor: pointer;
}
.c-form__submit.is-confirm .c-form__send {
	pointer-events: all;
	cursor: pointer;
	background-color: #8b92e0;
	color: #fff;
}
.c-form__submit.is-confirm .c-form__send:hover {
	color: #8b92e0;
	border: 1px solid #8b92e0;
}

/*------------------------------------------------------------
other
------------------------------------------------------------*/
.inner-list {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 2;
	opacity: 0;
}
@media only screen and (max-width: 1024px) {
	.inner-list.l-container {
		max-width: 400px;
	}
}

/* Animation class for PC version */
.inner-list.fadeUpListPC {
	animation: fadeUpListPC 1.5s forwards alternate;
}

/* Animation class for SP version */
.inner-list.fadeUpListSP {
	animation: fadeUpListSP 1.5s forwards alternate;
}

@keyframes fadeUpListPC {
	0% {
		top: -500px;
		opacity: 0;
	}
	100% {
		top: -550px;
		opacity: 1;
	}
}
/* SP version keyframes */
@keyframes fadeUpListSP {
	0% {
		top: -450px;
		opacity: 0;
	}
	100% {
		top: -520px;
		opacity: 1;
	}
}
.list-item {
	width: 440px;
	height: 475px;
	background-size: cover !important;
	border-radius: 6px;
	position: relative;
	text-align: center;
	margin: 0 20px;
	/* pointer-events: none; */
	transition: all 1s;
	overflow: hidden;
}

.list-item::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: inherit;
	background-size: cover;
	transform-origin: center;
	transition: transform 1s;
}
.list-item:hover::before {
	transform: scale(1.1);
}
.list-item::after {
	position: absolute;
	content: "";
	display: block;
	height: 230px;
	width: 1px;
	top: 144px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
}
.list-item a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.list-item:hover .c-btn {
	background-color: #fff !important;
	color: #151313;
}
.list-item__heading {
	position: absolute;
	top: 60px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.list-item__ttl {
	color: #48ecff;
	font-size: 2.7rem;
	font-weight: 700;
	font-family: "circe", sans-serif;
	line-height: 1.5;
}
.list-item__desc {
	margin-top: 0;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
}
.list-item .c-btn {
	position: absolute;
	bottom: 35px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.mainvisual-list .slick-dots {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style-type: none;
	width: 100%;
	z-index: 10;
}
.mainvisual-list .slick-dots.fadeUpPC {
	animation: fadeUpPC 1.5s forwards alternate;
}
.mainvisual-list .slick-dots.fadeUpSP {
	animation: fadeUpSP 1.5s forwards alternate;
}
@keyframes fadeUpPC {
	0% {
		top: 70%;
		opacity: 0;
	}
	100% {
		top: 65%;
		opacity: 1;
	}
}
@keyframes fadeUpSP {
	0% {
		top: 80%;
		opacity: 0;
	}
	100% {
		top: 72%;
		opacity: 1;
	}
}
/* @media only screen and (max-width: 767px) {
	.mainvisual-list .slick-dots {
		top: 72%;
	}
} */
.mainvisual-list .slick-dots li {
	padding: 0 5px;
}
.mainvisual-list .slick-dots button {
	display: block;
	width: 70px;
	height: 7px;
	padding: 0;
	border: none;
	border-radius: 10px;
	background-color: #cdcdcd;
	text-indent: -9999px;
	cursor: pointer;
}
@media only screen and (max-width: 767px) {
	.mainvisual-list .slick-dots button {
		width: 40px;
		height: 4px;
	}
}
.mainvisual-list .slick-dots li.slick-active button,
.mainvisual-list .slick-dots li:hover button {
	background-color: #1c2d52;
}
.mainvisual-list .c-mainvisual__inner img {
	display: inline-block;
}
.mainvisual-item {
	position: relative;
}
.mainvisual-list {
	-webkit-transition: all 200s ease-in-out;
	-moz-transition: all 200s ease-in-out;
	-ms-transition: all 200s ease-in-out;
	-o-transition: all 200s ease-in-out;
	opacity: 1;
}

.mainvisual-list {
	height: 100%;
}
.p-top .slick-slider .slick-track,
.slick-slider .slick-list {
	height: 100%;
}

#loading {
	display: none;
	height: 194px;
	margin-top: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#loading.is-active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.loader {
	width: 48px;
	height: 48px;
	border: 5px solid #fff;
	border-bottom-color: #1c2d52;
	border-radius: 50%;
	display: inline-block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-animation: rotation 1s linear infinite;
	animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes rotation {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.timer-bar {
	width: 160px;
	height: 6px;
	border-radius: 10px;
	margin: 0 auto;
	background-color: transparent;
	position: absolute;
	bottom: -116px;
	border: 1px solid #fff;
	left: 50%;
	transform: translateX(-50%);
}
.timer-bar_txt {
	position: absolute;
	left: 50%;
	top: -42px;
	transform: translateX(-50%);
	font-size: 21px;
	color: #fff;
	font-weight: 700;
	font-family: "circe", sans-serif;
	width: max-content;
}
.timer-bar-value {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	height: 100%;
	background-color: #1c2d52;
}

.c-list2__wrapper {
	width: 90%;
}
.c-list2.u-df {
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 -25px;
	padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
	.c-list2.u-df {
		justify-content: center;
		margin: 0;
	}
}
.c-list2__item {
	width: calc((100% - 100px) / 2);
	background-color: #fdfdfd;
	border-radius: 5px;
	overflow: hidden;
	margin: 0 25px 60px;
}

@media only screen and (max-width: 767px) {
	.c-list2__item {
		width: 100%;
		max-width: 400px;
		margin: 0 0 30px;
	}
}
.c-list2__item--nopost {
	width: 100%;
	text-align: center;
	padding: 20px 0;
	font-size: 20px;
}
.c-item__top {
	height: 280px;
	/*background-color: #000;*/
	overflow: hidden;
	position: relative;
	text-align: center;
	background: repeating-linear-gradient(-45deg, #f0f0f0, #f0f0f0 5px, #e9ecf5 5px, #e9ecf5 10px);
}
.c-item__top--blurbg {
	position: absolute;
	filter: blur(30px);
	/*mix-blend-mode: hard-light;*/
	width: 130%;
	height: 130%;
	opacity: 0.2;
	z-index: 0;
	top: -15%;
	left: -15%;
	transition: all 0.3s;

	background: url("../img/property/bg_prop.jpg") center no-repeat;
	background-size: cover;
}

.c-list2__item:hover .c-item__top--blurbg {
	filter: blur(10px);
	opacity: 0.6;
}

.c-item__top img {
	width: auto;
	height: 100%;
	object-fit: contain;
	transition: all 0.3s;
	position: relative;
	z-index: 1;
}
.c-list2__item:hover .c-item__top img {
	transform: scale(1.05);
}
.c-item__bottom {
	padding: 16px 60px 16px 25px;
	position: relative;
	transition: all 0.5s;
	background-color: #fff;
}
.c-list2__item:hover .c-item__bottom {
	/*background-image: linear-gradient(to bottom, #a9eafd, #cef5e4);*/
	/*background-image: linear-gradient(to right, #C9C9C9 0%, #EFEFEF 100%);*/
}
@media only screen and (max-width: 767px) {
	.c-item__bottom a {
		display: block;
		text-align: right;
	}
}
.c-item__ttl {
	color: #333;
	font-weight: 700;
	font-size: 16px;
	/* padding: 0 10px; */
	width: auto;
	/* margin-bottom: 10px; */
	transition: all 0.3s;
	line-height: 1.5;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline-block;
	transition: all 0.5s;
}
@media only screen and (max-width: 1440px) {
	.c-item__ttl {
		line-height: 1.5;
	}
}
@media only screen and (max-width: 767px) {
	.c-item__ttl {
		/* padding: 10px 5px; */
	}
}
.c-list2__item:hover .c-item__ttl {
	color: #2a2a38;
	/* background-color: #5f5f6a;*/
}
.c-list2__item {
	padding-bottom: 5px;
	text-decoration: none;
	background-image: linear-gradient(90deg, #3a5fc1, #33ccff);
	background-size: 0 3px;
	background-position: left bottom;
	background-repeat: no-repeat;
	transition: all 0.5s;
}

.c-list2__item:hover {
	background-size: 100% 3px;
}
.c-item__info.u-df {
	background-color: #eee;
	font-size: 12px;
	font-weight: 400;
	color: #171717;
	align-items: flex-start;
	justify-content: flex-start;
	width: max-content;
	margin: 5px 0;
	padding: 5px 10px;
	border-radius: 2px;
	transition: all 0.3s;
}
.c-item__info.u-df:nth-of-type(1) {
	margin-top: 10px;
}
@media only screen and (max-width: 1440px) {
	.c-item__info.u-df {
		width: fit-content;
	}
}
@media only screen and (max-width: 767px) {
	.c-item__info.u-df {
		padding: 5px;
	}
}
.c-list2__item:hover .c-item__info.u-df {
	color: #eee;
	background-color: #555;
}

/* hover */
.change-border01:hover::after,
.change-border01:hover::before {
	width: 100%;
	width: calc(100% + 1px);
}
.change-border01:hover .change-border01__inner::after,
.change-border01:hover .change-border01__inner::before {
	height: 100%;
	height: calc(100% + 1px);
}

.c-item__info--bold {
	font-weight: 700;
	margin-right: 15px;
	width: 40px;
	flex-shrink: 0;
}
@media only screen and (max-width: 767px) {
	.c-item__info--bold {
		margin-right: 8px;
	}
}
.c-item__ic {
	position: absolute;
	right: 20px;
	bottom: 20px;
	border-radius: 50%;
}
@media only screen and (max-width: 1024px) {
	.c-item__ic {
		right: 8px;
		bottom: 8px;
	}
}
@media only screen and (max-width: 767px) {
	.c-item__ic {
		vertical-align: middle;
		position: absolute;
		float: right;
	}
}
.c-list2__item:hover .c-item__ic {
	/* filter: brightness(5); */
	/*filter: invert(1);*/
	opacity: 1;
	background-color: #fff;
}
/* Pagination */
.p-topics .c-list2__wrapper {
	margin-top: 70px;
}
@media only screen and (max-width: 767px) {
	.p-topics .c-list2__wrapper {
		margin-top: 35px;
	}
}
.pagination.u-df {
	justify-content: center;
	padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
	.pagination.u-df {
		padding-bottom: 30px;
	}
}
.pagination-wrapper {
	margin-top: 80px;
}
@media only screen and (max-width: 767px) {
	.pagination-wrapper {
		margin-top: 40px;
	}
}
.pagination .page-numbers {
	display: inline-block;
	margin: 0;
	font-size: 14px;
	padding: 8px 16px;
	color: #a2a2a2;
	border: 1px solid #e2e2e2;
}
.pagination .page-numbers.current {
	color: #fff;
	background-color: #24252c;
	border-color: #242121;
}
.pagination .page-numbers.next,
.pagination .page-numbers.prev {
	color: #000;
	background: none;
}
.pagination-info {
	text-align: center;
	font-family: "circe", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
}

.p-topics .pagination .page-numbers {
	border-color: #000;
}
.detail-heading.u-df {
	align-items: flex-start;
	justify-content: center;
	position: relative;
	margin-top: -200px;
}
@media only screen and (max-width: 1024px) {
	.detail-heading.u-df {
		flex-direction: column;
	}
}
/*.detail-heading__item {
    width: 50%;
}*/
.detail-heading__item {
	width: 100%;
}
@media only screen and (max-width: 1024px) {
	.detail-heading__item {
		width: 100%;
	}
}
.detail-heading__item--left {
	text-align: center;
}
.detail-heading__item--left img {
	object-fit: cover;
	width: 100%;
	border-radius: 12px;
}
@media only screen and (max-width: 1024px) {
	.detail-heading__item--left img {
		height: auto;
	}
}
/*.detail-heading__ttl {
    font-size: 3.4rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-top: 70px;
    position: relative;
    left: -33px;
}*/
.detail-heading__ttl {
	font-size: 3.4rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	margin-top: -40px;
	margin-bottom: 60px;
	position: relative;
	text-align: center;
}
.p-csr .detail-heading__ttl {
	margin-bottom: 120px;
}
@media only screen and (max-width: 1024px) {
	.detail-heading__ttl {
		position: static;
	}
}
@media only screen and (max-width: 767px) {
	.detail-heading__ttl {
		font-size: 2.4rem;
		margin-top: 20px;
	}
}
/*.detail-heading__ttl p {
    padding: 10px 60px;
    background-color: #1a1a1a;
    line-height: 1;
    width: fit-content;
    margin-bottom: 10px;
	border-radius: 4px;
}*/
.detail-heading__ttl p {
	line-height: 1;
	margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
	.detail-heading__ttl p {
		padding: 10px 20px;
		margin: 0 auto;
		margin-bottom: 10px;
	}
}
@media only screen and (max-width: 767px) {
	.detail-heading__ttl p {
		padding: 0;
	}
}
.detail-heading__txt {
	max-width: 50%;
	font-size: 1.6rem;
	color: #101010;
	font-weight: 500;
	/* text-align: right; */
	margin: auto;
}

.detail-heading__txt img {
	width: 147px;
}

@media only screen and (max-width: 1024px) {
	.detail-heading__txt {
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.detail-heading__txt {
		padding: 0;
		font-size: 1.6rem;
		text-align: center;
		max-width: 100%;
	}
}
/*
------------------------------------------------------------*/
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
Css of home page
------------------------------------------------------------*/
.p-top .s-news {
	margin-top: 360px;
	background: #f2f6fd;
	position: relative;
}
@media only screen and (max-width: 1440px) {
	.p-top .s-news {
		margin-top: 300px;
	}
}
@media only screen and (max-width: 767px) {
	.p-top .s-news {
		margin-top: 360px;
	}
}
@media only screen and (max-width: 1024px) {
	.p-top .s-news__heading.u-df {
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}

.p-top .s-news__list {
	margin-top: 30px;
}
.p-top .s-news__item {
	background-color: #fff;
	border-radius: 5px;
	padding: 10px 30px;
	transition: all 0.3s;
}
.p-top .s-news__item:hover {
	background-color: #4e5f82;
}
.p-top .s-news__item:not(:last-child) {
	margin-bottom: 12px;
}
@media only screen and (max-width: 1024px) {
	.p-top .s-news__item a.u-df {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
}
@media only screen and (max-width: 1024px) {
	.p-top .s-news__left {
		margin-bottom: 5px;
	}
}
.p-top .s-news__date {
	font-size: 14px;
	color: #171717;
}
.p-top .s-news__item:hover .s-news__date {
	color: #fff;
}
.p-top .s-news__cat {
	font-size: 9px;
	font-weight: 700;
	font-family: "circe", sans-serif;
	text-align: center;
	padding: 2px 0;
	width: 100px;
	border: 1px solid;
	display: inline-block;
	vertical-align: bottom;
	margin: 0 10px;
}
.p-top .s-news__item:hover .s-news__cat {
	background-color: #fff;
}
.p-top .s-news__cat.new,
.s-news__cat.news {
	color: #c91d7a;
	border-color: #c91d7a;
}
.p-top .s-news__cat.release,
.s-news__cat.topics {
	color: #1d46c9;
	border-color: #1d46c9;
}
.p-top .s-news__cat.media {
	color: #108d3b;
	border-color: #108d3b;
}
.p-top .s-news__text {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	font-size: 14px;
	font-weight: 400;
	color: #171717;
}
.p-top .s-news__item:hover .s-news__text {
	color: #fff;
}
.s-news .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
	width: 35px;
}
.s-news .slick-arrow.slick-prev {
	left: -6px;
}
.s-news .slick-arrow.slick-next {
	right: -6px;
}
.p-top .s-business {
	background-color: #1a1c21;
	/* padding: 30px; */
	pointer-events: none;
	overflow: hidden;
}

.p-top .s-business__inner {
	/* background: url(../img/top/business_bg.png) center no-repeat;
    background-size: cover; */
	padding: 70px;
	color: #fff;
	pointer-events: none;
	transition: all 0.3s;
	position: relative;
}
.s-business__bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	transition: all 0.5s;
}
.p-top .s-business__inner:hover .s-business__bg {
	transform: scale(1.1);
}

.p-top .s-business__inner::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 30px solid #1a1c21;
	transition: all 0.5s;
	z-index: 1;
}
@media only screen and (max-width: 767px) {
	.p-top .s-business__inner::before {
		border-width: 15px;
	}
}
.p-top .s-business__inner:hover::before {
	border-width: 0px;
}
@media only screen and (max-width: 767px) {
	.p-top .s-business__inner {
		padding: 40px;
	}
}
.p-top .s-business__txt {
	margin: 50px 0;
	font-size: 20px;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.p-top .s-business__txt {
		margin: 25px 0;
		font-size: 16px;
	}
}
.p-top .s-group__list {
	margin-top: 40px;
}
@media only screen and (max-width: 1550px) {
	.p-top .s-group__list {
		width: 90%;
		margin: 40px auto 0;
	}
}
@media only screen and (max-width: 767px) {
	.p-top .s-group__list {
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
		height: 350px;
	}
	.s-group__list .slick-list {
		height: 100%;
	}
	.s-group__list .slick-track {
		height: 100%;
	}
}
.s-group__list .slick-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	cursor: pointer;
	width: 50px;
	height: 50px;
}
@media only screen and (max-width: 767px) {
	.s-group__list .slick-arrow {
		width: 30px;
		height: 30px;
	}
}
.s-group__list .slick-arrow.slick-prev {
	left: -5%;
}
@media only screen and (max-width: 1024px) {
	.s-group__list .slick-arrow.slick-prev {
		left: -7%;
	}
}
.s-group__list .slick-arrow.slick-next {
	right: -5%;
}
@media only screen and (max-width: 1024px) {
	.s-group__list .slick-arrow.slick-next {
		right: -7%;
	}
}
.p-top .s-group__item {
	margin: 0 5px;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}
.p-top .s-group__item::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #000;
	opacity: 0;
	transition: all 0.3s;
}
.p-top .s-group__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}
.p-top .s-group__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 100%;
	background-color: #fff;
	border-radius: 50%;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.p-top .s-group__logo {
	display: inline-block;
	width: 138px;
	transition: all 0.3s;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.5s;
}
@keyframes moveUp {
	0% {
		transform: translateX(50%);
	}
	100% {
		transform: translateX(30%);
	}
}
.p-top .s-group .btn {
	margin-top: 40px;
}
.s-group__hover {
	color: #fff;
	transition: all 0.3s;
	display: block;
	padding: 0 30px;
	position: absolute;
	bottom: 20%;
}
.s-group__hover .hover__desc,
.s-group__hover .hover__ttl {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s, opacity 0.3s; /* Adjust the duration as needed for a smooth transition */
}
.p-top .s-group__item:hover::before {
	opacity: 0.5;
	transition: all 0.3s;
}
.p-top .s-group__item:hover .s-group__logo {
	transform: translate(-50%, -115%);
	opacity: 0.1;
}
.hover__ttl {
	font-size: 1.4rem;
	font-weight: 700;
	margin: 28px 0px 22px;
}
.hover__desc {
	font-size: 1rem;
	font-weight: 300;
}

.s-value {
	background: url(../img/top/bg_value.jpg) top center no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.s-value {
		background-size: auto;
	}
	.is-subpage .s-value {
		background: none;
	}
}
.s-value__heading {
	padding: 100px 0;
	text-align: center;
	color: #fff;
	mix-blend-mode: overlay;
}
/* @media only screen and (max-width: 767px) {

} */
@media only screen and (max-width: 767px) {
	.is-subpage .s-value__heading {
		max-width: unset;
		width: 100%;
	}
	.is-subpage .s-value__title {
		max-width: 375px;
		width: 95%;
		margin: 0 auto;
	}
}

.s-value__title {
	font-size: 70px;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
	.s-value__title {
		max-width: 375px;
		width: 95%;
		margin: 0 auto;
	}
}
.s-value__txt {
	font-size: 22px;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.s-value__txt {
		font-size: 2rem;
	}
}
.s-value__content {
	background-color: #2a2a38;
	overflow: hidden;
}
.s-value__list {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
@media only screen and (max-width: 767px) {
	.s-value__list {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}
.s-value__item {
	width: 20%;
	padding: 30px;
	text-align: center;
	-ms-flex-item-align: stretch;
	align-self: stretch;
}

@media only screen and (max-width: 767px) {
	.s-value__item {
		width: 100%;
	}
}
.s-value__item:not(:last-child) {
	border-right: 1px solid #d1d1d1;
}
@media only screen and (max-width: 767px) {
	.s-value__item:not(:last-child) {
		border: hidden;
	}
}
.s-value__img {
	width: 100%;
	height: 130px;
	position: relative;
}
@media only screen and (max-width: 767px) {
	.s-value__img {
		height: auto;
	}
}
.s-value__img::before {
	content: "";
	position: absolute;
	display: block;
	height: 50px;
	width: 1px;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #d1d1d1;
}
@media only screen and (max-width: 767px) {
	.s-value__img::before {
		display: none;
	}
}
.s-value__img img {
	width: 60px;
	height: 60px;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 50%;
}
@media only screen and (max-width: 767px) {
	.s-value__img img {
		width: 220px;
		height: 220px;
	}
}
.s-value__enTtl {
	font-size: 28px;
	font-weight: 400;
	color: #a8a8a8;
	line-height: 1;
	margin-top: 10px;
	font-family: "linotype-didot", serif;
}
.s-value__ttl {
	font-size: 15px;
	margin-top: 15px;
	color: #fff;
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 1px solid #868686;
}
@media only screen and (max-width: 767px) {
	.s-value__ttl {
		margin-top: 15px;
		padding-bottom: 5px;
	}
}
.s-value__sublist {
	text-align: left;
	margin-top: 32px;
}
@media only screen and (max-width: 767px) {
	.s-value__sublist {
		margin-top: 16px;
	}
}
.s-value__subitem {
	padding: 8px 0;
	border-bottom: 1px solid rgba(172, 172, 172, 0.55);
	font-size: 13px;
	color: #fff;
}
/*--------------------------------------------------------------
// PAGE PROPERTY
--------------------------------------------------------------*/
.p-property .c-mainvisual--subpage {
	background: url(../img/property/mainvisual.jpg) center no-repeat;
	background-size: cover;
}
.p-property .s-value__heading {
	background: url(../img/property/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-property .s-value__title {
	mix-blend-mode: overlay;
}
.property-list {
	position: relative;
	margin-top: -150px;
	/* padding-bottom: 60px; */
}
/*--------------------------------------------------------------
// END PAGE PROPERTY
--------------------------------------------------------------*/
/*--------------------------------------------------------------
// PAGE SINGLE PROPERTY 
--------------------------------------------------------------*/
.p-property .p-property-single .s-value__heading {
	background: url(../img/property/bg_single-value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-property .s-value__title {
	mix-blend-mode: overlay;
}
.property-detail {
	position: relative;
}
@media only screen and (max-width: 767px) {
	.property-detail__main.u-df {
		flex-direction: column;
	}
}
.property-detail::before {
	position: absolute;
	content: "";
	display: block;
	width: 50%;
	left: 0;
	top: 0;
	bottom: 0;
	background-color: #f5f5f5;
	background: repeating-linear-gradient(-45deg, #f5f5f5, #f5f5f5 5px, #f3f3f3 5px, #f3f3f3 10px);
}
@media only screen and (max-width: 767px) {
	.property-detail::before {
		display: none;
	}
}
.property-detail__content {
	width: calc((100% - 32px) / 2);
	align-self: stretch;
}
@media only screen and (max-width: 767px) {
	.property-detail__content {
		width: 100%;
	}
}
.property-detail__content--right {
	position: relative;
}
.property-detail__content--rightMain {
	position: absolute;
	top: 20px;
	left: 0;
	width: 100%;
}
@media only screen and (max-width: 767px) {
	.property-detail__content--rightMain {
		position: static;
	}
}
.property-detail__content--left {
	position: relative;
	margin-top: -150px;
	padding-bottom: 60px;
}
@media only screen and (max-width: 767px) {
	.property-detail__content--left {
		padding-bottom: 160px;
	}
}
.property-detail__ttl {
	position: relative;
	width: max-content;
	font-size: 2.6rem;
	font-weight: 700;
	color: #ffffff;
	margin-top: -150px;
	left: -20px;
	margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
	.property-detail__details .c-table01__inner tr {
		display: flex;
		flex-direction: column;
	}
}
.property-detail__details .c-table01__inner tr td:not(:last-child) {
	padding-right: 15px;
}
@media only screen and (max-width: 767px) {
	.property-detail__details .c-table01__inner tr td:not(:last-child) {
		padding-right: 0;
	}
}
/* text-animation */
.splitting .char.animate {
	color: transparent;
	animation: blackblur 2s ease-out forwards;
	-webkit-animation: blackblur 2s ease-out forwards;
	animation-delay: calc(40ms * var(--char-index));
}
.property-detail__ttl.splitting .char.animate {
	color: transparent;
	animation: blur 2s ease-out forwards;
	-webkit-animation: blur 2s ease-out forwards;
	animation-delay: calc(100ms * var(--char-index));
}
@keyframes blur {
	0% {
		text-shadow: 0 0 100px #fff;
		opacity: 0;
	}
	50% {
		text-shadow: 0 0 50px #fff;
	}
	100% {
		text-shadow: unset;
		opacity: 1;
		color: #fff;
	}
}

@-webkit-keyframes blur {
	0% {
		text-shadow: 0 0 100px #fff;
		opacity: 0;
	}
	50% {
		text-shadow: 0 0 50px #fff;
	}
	100% {
		text-shadow: unset;
		opacity: 1;
		color: #fff;
	}
}
@keyframes blackblur {
	0% {
		text-shadow: 0 0 50px #2b2b2b;
		opacity: 0;
	}
	50% {
		text-shadow: 0 0 25px #2b2b2b;
	}
	100% {
		text-shadow: unset;
		opacity: 1;
		color: #2b2b2b;
	}
}

@-webkit-keyframes blackblur {
	0% {
		text-shadow: 0 0 50px #2b2b2b;
		opacity: 0;
	}
	50% {
		text-shadow: 0 0 25px #2b2b2b;
	}
	100% {
		text-shadow: unset;
		opacity: 1;
		color: #2b2b2b;
	}
}
@media only screen and (max-width: 1350px) {
	.property-detail__ttl {
		right: -50%;
		font-size: 2.5rem;
		margin-bottom: 52px;
		width: 95%;
	}
}
@media only screen and (max-width: 767px) {
	.property-detail__ttl {
		top: auto;
		left: unset;
		right: auto;
		font-size: 1.8rem;
		/* position: absolute; */
		word-break: break-all;
		margin-bottom: 30px;
	}
}
.property-detail__ttl p {
	width: max-content;
	background-color: #1c1c27;
	margin-bottom: 10px;
	padding: 10px 20px;
	border-radius: 4px;
	color: inherit;
	line-height: 2;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	display: inline;
}
@media only screen and (max-width: 1350px) {
	.property-detail__ttl p {
		padding-left: 20px;
		width: fit-content;
		max-width: 100%;
	}
}
@media only screen and (max-width: 767px) {
	.property-detail__ttl p {
		width: fit-content;
		line-height: 2.5;
	}
}
.property-detail__ttl2 {
	padding: 20px 0;
	color: #070707;
	font-size: 21px;
	font-weight: 700;
	border-bottom: 1px solid #969696;
	/* margin-top: 30px; */
}

@media only screen and (max-width: 767px) {
	.property-detail__ttl2 {
		padding-top: 0;
	}
}

.property-detail__intro {
	padding: 20px 0px;
}
.property-detail__intro p.u-df {
	font-size: 14px;
	font-weight: 400;
	color: #242121;
	justify-content: flex-start;
}

.property-detail__intro .s-detail__txt--table {
	width: 100%;
}
.property-detail__intro .s-detail__txt--table td {
	/*border-bottom: 1px solid #ddd;
	padding-top: 8px;
	padding-bottom: 8px;*/
	line-height: 1.5;
}
.property-detail__intro .s-detail__txt--table td:nth-child(2) {
	padding-left: 20px;
	padding-right: 20px;
	/*width: 0;
    white-space: nowrap;*/
}

@media only screen and (max-width: 767px) {
	.property-detail__intro .s-detail__txt--table td:nth-child(2) {
		/*width: auto;*/
	}
}

.property-detail__txt {
	width: 165px;
	flex-shrink: 0;
	margin-right: 20px;
	font-weight: 700;
}
.property-detai__ttl3 {
	width: 100%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #5a5a5a;
	font-size: 12px;
	color: #2c2c2c;
	font-weight: 500;
	margin: 30px 0;
}

.property-detail__ttl p {
	background: linear-gradient(-45deg, #000, #333, #175fa6, #222);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite;
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.property-detail__details dl {
	display: flex;
	font-size: 12px;
	font-weight: 500;
	color: #2b2b2b;
	padding: 6px 12px;
	align-items: center;
}
.property-detail__details dl:nth-child(odd) {
	background-color: #f2f2f2;
}
.property-detail__details dt {
	width: 110px;
	flex-shrink: 0;
}

.property-detail__img {
	/*width: 100%;*/
	width: auto;
	height: 425px;
	display: block;
	margin: auto;
	object-fit: contain;
	background-color: #2a2a38;
	border-radius: 8px;
}
@media only screen and (max-width: 1024px) {
	.property-detail__img {
		height: 100%;
		width: 100%;
	}
}
.property-detail_imgList {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
}
.property-detail_imgList img {
	width: calc((100% - 60px) / 3);
	height: 160px;
	margin-right: 30px;
	margin-bottom: 30px;
	cursor: pointer;
	object-fit: contain;
	/* object-fit: cover; */
	background-color: #ccc;
	border-radius: 5px;
	background: repeating-linear-gradient(-45deg, #ddd, #ddd 5px, #e0e0e0 5px, #e0e0e0 10px);
}
/* @media only screen and (max-width: 767px) {
    .property-detail_imgList img {
        height: auto;
    }
} */
.property-detail_imgList img:hover {
	opacity: 0.7;
}
.property-detail_imgList img:nth-child(3n) {
	margin-right: 0;
}
.property-detail__btn {
	margin-top: 30px;
	text-align: center;
}
@media only screen and (max-width: 767px) {
	.property-detail__btn {
		margin-top: 30px;
		margin-bottom: 10px;
	}
}
.property-detail__btn .c-btn {
	background-color: #1c2d52;
}

.property-map {
	padding: 60px 0 120px;
	filter: grayscale(1);
}
.property-map img {
	width: 100%;
	height: 512px;
	object-fit: cover;
}
/*--------------------------------------------------------------
// END PAGE SINGLE PROPERTY
--------------------------------------------------------------*/
/*--------------------------------------------------------------
// PAGE LEASE
--------------------------------------------------------------*/
.p-property.p-lease .c-tab2__link {
	width: calc((100% - 45px) / 3);
}
@media only screen and (max-width: 767px) {
	.p-property.p-lease .c-tab2__link {
		width: auto;
	}
}
/*--------------------------------------------------------------
// END PAGE PROPERTY
--------------------------------------------------------------*/
/*--------------------------------------------------------------
// PAGE COMPANY
--------------------------------------------------------------*/
.p-company .c-mainvisual--subpage {
	background: url(../img/company/mainvisual.jpg) center no-repeat;
	background-size: cover;
}
.p-company .s-value__heading {
	background: url(../img/company/bg_value.jpg) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-company .s-value__title {
	mix-blend-mode: overlay;
}
.company-group {
	background-color: #e8e8f1;
}
.company-intro.u-df {
	align-items: flex-start;
	justify-content: center;
	position: relative;
	margin-top: -200px;
}
@media only screen and (max-width: 767px) {
	.company-intro.u-df {
		flex-direction: column;
	}
}
.company-intro__item {
	width: 50%;
}
@media only screen and (max-width: 767px) {
	.company-intro__item {
		width: 100%;
	}
}
.company-intro__item--left {
	text-align: center;
}
.company-intro__item--left img {
	width: 430px;
	height: 430px;
	object-fit: contain;
}
@media only screen and (max-width: 767px) {
	.company-intro__item--left img {
		height: auto;
	}
}
.company-intro__ttl {
	font-size: 3.2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	margin-top: 70px;
}
@media only screen and (max-width: 767px) {
	.company-intro__ttl {
		font-size: 2.4rem;
		margin-top: 20px;
	}
}
.company-intro__ttl p {
	padding: 10px 40px;
	background-color: #1a1a1a;
	line-height: 1;
	width: fit-content;
	margin-bottom: 10px;
	border-radius: 4px;
}
@media only screen and (max-width: 767px) {
	.company-intro__ttl p {
		padding: 10px 20px;
	}
}
.company-intro__txt {
	padding: 50px;
	font-size: 2.1rem;
	color: #101010;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.company-intro__txt {
		padding: 0;
		font-size: 1.6rem;
	}
}
.company-list__list {
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	.company-contact__time:last-child {
		margin-top: -1px;
	}
}

/*--------------------------------------------------------------
// END PAGE COMPANY
--------------------------------------------------------------*/
/*--------------------------------------------------------------
// PAGE SINGLE COMPANY 
--------------------------------------------------------------*/
.p-company-single .c-mainvisual--single {
	background: url(../img/company/mainvisual_single.png) center no-repeat;
	background-size: cover;
}

.p-company-single .s-value__heading {
	background: url(../img/company/bg_single-value.jpg) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-company-single .s-value__title {
	mix-blend-mode: overlay;
}
.company-detail {
	background-color: #e7e7f0;
	padding-bottom: 80px;
}
.company-detail__heading {
	text-align: center;
}
.company-detail__logo {
	position: relative;
	margin-top: -120px;
	width: 180px;
	height: 180px;
	margin-bottom: 40px;
}
.p-profile .company-detail__logo {
	margin-top: 110px;
}

.company-detail__ttl {
	font-size: 2.4rem;
	font-weight: 500;
	color: #171717;
}
.company-detail__list {
	margin-top: 70px;
	padding-bottom: 40px;
	border-bottom: 1px solid #ccd0ff;
}
.company-detail__wrapper--bottom {
	margin-top: 50px;
}
.company-detail__wrapper--bottom.u-df {
	align-items: flex-start;
}
@media only screen and (max-width: 1100px) {
	.company-detail__wrapper--bottom.u-df {
		flex-direction: column;
	}
}
.company-contact {
	width: calc((100% - 65px) / 2);
	text-align: center;
}
@media only screen and (max-width: 1100px) {
	.company-contact {
		width: 100%;
	}
	.company-contact--right {
		margin-top: 50px;
	}
}
.company-contact__ttl {
	width: 100%;
	padding: 8px 0;
	background-color: #fafafa;
	border: 1px solid #c1c1c1;
	font-size: 2rem;
	font-weight: 700;
	color: #171717;
	font-family: "circe", sans-serif;
	line-height: 1;
	margin-bottom: 20px;
}
.company-contact__box {
	background-color: #f5f5f5;
}
@media only screen and (max-width: 1100px) {
	.company-contact--right .company-contact__box {
		height: 300px;
	}
}
.company-contact__box--map {
	filter: grayscale(1);
}
.company-contact__box--left {
	padding: 28px 35px;
}
.postid_9511 .company-contact__box--left {
	padding: 28px 20px;
}
@media only screen and (max-width: 767px) {
	.company-contact__box--left {
		padding: 28px 20px;
	}
}
.company-contact__box iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(1);
}
.company-contact__heading {
	margin-bottom: 30px;
}
@media only screen and (max-width: 480px) {
	.company-contact__heading {
		flex-wrap: wrap;
		justify-content: center !important;
	}
}
@media only screen and (max-width: 480px) {
	.company-contact__box--left {
		/* padding: 28px 30px; */
	}
}
@media only screen and (max-width: 767px) {
	.postid_9511 .company-contact__heading{
		flex-direction: column;
	}
	.postid_9511 .company-contact__time {
		width: 100%;
	}
}
.company-contact__time span {
	border: 1px solid #8b8b8b;
	padding: 10px 20px;
	font-size: 1.2rem;
	font-weight: 500;
	color: #171717;
	line-height: 1;
}
.postid_9511 .company-contact__time span {
	/* padding: 10px; */
	vertical-align: bottom;
}
@media only screen and (max-width: 767px) {
	/* .company-contact__time span:nth-child(1) {
		width: 90px;
		display: inline-block;
	}
	.company-contact__time span:nth-child(2) {
		width: 110px;
		display: inline-block;
	} */
	.postid_9511 .company-contact__time span:nth-child(2) {
		/* width: calc(100% - 90px); */
	}
}
@media only screen and (max-width: 1350px) and (min-width: 1100px) {
	.page-asobuba .company-contact__heading {
		display: block !important;
	}
	.page-asobuba .company-contact__time:last-child {
		margin-top: 20px;
	}
}
@media only screen and (max-width: 610px) {
	.company-contact__heading {
		display: block !important;
	}
	.company-contact__time:last-child {
		margin-top: 20px;
	}
	.company-contact__time span {
		display: block !important;
		margin-top: -1px;
		margin-left: 0 !important;
	}
}


.company-contact__tel {
	font-size: 4.4rem;
	font-weight: 500;
	color: #171717;
}
@media only screen and (max-width: 480px) {
	.company-contact__tel {
		font-size: 2.4rem;
	}
}
.company-contact__fax {
	font-size: 2.9rem;
	font-weight: 500;
	color: #171717;
}
@media only screen and (max-width: 480px) {
	.company-contact__fax {
		font-size: 2rem;
	}
}
.company-contact__tel--ic,
.company-contact__fax--ic {
	vertical-align: baseline;
}
.company-contact__btn .c-btn {
	background-color: #3a5081;
	color: #fff;
	margin-top: 30px;
	max-width: 340px;
	padding: 10px 0;
	width: 100%;
}
.company-contact__btn .c-btn:hover {
	/* color: #3a5081; */
}
.company-contact__btn .c-btn .ic-hover {
	display: none;
}
.company-contact__btn .c-btn:hover {
	color: #3a5081;
}
.company-contact__btn .c-btn:hover .ic-arrow {
	display: none;
}
.company-contact__btn .c-btn:hover .ic-hover {
	display: inline-block;
}
.company-contact__btn .c-btn img {
	vertical-align: text-bottom;
	width: 26px;
	height: 26px;
	margin-left: 40px;
}
.p-top .s-group__img {
	height: 448px;
}
.p-top .s-group__inner {
	background-color: unset;
}
/*--------------------------------------------------------------
// END PAGE COMPANY
--------------------------------------------------------------*/
/*--------------------------------------------------------------
// PAGE CONTACT
--------------------------------------------------------------*/
.p-contact .c-mainvisual--subpage {
	background: url(../img/contact/mainvisual.jpg) center no-repeat;
	background-size: cover;
}

.p-contact .s-value__heading {
	background: url(../img/contact/bg_single-value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-contact .s-value__title {
	mix-blend-mode: overlay;
}
.p-contact .c-tab2 {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 750px;
}
.p-contact .c-tab2__link {
	width: calc((100% - 15px) / 3);
}
@media only screen and (max-width: 767px) {
	.p-contact .c-tab2__link {
		width: calc((100% - 70px) / 2);
		margin-bottom: 15px;
	}
}
.p-contact .company-detail__wrapper--bottom.u-df {
	justify-content: center;
	margin-top: 0;
}
.p-contact .company-contact__box {
	margin-top: 70px;
}
.p-contact .company-detail {
	background-color: #fff;
}
.contact-notice {
	background-color: #f5f5f5;
	border: 1px solid #c1c1c1;
	padding: 50px;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	.contact-notice {
		padding: 25px;
	}
}
.contact-notice__ttl {
	font-size: 1.5rem;
	font-weight: 500;
	color: #171717;
	margin-bottom: 40px;
	text-align: center;
}
.contact-notice__txt {
	font-size: 1.2rem;
	font-weight: 700;
	color: #2b2b2b;
	padding-left: 16px;
	text-indent: -16px;
	margin: 20px 0;
}

.contact-notice__txt:last-child {
	margin-bottom: 0;
}
.contact-notice__txt--sub {
	font-size: 1.2rem;
	font-weight: 500;
	color: #707070;
	margin-left: 20px;
}
#wpcf7cpcnf table {
	width: 90%;
	margin: 0 auto;
	text-align: center;
	border-collapse: collapse;
}
#wpcf7cpcnf table tr:not(:first-child) {
	margin-top: -1px;
}
#wpcf7cpcnf table tr {
	display: flex;
}
@media only screen and (max-width: 767px) {
	#wpcf7cpcnf table tr {
		flex-direction: column;
	}
}
#wpcf7cpcnf table th {
	width: 220px;
	text-align: left;
	background-color: #8b92e0;
	padding: 20px 10px;
	border: 1px solid #000;
	flex-shrink: 0;
	color: #fff;
}
#wpcf7cpcnf table td {
	padding: 20px;
	border: 1px solid #ccc;
	width: 75%;
}
@media only screen and (max-width: 767px) {
	#wpcf7cpcnf table th,
	#wpcf7cpcnf table td {
		width: 100%;
		text-align: center;
	}
}
div.wpcf7cp-btns {
	text-align: center;
}
button.wpcf7cp-cfm-edit-btn,
button.wpcf7cp-cfm-submit-btn {
	margin-right: 20px;
	margin-bottom: 20px;
	display: inline-block;
	padding: 10px 50px;
	font-size: 1.6rem;
	border-radius: 60px;
	line-height: 1;
	background-color: #151313;
	font-family: "circe", sans-serif;
	color: #fff;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	pointer-events: all;
	transition: all 0.5s;
	border: 1px solid #151313;
	cursor: pointer;
}
button.wpcf7cp-cfm-submit-btn {
	background-color: #8b92e0;
	color: #fff;
	border-color: #8b92e0;
}
.thankyou {
	text-align: center;
	border: 2px solid #000;
	padding: 10px;
	margin-bottom: 50px;
}
.p-contact.p-thankyou .company-detail {
	/*padding: 200px 0;*/
}
.p-contact.p-thankyou .company-detail p.text {
	font-size: 1.5rem;
	border: 1px solid #ccc;
	width: 100%;
	padding: 50px 15%;
	margin: 0 auto 50px;
}
@media only screen and (max-width: 767px) {
	.p-contact.p-thankyou .company-detail {
		padding: 50px 0;
	}
	.p-contact.p-thankyou .company-detail p.text {
		padding: 20px;
	}
}
.p-thankyou .c-btn {
	background-color: #8b92e0;
	color: #fff;
	border-color: #8b92e0;
}
.p-thankyou .c-btn:hover {
	color: #8b92e0;
}
@media only screen and (width: 375px) and (height: 812px) and (-webkit-device-pixel-ratio: 3) {
	#wpcf7cpcnf table {
		width: 90%;
		margin: 0 auto;
		text-align: center;
		border-collapse: collapse;
	}
	#wpcf7cpcnf table tr:not(:first-child) {
		margin-top: -1px;
	}
	#wpcf7cpcnf table tr {
		display: flex;
	}
	@media only screen and (max-width: 767px) {
		#wpcf7cpcnf table tr {
			flex-direction: column;
		}
	}
	#wpcf7cpcnf table th {
		width: 220px;
		text-align: left;
		background-color: #8b92e0;
		padding: 20px 10px;
		border: 1px solid #000;
		flex-shrink: 0;
		color: #fff;
	}
	#wpcf7cpcnf table td {
		padding: 20px;
		border: 1px solid #ccc;
		width: 75%;
	}
	@media only screen and (max-width: 767px) {
		#wpcf7cpcnf table th,
		#wpcf7cpcnf table td {
			width: 100%;
			text-align: center;
		}
	}
	div.wpcf7cp-btns {
		text-align: center;
	}
	button.wpcf7cp-cfm-edit-btn,
	button.wpcf7cp-cfm-submit-btn {
		margin-right: 20px;
		margin-bottom: 20px;
		display: inline-block;
		padding: 10px 50px;
		font-size: 1.6rem;
		border-radius: 60px;
		line-height: 1;
		background-color: #151313;
		font-family: "circe", sans-serif;
		color: #fff;
		width: -webkit-max-content;
		width: -moz-max-content;
		width: max-content;
		pointer-events: all;
		transition: all 0.5s;
		border: 1px solid #151313;
		cursor: pointer;
	}
	button.wpcf7cp-cfm-submit-btn {
		background-color: #8b92e0;
		color: #fff;
		border-color: #8b92e0;
	}
	.thankyou {
		text-align: center;
		border: 2px solid #000;
		padding: 10px;
		margin-bottom: 50px;
	}
	.p-contact.p-thankyou .company-detail {
		padding: 200px 0;
	}
	.p-thankyou .c-btn {
		background-color: #8b92e0;
		color: #fff;
		border-color: #8b92e0;
	}
	.p-thankyou .c-btn:hover {
		color: #8b92e0;
	}
}
/*--------------------------------------------------------------
// PAGE REQUEST
--------------------------------------------------------------*/
.request-about {
	background-color: #e7e7f0;
}
.request-about__img {
	margin: 70px 0 30px;
	border-radius: 6px;
	overflow: hidden;
	text-align: center;
}
.request__img {
	width: auto;
	height: auto;
	object-fit: cover;
}
@media only screen and (max-width: 767px) {
	.request__img {
		border-radius: 6px;
	}
}
.request-form .contact-form__note {
	margin-top: 50px;
}
.request-form .wpcf7-list-item.first {
	margin: 0;
}
.request-form .wpcf7-form-control-wrap {
	margin: 12px 0;
}
@media only screen and (max-width: 767px) {
	.request-differences.u-df {
		flex-direction: column;
	}
}

.request-differences__item {
	width: calc((100% - 60px) / 2);
	border-radius: 6px;
	overflow: hidden;
	align-self: stretch;
}
@media only screen and (max-width: 767px) {
	.request-differences__item {
		width: 100%;
		margin-bottom: 30px;
	}
}
.differences-item__top {
	background-color: #fff;
	text-align: center;
}
.differences-item__img {
	object-fit: contain;
}
.differences-item__bottom {
	background-color: #f5f5f5;
	padding: 40px;
}
@media only screen and (max-width: 767px) {
	.differences-item__bottom {
		padding: 20px;
	}
}
.differences-item__txtBox {
	margin-top: 20px;
}
.differences-item__ttl {
	padding-bottom: 20px;
	border-bottom: 1px solid #969696;
	font-size: 2.3rem;
	font-weight: 500;
	color: #000000;
}
@media only screen and (max-width: 767px) {
	.differences-item__ttl {
		font-size: 2rem;
	}
}
.differences-item__desc {
	margin-bottom: 15px;
	font-size: 1.5rem;
	font-weight: 300;
	color: #707070;
	padding-left: 16px;
	text-indent: -16px;
}
.differences-item__desc--purple {
	color: #8b92e0;
}
.differences-item__desc::before {
	content: "・";
	display: inline-block;
	font-size: 1.5em;
	margin-left: 10px;
}
.request-merit__heading {
	text-align: center;
	position: relative;
}
.request-merit__heading--txt {
	margin: 0 auto;
	width: fit-content;
	padding: 0 20px;
	background: #e7e7f0;
	z-index: 2;
	position: relative;
}

.request-merit__heading::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background-color: #707070;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

.request-merit__ttl {
	font-family: "linotype-didot", serif;
	font-size: 3.2em;
	font-weight: 400;
	color: #1c2d52;
	line-height: 1;
}
@media only screen and (max-width: 767px) {
	.request-merit__ttl {
		font-size: 2.4rem;
	}
}
.request-merit__desc {
	font-size: 1.5rem;
	font-weight: 500;
	color: #1c2d52;
}
.request-merit__content {
	margin: 45px 0 18px;
}
.request-merit__txt {
	background-color: #f5f5f5;
	border-radius: 6px;
	color: #101010;
	padding: 18px;
	line-height: 1;
	text-align: center;
	margin-bottom: 10px;
	font-size: 2.1rem;
	font-weight: 500;
}
@media only screen and (max-width: 767px) {
	.request-merit__txt {
		font-size: 1.5rem;
	}
}
.request-merit__note {
	font-size: 1.2rem;
	font-weight: 500;
	font-family: "heisei-kaku-gothic-stdn", sans-serif;
	color: #2b2b2b;
}
/*--------------------------------------------------------------
// PAGE POLICY
--------------------------------------------------------------*/
.policy-main {
	background-color: #e7e7f0;
	padding: 70px 0 120px;
}
.policy__note {
	font-size: 12px;
	font-weight: 500;
	color: #2b2b2b;
	margin-top: 70px;
}
.policy-list {
	margin-top: 30px;
}
.policy-item {
	background-color: #ffffff;
	border-radius: 6px;
	padding: 60px 55px;
}
@media only screen and (max-width: 767px) {
	.policy-item {
		padding: 30px 20px;
	}
}
.policy-item:not(:last-child) {
	margin-bottom: 35px;
}
.policy-item__ttl {
	font-size: 2.3rem;
	font-weight: 500;
	color: #000000;
	line-height: 1;
}
.policy-item__desc {
	font-size: 1.5rem;
	font-weight: 300;
	color: #707070;
	margin-top: 20px;
}
.policy-item__list .policy-item__desc {
	padding-left: 16px;
	text-indent: -16px;
}
.policy-item__list .policy-item__ttl {
	margin-bottom: 20px;
}
.policy-item__list .policy-item__desc {
	margin-top: 0;
}
@media only screen and (max-width: 767px) {
	.policy-item__list .policy-item__desc {
		margin-top: 5px;
	}
}
/*--------------------------------------------------------------
// PAGE RESULT
--------------------------------------------------------------*/
.p-result .c-mainvisual--subpage {
	background: url(../img/result/mainvisual.jpg) center no-repeat;
	background-size: cover;
}
.p-result .c-mainvisual--subpage::after {
	content: "";
	background-color: rgba(13, 30, 64, 0.4);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.p-result .s-value__heading {
	background: url(../img/property/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-result .s-value__title {
	mix-blend-mode: overlay;
}
.property-list {
	position: relative;
	margin-top: -150px;
	/* padding-bottom: 60px; */
}
.p-result .property-detail__intro p {
	padding-left: 16px;
	/* text-indent: -16px; */
} /*--------------------------------------------------------------
// PAGE RESULTS AREA
--------------------------------------------------------------*/
.visual-area {
	height: 90vh;
}

@media screen and (max-width: 767px) {
	.googleMap {
		height: 90vh;
	}
	.visual-area {
		height: 80vh;
	}
}

.visual-area:after {
	background: none;
}

.p-area .s-area .c-tabs li {
	max-width: 212px;
}

.h4Basic {
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	background: #0e1d2f;
	padding: 10px 16px 11px;
}
.h5Basic03 {
	font-size: 14px;
	font-weight: bold;
	color: #313868;
	padding: 30px 0 8px;
	border-bottom: 4px solid #0e1d2f;
	margin-bottom: 32px;
}

.mapBox {
	position: relative;
	max-width: 1350px;
	width: 95%;
	margin: auto;
	margin-top: -180px;
	margin-bottom: 100px;
}
.areaInfo {
	padding: 1% 4%;
	text-align: center;
	position: absolute;
	margin: 0 auto;
	bottom: 15px;
	left: 0;
	right: 0;
	display: table;
	background: rgba(255, 255, 255, 0.95);
}
.tableBasic04 {
	width: 100%;
	border: 1px solid #d2d2d2;
	margin: 23px 0 56px;
	color: #313868;
}
.tableBasic04 tr {
	background-color: #fff;
}
.tableBasic04 tr .inTable tr {
	background-color: rgba(255, 255, 255, 0);
}
.tableBasic04 .bgColor01 {
	background: #faf6f4;
}
.tableBasic04 tr:nth-child(2n-1) {
	background: #faf6f4;
}
.tableBasic04 th {
	width: 200px;
	border-right: 1px solid #d2d2d2;
	padding: 10px 10px 10px 40px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
}
.tableBasic04 td {
	line-height: 1.64;
	padding: 10px 20px 10px 30px;
	text-align: justify;
}
.tableBasic04 td a {
	color: #313868;
	text-decoration: none;
}
/*--------------------------------------------------------------
// PAGE TOPICS
--------------------------------------------------------------*/
.p-topics .c-tab2 {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	max-width: 750px;
}

@media only screen and (max-width: 767px) {
	.p-topics .c-tab2__link {
		width: calc((100% - 70px) / 2);
		bottom: 30px;
		margin-bottom: 15px;
	}
}
.p-topics .s-news__item {
	width: 100%;
}

.topics-list {
	background-color: #e7e7f0;
}

/* single-topics
---------------------------------------------------------- */
.p-topics .s-single .c-table01 {
	table-layout: fixed;
}
.p-topics .s-single .c-table01 tr td p {
	padding: 5px 0;
}
.p-topics .s-single .c-table01 tr:nth-child(odd) {
	background: #f5f5f5;
}
.p-topics .s-single .c-table01 tr {
	position: relative;
}
.p-topics .s-single .c-table01 tr:nth-child(odd):after{
	content: "";
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	position: absolute;
	background: #f5f5f5;
}
.p-topics .s-single .c-table01 td {
	padding: 0 4%;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.p-topics .s-single .c-table01 td {
		display: block;
		/* padding-left: 4%; */
	}
}

.p-topics .s-single dl {
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 11px 0 10px;
	font-size: 1.4rem;
	margin-bottom: 30px;
}
.p-topics .s-single dl dt {
	float: left;
	width: 106px;
	padding-left: 22px;
}

.p-topics .s-single .c-btn02 {
	color: #fff;
	display: block;
	text-align: center;
	max-width: 286px;
	padding: 7px 0;
	border-radius: 17px;
	margin: 70px auto 0;
	background: #041322;
}

@media screen and (max-width: 767px) {
	.p-topics .s-single .c-btn02 {
		max-width: 150px;
		padding: 4px 0;
		margin: 50px auto 0;
	}
	.p-topics .s-single dl dt {
		display: contents;
	}
}

.p-topics .s-single .topicsImgBox {
	margin: 20px auto;
}
.p-topics .s-single .topicsImgBox img {
	display: block;
	margin: auto;
}
.c-table01 {
	width: 100%;
	border-collapse: collapse;
}
/*--------------------------------------------------------------
// PAGE BUSINESS
--------------------------------------------------------------*/
.p-business .c-mainvisual--subpage {
	background: url(../img/business/mainvisual.png) center no-repeat;
	background-size: cover;
}
.p-business .business-main__wrapper {
	text-align: center;
	background-color: #e8e8f1;
}
.p-business .s-value__heading {
	background: url(../img/business/s-value_img.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
/* .p-business .s-value__title {
    mix-blend-mode: overlay;
} */
.p-business .business-main {
}
.p-business .business-main__img {
	margin-bottom: 70px;
	position: relative;
	margin-top: -255px;
}
.p-business .business-main__ttl {
	font-size: 3.4rem;
	font-weight: 700;
}
@media only screen and (max-width: 767px) {
	.p-business .business-main__ttl {
		font-size: 2.7rem;
		font-weight: 700;
	}
}
.p-business .business-main__txt {
	font-size: 2.1rem;
	margin-top: 50px;
}
@media only screen and (max-width: 767px) {
	.p-business .business-main__txt {
		font-size: 1.7rem;
	}
}
/*--------------------------------------------------------------
// PAGE CSR
--------------------------------------------------------------*/
.p-csr .c-mainvisual--subpage {
	background: url(../img/about/mainvisual.jpg) center no-repeat;
	background-size: cover;
}
.p-csr .c-grpItem__part--left {
	width: 570px;
}
@media only screen and (max-width: 1024px) {
	.p-csr .c-grpItem__part--left {
		width: 100%;
	}
}
.p-csr .company-intro__item--left img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.p-csr .csr-main__wrapper {
	text-align: center;
}
.p-csr .s-value__heading {
	background: url(../img/about/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-csr .csr-group {
	background-color: #e7e7f0;
	margin-top: -80px;
}
.p-csr .s-value__title {
	mix-blend-mode: overlay;
}

.csr-main {
	background-color: #e7e7f0;
}
.csr-list__content {
	margin: 40px 0;
}
@media only screen and (max-width: 767px) {
	.csr-list__content {
		flex-direction: column;
	}
}
.csr-item {
	width: calc((100% - 60px) / 2);
	border-radius: 6px;
	overflow: hidden;
}
@media only screen and (max-width: 767px) {
	.csr-item {
		width: 100%;
		margin-bottom: 20px;
	}
}
.csr-item img {
	width: 100%;
	object-fit: cover;
}
.p-csr .c-grpItem__bg--contain {
	object-fit: contain;
}
@media only screen and (max-width: 1024px) {
	.p-csr .c-grpItem__bg--contain {
		object-fit: cover;
	}
}
/*--------------------------------------------------------------
// PAGE FOREST PROTECTION
--------------------------------------------------------------*/
.p-forest .c-grpItem__address{
	font-size: 1.5rem;
	font-weight: 300;
	color: #4D4D4D;
	padding: 10px 0;
	margin-bottom: 20px;
	border-top: 1px solid #D8D8D8;
	border-bottom: 1px solid #D8D8D8;
}
.p-forest .c-title__heading{
	position: relative;
}
.p-forest .c-title__heading::before{
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0,-50%);
	height: 1px;
	background-color: #A6B7DD;
}
.p-forest .c-title1{
	width: fit-content;
	margin: 0 auto;
	background-color: #E7E7F0;
	position: relative;
	padding: 0 40px;
	color: #8999BC;
}
.p-forest .c-subttl{
	color: #8999BC;
}
.p-forest .company-group{
	background-color: #E7E7F0;
}
/*--------------------------------------------------------------
// PAGE GREETING
--------------------------------------------------------------*/
.p-greeting .c-mainvisual--subpage {
	background: url(../img/about/mainvisual.png) center no-repeat;
	background-size: cover;
}
.p-greeting .greeting-main__wrapper {
	text-align: center;
}
.p-greeting .s-value__heading {
	background: url(../img/about/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-greeting .s-value__title {
	mix-blend-mode: overlay;
}
.p-greeting .detail-heading__txt p {
	display: inline-block;
	margin-right: 26px;
}
.p-greeting .detail-heading__txt {
	text-align: right;
	padding: 0;
	max-width: 100%;
}
.greeting-main {
	background-color: #e7e7f0;
}
.greeting-message {
	margin-top: 70px;
	font-size: 1.8rem;
	font-weight: 500;
	max-width: 780px;
	line-height: 1.8;
}
.greeting-message p {
	margin-bottom: 50px;
}
/*--------------------------------------------------------------
// PAGE PHILOSOPHY
--------------------------------------------------------------*/
.p-philosophy .c-mainvisual--subpage {
	background: url(../img/about/mainvisual.png) center no-repeat;
	background-size: cover;
}
.p-philosophy .company-detail {
	padding-bottom: 80px;
}
.p-philosophy .s-value__heading {
	background: url(../img/about/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-philosophy .s-value__title {
	mix-blend-mode: overlay;
}
.philosophy-content {
	text-align: center;
}
.philosophy-content__heading {
	position: relative;
}
/*
.philosophy-content__heading::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #707070;
    top: 50%;
    transform: translateY(-50%);
}*/
.philosophy-content__ttl {
	font-family: "linotype-didot", serif;
	font-size: 3.2rem;
	font-weight: 400;
	color: #1c2d52;
	position: relative;
	/*background-color: #e7e7f0;*/
	padding: 0 50px;
	width: max-content;
	margin: 0 auto;
}

.philosophy-content__ttl span {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	color: #1c2d52;
	opacity: 0.5;
	font-family: "heisei-kaku-gothic-stdn", sans-serif;
}
/*.philosophy-content__txt {
    font-size: 4rem;
    font-weight: 500;
    color: #101010;
    margin: 45px 0;
}*/
.philosophy-content__txt {
	font-size: 3.2rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin-top: -150px;
	margin-bottom: 110px;
	position: relative;
	text-align: center;
	letter-spacing: 0.074em;
}
@media only screen and (max-width: 767px) {
	.philosophy-content__txt {
		font-size: 2.4rem;
		font-feature-settings: "palt";
	}
}
.philosophy-values__list {
	margin-top: 45px;
}
.philosophy-values__dt {
	font-size: 2.4rem;
	font-weight: 500;
	color: #101010;
	padding: 14px 0;
	line-height: 1;
	background-color: #f5f5f5;
}
@media only screen and (max-width: 767px) {
	.philosophy-values__dt {
		font-size: 2rem;
	}
}
.philosophy-values__dd {
	font-size: 1.8rem;
	font-weight: 500;
	color: #101010;
	padding: 25px 0;
	line-height: 1;
	background-color: transparent;
	letter-spacing: 0.074em;
}
@media only screen and (max-width: 767px) {
	.philosophy-values__dd {
		line-height: 1.5;
		letter-spacing: 0.094em;
	}
}
/*--------------------------------------------------------------
// PAGE PROFILE
--------------------------------------------------------------*/
/* animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
} */

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}
.p-profile .l-container {
	width: 100%;
}
.p-profile .c-mainvisual--subpage {
	background: url(../img/about/mainvisual.jpg) center no-repeat;
	background-size: cover;
}
@media only screen and (max-width: 767px) {
	.p-profile .c-mainvisual--subpage {
		background-position: 30%;
	}
}
.p-profile .company-detail {
	padding-bottom: 80px;
}
.p-profile .s-value__heading {
	background: url(../img/about/bg_value.png) center no-repeat;
	background-size: cover;
	mix-blend-mode: normal;
}
.p-profile .s-value__title {
	mix-blend-mode: overlay;
}
.profile__mainttl {
	font-size: 2.1rem;
	font-weight: 700;
	color: #070707;
	margin-bottom: 16px;
}
.profile-row {
	display: flex;
	font-size: 1.6rem;
	font-weight: 500;
	color: #2b2b2b;
	padding: 12px 0;
}
.profile-row:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.51);
}
.profile-ttl {
	width: 110px;
	text-align: center;
	flex-shrink: 0;
}
.profile-txt {
	flex-grow: 1;
	text-align: left;
}

.p-profile .company-contact__btn .c-btn {
	margin-top: 15px;
}
.p-profile .company-contact__btn .c-btn.c-btn--purple {
	background-color: #5d295b;
	margin-top: 30px;
}
.p-profile .p-top .s-group__item {
	margin-bottom: 20px;
}

/* 20241223 */
.p-profile1 .company-contact__heading, .p-profile1 .company-contact__btn {
	justify-content: center;
}
.p-profile1 .company-contact__time {
	min-width: 192px;
	display: inline-flex;
}
.p-profile1 .company-contact__time + .company-contact__time {
	margin-left: 30px;
}
.p-profile1 .company-contact__btn .c-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-profile1 .company-contact__btn .c-btn + .c-btn {
	margin: 30px 0 0 25px;
}
.p-profile1 .company-contact--full {
	width: 100%;
}
.p-profile1 .company-contact--right .company-contact__box {
	height: 357px;
}
@media only screen and (max-width: 767px) {
	.p-profile1 .company-contact__time {
		min-width: 100%;
		display: block;
	}
	.p-profile1 .company-contact__time + .company-contact__time {
		margin: 20px 0 0;
	}
	.p-profile1 .company-contact__btn {
		display: block;
	}
	.p-profile1 .company-contact__btn .c-btn {
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.p-profile1 .company-contact__btn .c-btn + .c-btn{
		margin: 15px 0 0;
	}
}

/*--------------------------------------------------------------
// PAGE CASE
--------------------------------------------------------------*/
/* .p-case .c-mainvisual--subpage {
    background: url(../img/result/mainvisual.jpg) center no-repeat;
    background-size: cover;
} */
.p-case .property-detail {
	padding-bottom: 80px;
}
/*--------------------------------------------------------------
// PAGE SINGLE CASE
--------------------------------------------------------------*/

.p-case-single .property-detail::before {
	width: 100%;
}
.p-case .c-item__ic {
	bottom: 50%;
	transform: translate(0, 50%);
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Utility .u-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
.u-df {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.u-pd80 {
	padding: 80px 0;
}
.u-pd60 {
	padding: 60px 0;
}
.u-textcenter {
	text-align: center;
}
.u-shadow {
	-webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// ANIMATION
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
ANIMATION
------------------------------------------------------------*/
@-webkit-keyframes floatAnime {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
		transform: translateX(-6px);
		opacity: 1;
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(6px);
		transform: translateX(6px);
		transform: translateX(6px);
		opacity: 1;
	}
}
@keyframes floatAnime {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
		transform: translateX(-6px);
		opacity: 1;
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(6px);
		transform: translateX(6px);
		transform: translateX(6px);
		opacity: 1;
	}
}
@keyframes floatAnime {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
		opacity: 0;
	}
	25% {
		-webkit-transform: translateX(-6px);
		transform: translateX(-6px);
		transform: translateX(-6px);
		opacity: 1;
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
	100% {
		-webkit-transform: translateX(6px);
		transform: translateX(6px);
		transform: translateX(6px);
		opacity: 1;
	}
}
/*　上に上がる動き　*/
@-webkit-keyframes UpAnimate {
	from {
		opacity: 0;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes UpAnimate {
	from {
		opacity: 0;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes UpAnimate {
	from {
		opacity: 0;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
/*　下に下がる動き　*/
@-webkit-keyframes DownAnimate {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
}
@keyframes DownAnimate {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
}
@keyframes DownAnimate {
	from {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(150px);
		transform: translateY(150px);
		transform: translateY(150px);
	}
}
.zoomInTrigger,
.flipLeftTopTrigger,
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.blurTrigger {
	opacity: 0;
}
/* fadeIn */
.fadeIn {
	-webkit-animation-name: fadeInAnime;
	animation-name: fadeInAnime;
	animation-name: fadeInAnime;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes fadeInAnime {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
/* fadeUp */
.fadeUp {
	-webkit-animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	animation-name: fadeUpAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
/* fadeDown */
.fadeDown {
	-webkit-animation-name: fadeDownAnime;
	animation-name: fadeDownAnime;
	animation-name: fadeDownAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes fadeDownAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes fadeDownAnime {
	from {
		opacity: 0;
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		transform: translateY(-50px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
		transform: translateY(0);
	}
}
.blur {
	-webkit-animation-name: blurAnime;
	animation-name: blurAnime;
	animation-name: blurAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes blurAnime {
	from {
		-webkit-filter: blur(10px);
		filter: blur(10px);
		filter: blur(10px);
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		-webkit-filter: blur(0);
		filter: blur(0);
		filter: blur(0);
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes blurAnime {
	from {
		-webkit-filter: blur(10px);
		filter: blur(10px);
		filter: blur(10px);
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		-webkit-filter: blur(0);
		filter: blur(0);
		filter: blur(0);
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes blurAnime {
	from {
		-webkit-filter: blur(10px);
		filter: blur(10px);
		filter: blur(10px);
		-webkit-transform: scale(1.02);
		transform: scale(1.02);
		transform: scale(1.02);
		opacity: 0;
	}
	to {
		-webkit-filter: blur(0);
		filter: blur(0);
		filter: blur(0);
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
/*==================================================
      ぱたっ
      ===================================*/
/* flipLeftTop */
.flipLeftTop {
	-webkit-animation-name: flipLeftTopAnime;
	animation-name: flipLeftTopAnime;
	animation-name: flipLeftTopAnime;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	opacity: 0;
}
@-webkit-keyframes flipLeftTopAnime {
	from {
		-webkit-transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
}
@keyframes flipLeftTopAnime {
	from {
		-webkit-transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
}
@keyframes flipLeftTopAnime {
	from {
		-webkit-transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		transform: translate(-20px, 80px) rotate(-15deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		transform: translate(0, 0) rotate(0deg);
		opacity: 1;
	}
}
/*==================================================
      ぶわっ、ぽんっ、どどんっ
      ===================================*/
/* zoomIn */
.zoomIn {
	-webkit-animation-name: zoomInAnime;
	animation-name: zoomInAnime;
	animation-name: zoomInAnime;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes zoomInAnime {
	from {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes zoomInAnime {
	from {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes zoomInAnime {
	from {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		transform: scale(0.6);
		opacity: 0;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.flipLeftTopTrigger,
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.blurTrigger {
	opacity: 0;
}
.slide-in {
	overflow: hidden;
	-webkit-transform: translate(-100%, 0%) matrix(1, 0, 0, 1, 0, 0);
	transform: translate(-100%, 0%) matrix(1, 0, 0, 1, 0, 0);
	transform: translate(-100%, 0%) matrix(1, 0, 0, 1, 0, 0);
	display: inline-block;
}
.slide-in_inner {
	display: inline-block;
	-webkit-transform: translate(100%, 0%) matrix(1, 0, 0, 1, 0, 0);
	transform: translate(100%, 0%) matrix(1, 0, 0, 1, 0, 0);
	transform: translate(100%, 0%) matrix(1, 0, 0, 1, 0, 0);
}
.slideAnimeLeftRight {
	-webkit-animation-name: slideText-100;
	animation-name: slideText-100;
	animation-name: slideText-100;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes slideText-100 {
	from {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes slideText-100 {
	from {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes slideText-100 {
	from {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
.slideAnimeRightLeft {
	-webkit-animation-name: slideText100;
	animation-name: slideText100;
	animation-name: slideText100;
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes slideText100 {
	from {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes slideText100 {
	from {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes slideText100 {
	from {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
		transform: translateX(0);
	}
}
/*========= LoadingのためのCSS ===============*/

/* Loading背景画面設定　*/

#splash {
	/*fixedで全面に固定*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	height: 100%;
	background: #1c1c27;
	text-align: center;
	color: #fff;
}

/* Loadingバー中央配置　*/
#splash_text {
	position: absolute;
	top: 40%;
	left: 50%;
	z-index: 999;
	width: 100%;
	transform: translate(-50%, -50%);
	color: #fff;
}

/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg {
	height: 2px;
}
.splash_logo {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
	.splash_logo {
		top: 35%;
	}
}
.c-mainvisual--subpage::before {
	content: "";
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAG0lEQVQYV2NkYGD4z8DAwMgABXAGNgGwSgwVAFbmAgXQdISfAAAAAElFTkSuQmCC");
	background-repeat: repeat;
	background-blend-mode: overlay;
	background-position: 0px;
	background-size: auto, cover;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
}

.grecaptcha-badge { visibility: hidden; }