/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2026 | 01:54:17 */
@import url( 'https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap' );
@import url( 'https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap' );
@import url( 'https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap' );
@import url( 'https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap' );

/* 共通設定
-------------------------------------------------- */
:root {
	--font-type01: "Urbanist", sans-serif;
	--font-type02: "Zen Maru Gothic", sans-serif;
	--font-type03: "Kiwi Maru", serif;
}

.rtc_overflow_visible { overflow: visible; }

body.es-page-company .es-container.page-header, body.es-page-new-top .es-container.page-header { display: none; }
body.es-page-new-top .es-link-container {
	margin-top: 0 !important;
}

@media (min-width: 480px) {
	#masthead .site-logo-img .custom-logo {
		height: 50px;
	}
	.main-header-menu > .menu-item > a {
		font-weight: 500;
	}
	body #masthead:not(.fixed) .main-header-menu > .menu-item > a:hover,
	body #masthead:not(.fixed) .main-header-menu > .unclickable.menu-item:hover > a {
		color: #333;
	}
	.main-header-menu .current-menu-ancestor > a {
		color: #03558B;
	}
	.es-desktop .main-header-menu.submenu-with-border .sub-menu a {
		color: #333;
	}
}

/* 新TOP
-------------------------------------------------- */
.rtc_title_opacity {
	position: relative;
	margin: 30px 0;
	text-align: center;
	font-weight: bold;
}
.rtc_title_opacity > span {
	margin-bottom: -25px;
	display: block;
	opacity: .2;
	z-index: 0;
	font-size: 3.6rem;
	letter-spacing: .03em;
}
.rtc_title_opacity svg {
	display: block;
	margin: 0 auto;
	width: 50px;
	height: 50px;
}

.rtc_btn_df a.wp-block-button__link,
.rtc_block_recommend a.wp-block-button__link {
	position: relative;
	min-width: 320px;
	border-radius: 50vh;
	font-weight: 500;
}
.rtc_btn_df a.wp-block-button__link::after,
.rtc_block_recommend a.wp-block-button__link::after {
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY( -50% );
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	color: #D9D9D9;
}


/* スタッフ紹介 */
.rtc_block_staff {
	padding: 20px 0 0 !important;
}
.rtc_block_staff h3.wrap {
	text-align: center;
	font-weight: 600;
}

/* メインビジュアル */
.main-visual-container {
	margin: 0 calc(-50vw + var(--es-scroll-var-half) + 50%);
	height: 600px;
	position: relative;
	background-color: #333;
}

.main-visual-container .slider-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.main-visual-container .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-size: cover;
	background-position: center;
	animation: slider-animation 15s infinite;
}

.main-visual-container .slide1 { background-image: url( '/app/uploads/sites/117/2026/04/top_slider_img01.jpg' ); }
.main-visual-container .slide2 { background-image: url( '/app/uploads/sites/117/2026/04/top_slider_img02.jpg' ); animation-delay: 5s; }
.main-visual-container .slide3 { background-image: url( '/app/uploads/sites/117/2026/04/top_slider_img03.jpg' ); animation-delay: 10s; }

.main-visual-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 2;
}

.main-visual-container .content-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 20px;
}

.main-visual-container .sub-text,
.main-visual-container .area-text {
	font-family: var( --font-type02 );
	font-weight: bold !important;
	font-size: 24px;
	margin-bottom: 8px;
}

.main-visual-container .main-title {
	font-family: var( --font-type02 );
	font-size: 80px;
	font-weight: bold;
	color: #fff !important;
	margin-bottom: 50px;
	line-height: 1.2;
}

.main-visual-container .search-buttons-container {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	justify-content: center;
}

.main-visual-container .search-btn {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 160px;
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(4px);
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
}

.main-visual-container .search-btn:hover {
	background-color: rgba(255, 255, 255, 0.4);
	transform: translateY(-3px);
}

.main-visual-container .search-btn svg {
	margin: 20px 0;
	width: 40px;
	height: 40px;
}

.main-visual-container .search-btn i {
	font-size: 32px;
	margin-bottom: 10px;
}

/* --- アニメーション定義 --- */
@keyframes slider-animation {
	0% { opacity: 0; }
	10% { opacity: 1; }
	33% { opacity: 1; }
	43% { opacity: 0; }
	100% { opacity: 0; }
}


/* ルームココってどんなお店？ */
.rtc_block_features {
	padding: 80px 0;
	background-color: #fff;
	font-family: sans-serif;
}

.rtc_feature_content .rtc_number {
	color: #03558B;
	font-size: 128px;
	font-weight: 600;
	font-family: var( --font-type01 );
}

.rtc_block_features > div {
	display: flex;
	align-items: center;
	max-width: 1000px;
	margin: 0 auto 100px;
	position: relative;
}

.rtc_block_features > div:last-child {
	margin-bottom: 0;
}

