/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Mar 23 2026 | 08:25:34 */
@import url( 'https://fonts.googleapis.com/css2?family=Noto+Sans+Lao:wght@100..900&display=swap' );

/* 共通 - common
-------------------------------------------------- */
body #page {
	overflow-y: hidden;
}
body.home #content .es-container {
	padding: 0;
	max-width: 100%;
}
.rtc_btn_contact a.wp-block-button__link, .rtc_btn_viewmore a.wp-block-button__link {
	border-radius: 50vh;
}
body.home .rtc_btn_viewmore a.wp-block-button__link {
	font-size: 18px !important;
	line-height: 2 !important;
}

body.home .rtc_ttl_main {
	margin-bottom: 0 !important;
	font-size: 52px !important;
}
.wp-block-buttons a.wp-block-button__link {
	border-radius: 50vh;
}

#content.site-content { padding-top: 0 !important; }

body #page {
	background-image: url( '/app/uploads/sites/1444/2025/12/bg-page.png' );
	background-size: cover;
	background-attachment: fixed;
	background-repeat: repeat-y;
}

/* ヘッダー - header
-------------------------------------------------- */
header#masthead { display: none; }
#org_header {
	display: flex;
	align-items: center;
	padding: 10px;
	min-height: 120px;
	transition: all ease .6s;
}
.rtc_header_logo {
	margin-right: auto;
}
.rtc_header_logo a {
	display: flex;
	align-items: center;
	transition: all ease .6s;
}
.rtc_header_logo a:hover {
	opacity: .6;
}
.rtc_header_logo svg {
	width: 250px;
	height: 100px;
	fill: #080404;
}

.rtc_menu_area {
	display: flex;
	align-items: center;
}
.rtc_menu_area p {
	font-size: 30px;
	font-weight: 600;
	margin-right: 20px;
	margin-bottom: 0 !important;
}
.rtc_btn_menu {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 1.5em;
	width: 80px;
	height: 80px;
	background: #080404;
	border-radius: 50%;
	cursor: pointer;
}
.rtc_btn_menu > span {
	position: absolute;
	display: block;
	width: 45%;
	height: 3px;
	margin: 8px auto;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	border-radius: 50vh;
	background: #fff;
}
.rtc_btn_menu > span:first-of-type {
	transform: translateY(-15px);
}
.rtc_btn_menu > span:last-of-type {
	transform: translateY(15px);
}
.rtc_btn_menu:hover > span:first-of-type {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.rtc_btn_menu:hover > span:last-of-type {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.rtc_menu_area.is_active .rtc_btn_menu > span:first-of-type {
	transform: rotate(45deg);
}
.rtc_menu_area.is_active .rtc_btn_menu > span:last-of-type {
	transform: rotate(-45deg);
}
.rtc_menu_area.is_active .rtc_btn_menu > span:nth-child(2) {
	opacity: 0;
}

.rtc_menu_area.is_active {
	position: fixed;
	top: 52px;
    right: 10px;
    z-index: 888;
}
.rtc_menu_area.is_active .rtc_btn_menu {
	background: transparent;
}
.rtc_menu_area.is_active p {
	color: #fff;
}


nav {
	display: flex;
	align-items: center;
	justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease; 
	position: fixed;
	top: 0;
    left: 0;
    /* 初期状態: 非表示 */
    opacity: 0;
    visibility: hidden; /* クリックやフォーカスを受け付けないようにする */
    max-height: 0; /* 高さを0にしてスペースを占有させない */
    overflow: hidden; /* コンテンツがはみ出さないように */
}

/* is_active クラスがついた時の設定 (フェードイン後の状態) */
nav.is_active {
	width: 100%;
	height: 100%;
    /* 表示状態 */
    opacity: 1;
    visibility: visible;
    max-height: 100vh; /* 適切な高さを設定 (コンテンツに合わせて十分な値を) */
	background: #111111;
	z-index: 500;
}
.rtc_nav_inner {
	display: flex;
	justify-content: space-between;
	width: 1140px;
    overflow-y: auto;
}
.rtc_list_nav {
	list-style: none;
	margin: 0;
}
.rtc_nav_inner > * {
	width: 32%;
}
.rtc_list_nav > li, .rtc_list_nav > li a {
	color: #fff;
}
.rtc_list_nav > li:first-child {
	padding: 5px 0;
	font-family: "Sen", sans-serif;
	font-size: 26px;
	font-weight: 700;
	border-bottom: 1px solid #fff;
}
.rtc_list_nav > li a {
	display: block;
	padding: 10px 0;
	font-size: 18px;
/* 	border-bottom: 1px solid rgba( 255, 255, 255, .2 ); */
	transition: all ease .6s;
}
.rtc_list_nav > li a:hover {
	color: #E91B77;
	text-decoration: none;
}

.rtc_nav_vertical > *:not(:last-of-type) {
	margin-bottom: 20px;
}

body.home #org_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
}
body.home.logged-in.admin-bar #org_header {
	top: 32px;
}
body.home .rtc_header_logo svg {
	fill: #fff;
}
body.home .rtc_menu_area p {
	color: #fff;
}
body.home .rtc_btn_menu {
	background: #fff;
}
body.home .rtc_btn_menu > span {
	background: #1E1E1E;
}
body.home .rtc_menu_area.is_active .rtc_btn_menu > span {
	background: #fff;
}

body.home #org_header.is_scroll {
	background: #fff;
}
body.home #org_header.is_scroll .rtc_header_logo svg {
	fill: #080404;
}
body.home #org_header.is_scroll .rtc_menu_area p {
	color: #080404;
}
body.home #org_header.is_scroll .rtc_menu_area.is_active p {
	color: #fff;
}
body.home #org_header.is_scroll .rtc_btn_menu {
	background: #080404;
}
body.home #org_header.is_scroll .rtc_btn_menu > span {
	background: #fff;
}

body:not(.home) #org_header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	background: #fff;
}
body:not(.home).logged-in.admin-bar #org_header {
	top: 32px;
}
body:not(.home) #page {
	padding-top: 120px;
}

/* メイン - main
-------------------------------------------------- */
.rtc_block_mainvisual {
	position: relative;
	margin-bottom: 30px;
	width: 100vw;
	min-height: 900px;
	border-radius: 10px;
}

.rtc_mainvisual {
	position: relative;
}
.rtc_mainvisual::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba( 0, 0, 0, .4 );
	z-index: 20;
}

.rtc_slider_imgs {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-height: 900px;
	overflow: hidden;
}

.rtc_slider_imgs > div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 900px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 10;
	opacity: 0;
	animation: fade 12s infinite;
}

@keyframes fade {
	0% { opacity: 0; }
	20% { opacity: 1; }
	85% {
		opacity: 0;
		transform: scale( 1.1 );
	}
	100% {
		opacity: 0;
		z-index: 0;
	}
}

.rtc_slider_imgs > div.rtc_sp01_slideimg01 {
	background-image: url( '/app/uploads/sites/1444/2025/12/slider_img01.jpg' );
}
.rtc_slider_imgs > div.rtc_sp01_slideimg02 {
	background-image: url( '/app/uploads/sites/1444/2025/12/slider_img02.jpg' );
	animation-delay: 4s;
}
.rtc_slider_imgs > div.rtc_sp01_slideimg03 {
	background-image: url(  '/app/uploads/sites/1444/2025/12/slider_img03.jpg'  );
	animation-delay: 8s;
}

.rtc_block_maincatch > img {
	display: block;
	margin: 0 auto 150px;
	max-width: 1140px;
}