.rtc_block_features > div > div:first-child {
	flex: 0 0 55%;
	z-index: 2;
}

.rtc_block_features img {
	width: 100%;
	height: auto;
	display: block;
}

.rtc_block_features > div > div:nth-child(2) {
	flex: 0 0 45%;
	padding: 0 20px;
	box-sizing: border-box;
	z-index: 2;
}

.rtc_block_features h3 {
	font-size: 21px;
	font-weight: bold;
	color: #344564;
	line-height: 1.5;
	margin: 0 0 20px 0;
}

.rtc_block_features p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.8;
	text-align: justify;
	margin: 0;
}

.rtc_block_features .rtc_highlight {
	color: #E58330;
	font-weight: bold;
}

.rtc_block_features > div:nth-child(odd)::before {
	content: "";
    position: absolute;
    top: 42.5%;
    left: -100vw;
    right: -15%;
    height: 70%;
    background-color: #EBF2F6;
    border-radius: 10px;
    z-index: 1;
}

.rtc_block_features > div:nth-child(even) {
	flex-direction: row-reverse;
}

/* 自社管理物件 */
.rtc_block_recommend {
	padding-bottom: 0;
}
.rtc_block_recommend .es_new_block_items .es_new_block_item {
	background: #fff;
}
.rtc_block_recommend a.wp-block-button__link {
	position: relative;
	padding: 20px !important;
	min-width: 320px;
	border-radius: 50vh;
	background-color: #03558b;
}

.rtc_block_recommend .color_em {
	color: #E58330;
}

.rtc_googlemap {
	margin: 0 calc(-50vw + var( --es-scroll-var-half ) + 50%);
}
.rtc_top_accessmap {
	margin-top: 30px;
	font-size: 24px !important;
	font-weight: bold !important;
	color: #344564 !important;
}
.rtc_top_accessmap span {
	margin: 0 20px;
	color: #A8A8A8;
	letter-spacing: .25em;
	font-size: 18px;
	font-family: var( --font-type01 );
}
.rtc_top_accessmap a {
	display: flex;
    align-items: center;
	transition: ease all .6s;
}
.rtc_top_accessmap a:hover {
	text-decoration: none;
	opacity: .6;
}
.rtc_top_accessmap a::after {
	content: '\f138';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

/* お問い合わせ */
.rtc_block_contact::before {
	display: block;
    content: '';
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    background: #fff;
}
.rtc_block_contact > .uagb-columns__inner-wrap {
	margin: 0 calc(-50vw + var(--es-scroll-var-half) + 50%) !important;
	max-width: 100% !important;
}
.rtc_contact_info {
	margin-top: 50px;
    align-self: center;
}

.rtc_block_contact .rtc_overflow_visible > .uagb-column__inner-wrap {
	padding: 0;
}

.rtc_block_contact h2 {
/* 	font-family: var( --font-type02 ); */
	font-size: 36px !important;
	font-weight: 700 !important;
	letter-spacing: .25em;
}
.rtc_block_contact .rtc_phone {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0 !important;
	font-family: var( --font-type01 );
	font-size: 48px !important;
	font-weight: 700 !important;
	color: #03558B;
	letter-spacing: .25em;
}
.rtc_block_contact .rtc_phone svg {
	margin-right: 20px;
	width: 60px;
	height: 60px;
}
.rtc_block_contact .rtc_time {
	font-family: var( --font-type03 );
	font-weight: 500 !important;
	letter-spacing: .01em;
}

.rtc_block_contact a.wp-block-button__link {
/* 	padding: 10px 100px; */
/* 	font-family: var( --font-type02 ); */
	font-size: 24px !important;
	font-weight: 700 !important;
	letter-spacing: .25em;
}
.rtc_block_contact a.wp-block-button__link::before {
	margin-right: 15px;
	content: '\f0e0';
	font-weight: 400;
	font-family: 'Font Awesome 5 Free';
}
.rtc_block_contact a.wp-block-button__link::after {
	display: none;
}


/* スライダー
-------------------------------------------------- */
.swiper.my-property-slider {
	margin: 0 calc(-50vw + var(--es-scroll-var-half) + 50%);
	padding: 0 20px;
}
.swiper-wrapper a img {
	transition: all ease .6s;
}
.swiper-wrapper a:hover img {
	opacity: .6;
	transform: scale(1);
}
.swiper-button-next,
.swiper-button-prev {
	background: #005bac;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	color: #fff !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 14px !important;
	font-weight: bold;
}



/* 会社概要
-------------------------------------------------- */
.rtc_cover_img {
	position: relative;
	margin-bottom: 50px !important;
}
.rtc_cover_img figcaption {
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	font-size: 3vw;
	font-weight: bold;
	color: #fff;
	letter-spacing: .1em;
}

.rtc_tbl_company table tr td:first-of-type {
	width: 20%;
	text-align: center;
	background: rgba( 0, 149, 165, .1 );
}

.rtc_ttl_sub {
	padding: 20px 50px !important;
	font-size: 21px !important;
	font-weight: 500;
}

/* アニメーション - anime
-------------------------------------------------- */
.rtc_anime_item:is(.is-visible) .rtc_fade_left,
.rtc_anime_right:is(.is-visible) .rtc_fade_left {
	animation: fadeInLeft 2s ease 1s 1 normal backwards;
}
.rtc_anime_item:is(.is-visible) .rtc_fade_right,
.rtc_anime_right:is(.is-visible) figure {
	animation: fadeInRight 1s ease 1s 1 normal backwards;
}

.rtc_block_features > div:nth-child(odd):is(.is-visible)::before {
	animation: fadeInLeft 3s ease 1s 1 normal backwards;
}


@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX( -100px );
	}
	to {
		opacity: 1;
		transform: translateX( 0 );
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX( 100px );
	}
	to {
		opacity: 1;
		transform: translateX( 0 );
	}
}