.rtc_block_maincatch {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 30px;
	z-index: 30;
}
.rtc_list_maincatch {
	list-style: none;
	margin: 0 auto;
	max-width: 1140px;
	display: flex;
	justify-content: space-between;
}
.rtc_list_maincatch > li {
	padding: 30px;
	width: 32%;
	text-align: center;
	background: #E91B77;
}
.rtc_list_maincatch > li p {
	margin-bottom: 0 !important;
	color: #fff;
	font-weight: 600;
	line-height: 1.5;
}
.rtc_list_maincatch > li p:first-child {
	min-height: 72px;
}
.rtc_list_maincatch > li p:first-child, .rtc_list_maincatch > li p:nth-child(2) {
	font-size: 24px;
}
.rtc_list_maincatch > li p:nth-child(2) span {
	margin-right: 10px;
	font-family: "Noto Sans Lao", sans-serif;
	font-size: 64px;
}
.rtc_list_maincatch > li p:last-child {
	font-size: 14px;
}



/* CONTENTS */
.rtc_list_contents {
	max-width: 100%;
	gap: 1.5%;
}
.rtc_list_contents > li {
	width: 23.5%;
}
.rtc_list_contents > li a {
	position: relative;
	text-decoration: none;
}
.rtc_list_contents > li a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba( 0, 0, 0, .6 );
	transition: all ease .6s;
	z-index: 0;
}
.rtc_list_contents > li:hover a::before {
	background-color: rgba( 0, 0, 0, .2 );
}
.rtc_list_contents > li a h2, .rtc_list_contents > li a p {
	position: relative;
	z-index: 1;
}
.rtc_list_contents > li a h2 {
	display: flex;
	justify-content: center;
	flex-direction: column;
	min-height: 100px;
}
.rtc_list_contents > li a h2 span {
	margin-top: 5px;
	display: block;
	font-size: 14px;
	font-weight: 400;
}
.rtc_list_contents > li a .rtc_btn_view {
	padding: 5px 50px;
}
.rtc_list_contents > li a:hover .rtc_btn_view {
    color: #1E1E1E;
    background-color: #fff;
	border-color: #1E1E1E;
}

.rtc_list_contents.rtc_contents_type2 {
	margin-top: 1.5%;
}

.rtc_list_contents > li:first-child a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img01.jpg' ); }
.rtc_list_contents > li:nth-child(2) a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img02.jpg' ); }
.rtc_list_contents > li:nth-child(3) a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img03.jpg' ); }
.rtc_list_contents > li:last-child a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img04.jpg' ); }
.rtc_list_contents.rtc_contents_type2 > li:first-child a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img05.jpg' ); }
.rtc_list_contents.rtc_contents_type2 > li:nth-child(2) a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img06.jpg' ); }
.rtc_list_contents.rtc_contents_type2 > li:nth-child(3) a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img07.jpg' ); }
.rtc_list_contents.rtc_contents_type2 > li:last-child a { background-image: url( '/app/uploads/sites/1444/2025/12/contents_img08.jpg' ); }

/* INFO */
.rtc_info_block > .uagb-columns__inner-wrap {
	position: relative;
	margin-left: 0 !important;
}
.rtc_overflow_visble > .uagb-columns__inner-wrap > .wp-block-uagb-column,
.rtc_info_block > .uagb-columns__inner-wrap > .wp-block-uagb-column {
	overflow: visible;
}
.rtc_info_block > .uagb-columns__inner-wrap > .wp-block-uagb-column {
	min-height: 450px;
}
.rtc_info_block h2.rtc_ttl_main {
	position: absolute;
	top: 125px;
    right: -280px;
    transform: rotate(90deg);
/* 	font-size: 36px !important; */
}

.rtc_list_info {
	padding: 0;
}
.rtc_list_info .es-list.list-border-bottom li a h3 {
	transition: all ease .6s;
}
.rtc_list_info .es-list.list-border-bottom li a:hover h3.wrap {
	text-decoration: none;
	color: #E91B77;
}