/* アニメーション - anime
-------------------------------------------------- */
.rtc_anime_item {
	opacity: 0;
	transform: translateY(3rem);
	transition: all 0.6s ease-out;
}

/* .is-visible があるとき、item を表示 */
.rtc_anime_item:is(.is-visible) {
	opacity: 1;
	transform: none;
}

.rtc_anime_item.rtc_anime_none {
	opacity: 1;
	transform: none;
}


/* フッター - footer
-------------------------------------------------- */
footer.site-footer .footer-adv-overlay {
	background: #F7F4EF;
}
.site-footer .widget-title {
	font-weight: 600;
	border-color: #03558B;
}
.footer-adv-overlay li a:before { display: none; }

.es-small-footer .es-footer-overlay {
	background: #03558B;
}
.footer-adv-overlay li a {
	color: #333;
}


/* スマホ版 - sp
-------------------------------------------------- */
@media ( width <= 480px ) {
	.rtc_forsp_flex_reverse .uagb-columns__inner-wrap {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.rtc_title_opacity svg {
		width: 40px;
		height: 40px;
	}
	.rtc_title_opacity {
		font-size: 18px !important;
	}
	.rtc_title_opacity > span {
		margin-bottom: -15px;
		font-size: 2.4rem;
	}
	
	.rtc_btn_df a.wp-block-button__link,
	.rtc_block_recommend a.wp-block-button__link,
	.rtc_block_contact a.wp-block-button__link {
		padding: 10px;
		font-size: 16px !important;
	}
	
	.rtc_googlemap {
		margin: 0 !important;
		padding: 0;
	}
	
	.rtc_top_accessmap a {
		font-size: 16px;
		justify-content: center;
	}
	.rtc_top_accessmap span {
		font-size: 14px;
	}
	
	/* 新TOP
	-------------------------------------------------- */
	.main-visual-container {
		margin: 0 !important;
		height: 400px;
	}
	.main-visual-container .content-overlay {
		padding: 0;
	}
	.main-visual-container .sub-text,
	.main-visual-container .area-text {
		font-size: 14px;
	}
	.main-visual-container .main-title {
		font-size: 36px;
	}
	
	.main-visual-container .search-buttons-container {
		gap: 2%;
	}
	.main-visual-container .search-btn {
		width: 32%;
		height: 110px;
	}
	.main-visual-container .search-btn svg {
		margin: 10px 0;
		width: 30px;
		height: 30px;
	}
	.main-visual-container .search-btn span {
		font-size: 11px;
	}
	
	.rtc_block_features {
		padding-top: 0;
	}
	.rtc_feature_content .rtc_number {
		display: block;
        text-align: center;
		font-size: 80px;
	}
	.rtc_block_features h3 {
		font-size: 18px;
	}
	
	.rtc_block_features > div {
		flex-direction: column !important;
		max-width: 90%;
		margin-bottom: 60px;
	}
	.rtc_block_features > div > div:first-child,
	.rtc_block_features > div > div:nth-child(2) {
		flex: 0 0 100%;
		padding: 0;
	}
	.rtc_block_features > div:nth-child(odd)::before {
		display: none;
	}
/* 	.rtc_block_features span:first-child {
		font-size: 60px;
	}
	 */
	
	.rtc_block_staff {
		padding: 20px 0 20px !important;
	}
	
	.rtc_block_contact h2 {
		font-size: 21px !important;
	}
	.rtc_block_contact .rtc_phone {
		font-size: 30px !important;
	}
	.rtc_block_contact .rtc_phone svg {
		width: 30px;
		height: 30px;
	}

	/* 会社概要
	-------------------------------------------------- */
	.rtc_ttl_sub {
		padding: 20px !important;
	}
	.rtc_cover_img {
		padding: 0 !important;
	}
	.rtc_cover_img figcaption {
		font-size: 5vw;
	}
	.rtc_tbl_company table tr td,
	.rtc_tbl_company table tr td:first-of-type {
		display: block;
		width: 100%;
		text-align: left;
	}
}