/* COLUMN */
.rtc_column_ttlblocks > .uagb-columns__inner-wrap {
	align-items: flex-end;
}
.rtc_column_ttlblocks p {
	margin-bottom: 0 !important;
}

.rtc_wfull_left > .uagb-columns__inner-wrap {
	margin-left: calc( -50vw + 50% ) !important;
}
.rtc_column_ttlblocks > .uagb-columns__inner-wrap > .wp-block-uagb-column >.uagb-column__inner-wrap,
.rtc_column_block > .uagb-columns__inner-wrap > .wp-block-uagb-column >.uagb-column__inner-wrap {
	padding: 0 !important;
}

.rtc_list_column {
	padding: 0;
}
.rtc_list_column .es-list.list-border-bottom li {
	border-bottom: none;
}
.rtc_list_column .es-list.list-border-bottom li a h3 {
	transition: all ease .6s;
}
.rtc_list_column .es-list.list-border-bottom li a:hover h3.wrap {
	text-decoration: none;
	color: #E91B77;
}

/* COMPANY */
.rtc_tbl_borderwhite table tr {
	border-bottom: 1px solid #fff !important;
}


/* フローティングバナー
-------------------------------------------------- */
.rtc_floating_bnr {
	position: fixed;
	right: 0;
	bottom: 20px;
	list-style: none;
	margin: 0;
	z-index: 8000;
}
.rtc_floating_bnr > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease .6s;
}
.rtc_floating_bnr > li a:hover {
	opacity: .6;
}
.rtc_floating_bnr > li:first-child {
	margin-bottom: 10px;
}
.rtc_floating_bnr > li:first-child a {
	width: 120px;
	height: 120px;
	background: #E91B77;
	border-radius: 50%;
	border: 3px solid #000;
    box-shadow: 0 5px 0 #000;
}
.rtc_floating_bnr > li:last-child a {
	width: 120px;
	height: 120px;
	background: #000000;
}
.rtc_floating_bnr > li:first-child a svg {
	width: 80px;
    height: 60px;
}
.rtc_floating_bnr > li:last-child a svg {
	width: 44px;
	height: 22px;
}

/* フッター - footer
-------------------------------------------------- */
footer.site-footer { display: none; }
#rtc_org_footer {
	padding-top: 30px;
	background: #1E1E1E;
}
.rtc_footer_inner {
	margin: 0 auto;
	max-width: 1140px;
}

.rtc_footer_logo {
	max-width: 360px;
}
.rtc_footer_logo a {
	display: block;
	transition: all ease .6s;
}
.rtc_footer_logo a:hover {
	opacity: .6;
}

.rtc_listblock_footer {
	display: flex;
	justify-content: space-between;
	margin: 50px 0;
}

.rtc_list_footer {
	list-style: none;
	margin: 0;
	width: 32%;
}
.rtc_list_footer > li:first-child {
	margin-bottom: 10px;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
}
.rtc_list_footer > li:not(:first-child) a {
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	transition: all ease .6s;
}
.rtc_list_footer > li:not(:first-child) a:hover {
	color: #E91B77;
	text-decoration: none;
}

.rtc_copyrights {
	padding: 15px;
	color: #fff;
	text-align: center;
	font-size: 14px;
	border-top: 1px solid;
}

/* スマホ - sp
-------------------------------------------------- */
@media ( max-width: 480px ) {
	
	/* ヘッダー - header
	-------------------------------------------------- */
	body.home.logged-in.admin-bar #org_header {
		top: 46px;
	}
	#org_header {
		min-height: 65px;
	}
	body:not(.home).logged-in.admin-bar #org_header {
		top: 46px;
	}
	body:not(.home) #page {
		padding-top: 65px;
	}
	
	.rtc_header_logo svg {
		width: 140px;
		height: 55px;
	}
	.rtc_menu_area p {
		margin-right: 10px;
		font-size: 16px;
	}
	.rtc_btn_menu {
		width: 30px;
		height: 30px;
	}
	.rtc_btn_menu > span:first-of-type {
		transform: translateY(-9px);
	}
	.rtc_btn_menu > span:last-of-type {
		transform: translateY(9px);
	}
	
	.rtc_nav_inner {
		padding: 150px 30px 50px;
		height: 100%;
		flex-direction: column;
	}
	.rtc_nav_inner > * {
		width: 100%;
	}
	.rtc_list_nav > li a {
		padding: 5px 0;
		font-size: 14px;
	}
	
	/* メイン - main
	-------------------------------------------------- */
	body.home .rtc_ttl_main {
		font-size: 36px !important;
	}
	
	.rtc_block_mainvisual {
		padding: 0;
		min-height: 320px;
	}
	.rtc_slider_imgs, .rtc_slider_imgs > div {
		min-height: 400px;
	}
	.rtc_block_maincatch {
/* 		position: static; */
		bottom: 10px;
	}
	.rtc_block_maincatch > img {
/* 		position: absolute;
		top: 160px;
		left: 0;
        right: 0; */
		margin: 0 auto 30px;
		padding: 0 10px;
        width: 100%;
        height: auto;
        z-index: 200;
	}
	
	.rtc_list_maincatch {
		padding: 0 5px;
		flex-wrap: wrap;
		width: 100%;
	}
	.rtc_list_maincatch > li {
		padding: 10px;
		width: 32%;
	}
	.rtc_list_maincatch > li p:first-child {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 30px;
	}
	.rtc_list_maincatch > li p:last-child {
		font-size: 10px;
	}
/* 	.rtc_list_maincatch > li:last-child {
		width: 100%;
	} */
	
	.rtc_list_maincatch > li p:first-child, .rtc_list_maincatch > li p:nth-child(2) {
		font-size: 10px;
	}
	.rtc_list_maincatch > li p:nth-child(2) span {
		font-size: 24px;
	}
	
	.rtc_list_contents {
		padding-left: 5px;
		padding-right: 5px;
		gap: 2%;
	}
	.rtc_list_contents > li {
		margin-bottom: 1.5%;
		flex: auto;
		width: 49%;
		height: 150px;
	}
	.rtc_list_contents.rtc_list_baikai > li:first-child {
		margin-bottom: 0;
	}
	.rtc_list_contents > li a h2 {
		font-size: 14px;
		min-height: auto;
	}
	.rtc_list_contents > li a h2 span {
		font-size: 10px;
	}
	.rtc_list_contents > li a .rtc_btn_view {
		padding: 5px 20px;
		font-size: 12px;
	}
	
	.rtc_info_block > .uagb-columns__inner-wrap > .wp-block-uagb-column {
		min-height: auto;
	}
	.rtc_info_block h2.rtc_ttl_main {
		top: -65px;
        left: -15px;
		font-size: 36px !important;
		transform: rotate(0);
	}
	.rtc_sp_center { justify-content: center !important; }
	
	.rtc_wfull_left > .uagb-columns__inner-wrap {
		margin-left: 0 !important;
		max-width: 100% !important;
	}
	
	/* フッター - footer
	-------------------------------------------------- */
	#rtc_org_footer {
		padding: 30px 20px 0;
	}
	.rtc_listblock_footer {
		flex-wrap: wrap;
	}
	.rtc_listblock_footer ul:not(:last-of-type) {
		margin-bottom: 30px;
	}
	.rtc_list_footer {
		width: 100%;
	}
	
	.rtc_floating_bnr > li:first-child {
		margin-bottom: 5px;
	}
	.rtc_floating_bnr {
		bottom: 70px;
	}
	.rtc_floating_bnr > li:first-child a, .rtc_floating_bnr > li:last-child a {
		width: 60px;
		height: 60px;
	}
	.rtc_floating_bnr > li:first-child a svg {
		width: 40px;
        height: 25px;
	}
	.rtc_floating_bnr > li:last-child a svg {
		width: 25px;
		height: 15px;
	}
}