@charset "UTF-8";

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
body{line-height:1}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}
nav ul{list-style:none}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:none}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}
ins{background-color:#ff9;color:#000;text-decoration:none}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold}
del{text-decoration:line-through}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}
table{border-collapse:collapse;border-spacing:0}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}
input,select{vertical-align:middle}

html{
	font-size: 62.5%;
}
body{
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
	word-break: break-all;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	color: #333333;
}
ul li,
ol li{
	list-style: none;
}
input,select,button,textarea{
	font-family: inherit;
}
::placeholder{
	color: #D5D5D5;
}

/* ↓ animate
================================== */
.animate{
	transition: .5s ease-in-out;
	opacity: 0;
}
.animate.animated{
	opacity: 1;
}

/* ↓ トップページ
================================== */
.slick-arrow{
	position: absolute;
	top: 50%;
	background-color: #003366;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 11px auto;
	text-indent: -9999px;
	border: 1px solid #FFFFFF;
	border-radius: 50%;
	z-index: 1;
	cursor: pointer;
	transition: opacity .3s ease-in-out;
	opacity: .4;
}
.slick-arrow:hover{
	opacity: 1;
}
.slick-prev{
	background-image: url(/images/renewal_2022/cmn/icon_angle_left-white.svg);
}
.slick-next{
	background-image: url(/images/renewal_2022/cmn/icon_angle_right-white.svg);
}
.slick-disabled{
	opacity: 0;
	pointer-events: none;
}
.slick-dots{
	display: flex;
	justify-content: center;
}
.slick-dots button{
	width: 10px;
	height: 10px;
	margin: 0 5px;
	padding: 0;
	background-color: transparent;
	border: 1px solid #003366;
	border-radius: 50%;
	text-indent: -9999px;
	cursor: pointer;
}
.slick-dots .slick-active button{
	background-color: #003366;
}
@media only screen and (min-width:769px){
	.slick-arrow{
		margin: -50px 0 0;
		width: 50px;
		height: 50px;
	}
	.slick-prev{
		left: -25px;
	}
	.slick-next{
		right: -25px;
	}
	.slick-dots{
		margin-top: 45px;
	}
}
@media only screen and (max-width:768px){
	.slick-arrow{
		margin: -40px 0 0;
		width: 40px;
		height: 40px;
	}
	.slick-dots{
		margin-top: 20px;
	}
	.slick-prev{
		left: 0;
	}
	.slick-next{
		right: 0;
	}
}

.top_m_title{
	position: relative;
	transform: translateY(30px);
	padding-bottom: 20px;
	text-align: center;
	font-weight: 700;	/* Bold */
	line-height: 1.25;
}
.top_m_title.animated{
	transform: translateY(0);
}
.top_m_title::after{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	margin-left: -15px;
	width: 30px;
	height: 4px;
	background-image: linear-gradient(to right, #4B2382 0%, #64AADC 100%);
}
@media only screen and (min-width:769px){
	.top_m_title{
		margin: 60px auto;
		font-size: 3.3rem;
	}
}
@media only screen and (max-width:768px){
	.top_m_title{
		margin: 40px auto;
		font-size: 3.0rem;
	}
}

.top_mv{
	position: relative;
	overflow: hidden;
}
.top_mv_bg{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	overflow: hidden;
	background-color: #000;
}
.top_mv_bg::after{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	background-color: rgba(0, 0, 0, .4);
}
.top_mv_bg video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	min-height: 100%;
	min-width: 100%;
	-ms-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-webkit-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
@supports ( object-fit: cover ) {
    .top_mv_bg video {
        position: static;
        height: 100%;
        width: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
    }
}
.top_mv_title{
	transition-delay: .3s;
	position: relative;
	color: #ffffff;
	font-weight: 700;	/* Bold */
	line-height: 1.8;
}
@media screen and (-ms-high-contrast:none) and (min-width: 769px) {
	*::-ms-backdrop, .top_mv_title { top: 97px; } /* IE11 */
}
.top_mv_title .inner{
	display: flex;
	align-items: center;
	letter-spacing: .05em;
}
.top_mv_search{
	transform: translateY(30px);
	transition-delay: .6s;
	width: 100%;
}
.top_mv_search.animated{
	transform: translateY(0);
}
.top_mv_search_title > *{
	background-position: 0 center;
	background-repeat: no-repeat;
	background-size: 30px auto;
	padding-left: 40px;
}
.top_mv_search_step_head{
	display: flex;
	align-items: center;
	white-space: nowrap;
}
.top_mv_search_step_baget{
	border: 1px solid #FFFFFF;
	border-radius: 2px;
	margin-right: 12px;
	padding: 0 7px;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 1.4rem;
}
.top_mv_search_step_form{
	margin-top: 20px;
}
.top_mv_search_step_form select,
.top_mv_search_step_form input[type=text],
.top_mv_search_submit button{
	border: 1px solid #D5D5D5;
	border-radius: 25px;
	height: 50px;
	font-weight: 700;	/* Bold */
}
.top_mv_search_step_form *::placeholder{
	color: #989898;
}
.top_mv_search_step_form select{
	background: url(/images/renewal_2022/cmn/icon_caret-down.svg) no-repeat right 20px center #ffffff;
	background-size: 16px auto;
	padding-right: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
.top_mv_search_step_form input[type=text]{
	padding: 0 20px;
}
.top_mv_search_submit button{
	transition: .3s ease-in-out;
	background-color: #ffffff;
	border: 1px solid #003366;
	color: #003366;
	white-space: nowrap;
	cursor: pointer;
}
.top_mv_search_submit button span{
	background: url(/images/renewal_2022/cmn/icon_search.svg) no-repeat 0 center;
	background-size: 18px auto;
	padding-left: 25px;
}
.top_mv_search_submit button:hover{
	background-color: #B95500;
	border-color: #B95500;
	color: #ffffff;
}
.top_mv_search_submit button:hover span{
	background-image: url(/images/renewal_2022/cmn/icon_search-white.svg);
}
@media only screen and (min-width:769px){
	.top_mv{
		display: flex;
		flex-direction: column;
	}
	.top_mv_bg{
		bottom: 0;
	}
	.top_mv_title .inner{
		min-height: 400px;
		font-size: 3.5rem;
	}
	.top_mv_search{
		background: linear-gradient(135deg, rgba(75, 35, 130, .75) 0%,rgba(100, 170, 220, .75) 100%);
		color: #ffffff;
		z-index: 1;
	}
	#content .top_mv_search .inner{
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		padding-top: 10px;
		padding-bottom: 10px;
		min-height: 135px;
	}
	.top_mv_search_title > *{
		background-image: url(/images/renewal_2022/cmn/icon_search-alt-white.svg);
		font-size: 2.6rem;
	}
	.top_mv_search_box{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		width: 83%;
	}
	.top_mv_search_step.step1{
		width: 28%;
	}
	.top_mv_search_step.step2{
		width: 56%;
	}
	.top_mv_search_step_label{
		font-size: 2.0rem;
	}
	.top_mv_search_step_form select,
	.top_mv_search_step_form input[type=text],
	.top_mv_search_submit button{
		width: 100%;
		font-size: 1.6rem;
	}
	.top_mv_search_step_form select{
		padding-left: 25px;
	}
	.top_mv_search_submit{
		width: 10%;
	}
}
@media only screen and (max-width:1000px){
	.top_mv_search_box{
		margin-top: 20px;
		width: 100%;
	}
}
@media only screen and (max-width:768px){
	.top_mv_bg{
		height: 400px;
	}
	.top_mv_title .inner{
		height: 400px;
		font-size: 2.0rem;
	}
	.top_mv_search_title{
		text-align: center;
	}
	.top_mv_search_title > *{
		display: inline-block;
		background-image: url(/images/renewal_2022/cmn/icon_search-alt.svg);
		margin: 35px 0 20px;
		font-size: 2.0rem;
	}
	.top_mv_search_box{
		background: linear-gradient(135deg, rgb(75, 35, 130) 0%,rgb(100, 170, 220) 100%);
		margin: 0 -5.3vw;
		padding: 40px 5.3vw;
		width: auto;
		color: #ffffff;
	}
	.top_mv_search_step{
		margin-bottom: 30px;
	}
	.top_mv_search_step_label{
		font-size: 1.6rem;
	}
	.top_mv_search_step_form select,
	.top_mv_search_step_form input[type=text],
	.top_mv_search_submit button{
		width: 100%;
		font-size: 1.4rem;
	}
	.top_mv_search_step_form select{
		padding-left: 20px;
	}
	.top_mv_search_submit{
		text-align: center;
	}
	.top_mv_search_submit button{
		width: 160px;
	}
}

.top_information{
	border: 1px solid #CC3300;
	border-radius: 3px;
	color: #CC3300;
	text-align: center;
	font-weight: 700;	/* Bold */
	font-size: 1.6rem;
	line-height: 1.55;
}
.top_information_text{
	display: inline-block;
	background: url(/images/renewal_2022/cmn/icon_info-circle.svg) no-repeat 0 center;
	background-size: 27px auto;
	min-height: 27px;
	padding-left: 37px;
	text-align: left;
}
#content .top_information_text a{
	color: #CC3300;
}
#content .top_information_text a:hover{
	text-decoration: underline;
}
@media only screen and (min-width:769px){
	.top_information{
		margin: 60px auto;
		padding: 25px;
	}
}
@media only screen and (max-width:768px){
	.top_information{
		margin: 40px auto;
		padding: 10px;
	}
}

.top_service_menu{
	display: flex;
	flex-wrap: wrap;
}
.top_service_menu_item{
	position: relative;
	transform: translateY(30px);
	display: block;
}
.top_service_menu_item:nth-child(1){
	transition-delay: .2s;
	background-image: url();
}
.top_service_menu_item:nth-child(2){
	transition-delay: .4s;
}
.top_service_menu_item:nth-child(3){
	transition-delay: .6s;
}
.top_service_menu_item:nth-child(4){
	transition-delay: .8s;
}
.top_service_menu_item.animated{
	transform: translateY(0);
}
.top_service_menu_img{
	position: relative;
	border: 1px solid #D5D5D5;
	line-height: 0;
}
.top_service_menu_img::before{
	transition: opacity .3s ease-in-out;
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(185, 85, 0, .8);
	opacity: 0;
}
.top_service_menu_img::after{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	background-image: linear-gradient(to bottom, #000000 0%, transparent 100%);
	opacity: .1;
}
.top_service_menu_title{
	color: #ffffff;
	line-height: 1.3;
}
.top_service_menu_list{
	transition: opacity .3s ease-in-out;
	opacity: 0;
	z-index: 1;
}
#content .top_service_menu_list a:hover{
	text-decoration: underline;
}
@media only screen and (min-width:1241px){
	.top_service_menu_img::after{
		height: 33%;
	}
	.top_service_menu_title{
		padding: 30px 30px 15px;
	}
	.top_service_menu_list{
		top: 75px;
		padding: 0 40px;
		line-height: 1.6;
		font-size: 1.6rem;
	}
}
@media only screen and (max-width:1240px) and (min-width:769px){
	.top_service_menu_img::after{
		height: 47%;
	}
	.top_service_menu_title{
		padding: 2vw 1.9vw 1vw;
	}
	.top_service_menu_list{
		top: 75px;
		padding: 0 3.5vw;
		line-height: 1.25;
		font-size: 1.2rem;
	}
}
@media only screen and (min-width:769px){
	.top_service_menu{
		justify-content: space-between;
		margin: 0.8% 0;
	}
	.top_service_menu_item{
		width: 49.6%;
	}
	.top_service_menu_item:nth-child(n+3){
		margin-top: .8%;
	}
	.top_service_menu_img::before{
		background-image: url(/images/renewal_2022/cmn/icon_angle_right-white.svg);
		background-repeat: no-repeat;
		background-position: right 25px center;
		background-size: 10px auto;
	}
	.top_service_menu_img.remove-arw::before{
		background-image: none;
	}
	.top_service_menu_body{
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1;
	}
	.top_service_menu_title{
		font-size: 2.3rem;
	}
	.top_service_menu_list{
		color: #ffffff;
		font-weight: 700;	/* Bold */
	}
	#content .top_service_menu_list a{
		color: #ffffff;
	}
	.top_service_menu_item:hover .top_service_menu_img::before{
		opacity: 1;
	}
	.top_service_menu_item:hover .top_service_menu_list{
		opacity: 1;
	}
}
@media only screen and (max-width:768px){
	.top_service_menu_item{
		width: 100%;
	}
	.top_service_menu_item + .top_service_menu_item{
		margin-top: 1.3vw;
	}
	.top_service_menu_item:nth-child(1){	order: 1;	}
	.top_service_menu_item:nth-child(2){	order: 3;	}
	.top_service_menu_item:nth-child(3){	order: 2;	}
	.top_service_menu_item:nth-child(4){	order: 4;	}
	.top_service_menu_img::after{
		height: 40%;
	}
	.top_service_menu_title{
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		background: url(/images/renewal_2022/cmn/icon_plus-white.svg) no-repeat right center;
		background-size: 15px auto;
		margin: 4.5vw 5.3vw 4.5vw 2.2vw;
		font-size: 1.6rem;
		z-index: 1;
	}
	.top_service_menu_list{
		display: none;
		font-size: 1.4rem;
		font-weight: bold;
	}
	.top_service_menu_list ul{
		padding: 12px 0;
	}
	.top_service_menu_list li{
		margin: 5px 0;
	}
	.top_service_menu_list a{
		background: url(/images/renewal_2022/cmn/icon_angle_right.svg) no-repeat right center;
		background-size: 7px auto;
		padding-right: 17px;
	}
	.top_service_menu_item.show .top_service_menu_img::before{
		opacity: 1;
	}
	.top_service_menu_item.show .top_service_menu_title{
		background-image: url(/images/renewal_2022/cmn/icon_minus-white.svg);
	}
	.top_service_menu_item.show .top_service_menu_list{
		opacity: 1;
	}
}

.top_service_submenu{
	display: flex;
	flex-wrap: wrap;
}
.top_service_submenu_item{
	transform: translateY(30px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid #D5D5D5;
}
.top_service_submenu_item:nth-child(2n){	transition-delay: .4s;	}
.top_service_submenu_item:nth-child(3n){	transition-delay: .2s;	}
.top_service_submenu_item.animated{
	transform: translateY(0);
}
.top_service_submenu_title{
	font-weight: 700;	/* Bold */
	line-height: 1.3;
}
.top_service_submenu_title small{
	display: block;
}
.top_service_submenu_img{
	margin: 0 auto;
	width: 65%;
}
@media only screen and (min-width:1241px){
	.top_service_submenu{
		flex-direction: column;
		margin-right: -0.6%;
		height: 620px;
	}
	.top_service_submenu_item{
		margin-bottom: 10px;
		width: 24.3%;
		height: 300px;
	}
	.top_service_submenu_item.half{
		flex-direction: row;
		height: 145px;
	}
	.top_service_submenu_item.half .top_service_submenu_img{
		flex-shrink: 0;
		margin-right: 5.1%;
		padding-top: 10px;
		width: 41%;
	}
	.top_service_submenu_title{
		padding: 30px 0 0 10%;
		font-size: 2.3rem;
	}
	.top_service_submenu_title small{
		font-size: 1.6rem;
	}
}
@media only screen and (max-width:1240px){
	.top_service_submenu_item:nth-child(1){	order: 1;	}
	.top_service_submenu_item:nth-child(2){	order: 6;	}
	.top_service_submenu_item:nth-child(3){	order: 7;	}
	.top_service_submenu_item:nth-child(4){	order: 2;	}
	.top_service_submenu_item:nth-child(5){	order: 8;	}
	.top_service_submenu_item:nth-child(6){	order: 3;	}
	.top_service_submenu_item:nth-child(7){	order: 9;	}
	.top_service_submenu_item:nth-child(8){	order: 4;	}
	.top_service_submenu_item:nth-child(9){	order: 5;	}
	.top_service_submenu_item:nth-child(10){	order: 10;	}
	.top_service_submenu_item:nth-child(11){	order: 11;	}
	.top_service_submenu_title .PC{
		display: none;
	}
	.top_service_submenu_title small{
		font-size: 1.0rem;
	}
}
@media only screen and (min-width:769px){
	.top_service_submenu_item::before{
		transition: opacity .3s ease-in-out;
		content: '';
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: url(/images/renewal_2022/cmn/icon_angle_right_bold-white.svg) no-repeat right 10px center rgba(185, 85, 0, .8);
		background-size: 8px auto;
		opacity: 0;
	}
	.top_service_submenu_title{
		z-index: 1;
	}
	.top_service_submenu_title.small{
		font-size: 1.8rem;
	}
	.top_service_submenu_img{
		padding-bottom: 25px;
	}
	.top_service_submenu_item:hover:before{
		opacity: 1;
	}
	.top_service_submenu_item:hover .top_service_submenu_title{
		color: #ffffff;
	}
}
@media only screen and (max-width:1240px) and (min-width:769px){
	.top_service_submenu{
		margin: 0 -0.7%;
	}
	.top_service_submenu_item{
		margin: 0;
		width: 31.9%;
		height: 29vw;
	}
	.top_service_submenu_title{
		padding: 2.6vw 0 0 2.6vw;
		font-size: 1.8rem;
	}
}
@media only screen and (max-width:768px){
	.top_service_submenu{
		margin: 1.3vw -1.3vw;
	}
	.top_service_submenu_item{
		margin: 1.3vw auto;
		width: 42vw;
		height: 43vw;
	}
	.top_service_submenu_title{
		align-self: flex-start;
		background: url(/images/renewal_2022/cmn/icon_angle_right.svg) no-repeat right center;
		margin: 3.2vw 0 0 2.6vw;
		padding-right: 15px;
		font-size: 1.4rem;
	}
	.top_service_submenu_img{
		padding-bottom: 2.5vw;
	}
}

.top_alert{
	color: #CC3300;
	font-weight: 700;	/* Bold */
	line-height: 1.7;
}
#content .top_alert a{
	color: #CC3300;
}
#content .top_alert a:hover{
	text-decoration: underline;
}
.top_alert_box{
	transform: translateY(30px);
	border: 1px solid #CC3300;
	border-radius: 3px;
}
.top_alert_box.animated{
	transform: translateY(0);
}
.top_alert_title span{
	display: inline-flex;
	align-items: center;
	background: url(/images/renewal_2022/cmn/icon_exclamation-circle.svg) no-repeat 0 center;
	background-size: 28px auto;
	min-height: 28px;
}
.top_alert_body ul li{
	padding-left: 1em;
	text-indent: -1em;
}
.top_alert_body ul li::before{
	content: '・';
}
@media only screen and (min-width:769px){
	.top_alert{
		margin: 120px 0 30px;
	}
	.top_alert_box{
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin: 20px 0;
		padding: 20px;
	}
	.top_alert_title{
		width: 32%;
		text-align: right;
		font-size: 2.0rem;
	}
	.top_alert_title span{
		padding-left: 38px;
	}
	.top_alert_body{
		width: 62%;
		font-size: 1.6rem;
	}
	.top_alert_body ul li + li{
		margin-top: 10px;
	}
}
@media only screen and (max-width:768px){
	.top_alert{
		margin: 60px 0 40px;
	}
	.top_alert_box{
		margin: 10px 0;
		padding: 10px;
	}
	.top_alert_title{
		font-size: 1.6rem;
	}
	.top_alert_title span{
		padding-left: 35px;
	}
	.top_alert_body{
		margin-top: 10px;
		font-size: 1.4rem;
	}
	.top_alert_body ul li + li{
		margin-top: 5px;
	}
}

.top_info{
	transform: translateY(30px);
}
#content .top_info a:hover{
	text-decoration: underline;
}
.top_info.news{
	transition-delay: .2s;
}
.top_info.animated{
	transform: translateY(0);
}
.top_info_title{
	background-repeat: no-repeat;
	background-size: auto 30px;
	font-weight: 700;	/* Bold */
}
.top_info.information .top_info_title{	background-image: url(/images/renewal_2022/cmn/icon_bell.svg);	}
.top_info.news .top_info_title{	background-image: url(/images/renewal_2022/cmn/icon_news.svg);	}
.top_info_list{
	border-top: 1px solid #003366;
	border-bottom: 1px solid #003366;
}
.top_info_item{
	display: block;
}
.top_info_item + .top_info_item{
	border-top: 1px solid #D5D5D5;
}
.top_info_item_head{
	display: flex;
	align-items: center;
	font-size: 1.2rem;
}
.top_info_text{
	margin-top: 10px;
	font-size: 1.6rem;
	font-weight: 700;	/* Bold */
}
.top_info_more{
	margin-top: 15px;
	font-size: 1.6rem;
	font-weight: 700;	/* Bold */
	text-align: right;
}
.top_info_more a{
	display: inline-block;
	background: url(/images/renewal_2022/cmn/icon_angle_right.svg) no-repeat right center;
	background-size: 8px auto;
	padding-right: 20px;
}
@media only screen and (min-width:769px){
	.top_info_row{
		display: flex;
		justify-content: space-between;
		margin: 120px auto;
	}
	.top_info{
		width: 47%;
	}
	.top_info_title{
		background-position: 0 7px;
		margin: 25px 0;
		padding-left: 45px;
		font-size: 2.6rem;
	}
	.top_info_item{
		padding: 17px 10px;
	}
}
@media only screen and (max-width:768px){
	.top_info_row{
		margin: 60px auto;
	}
	.top_info{
		margin: 30px 0;
	}
	.top_info_title{
		background-position: 0 center;
		margin: 20px 0;
		padding-left: 40px;
		font-size: 2.0rem;
	}
	.top_info_item{
		padding: 20px 0 15px;
		height: auto !important;
	}
}

.top_pickup{
	background-color: #333333;
}
.top_pickup .top_m_title{
	color: #ffffff;
}
.top_pickup_item{
	transition: background .3s ease-in-out;
	display: block;
	background-color: #ffffff;
	border: 1px solid #575757;
}
.top_pickup_img{
	background-color: #ffffff;
	margin: 0 auto;
}
.top_pickup_body{
	background: url(/images/renewal_2022/cmn/icon_angle_right_thin.svg) no-repeat right center;
	background-size: 11px auto;
	padding-right: 35px;
}
.top_pickup_title{
	font-size: 2.3rem;
}
.top_pickup_text{
	font-size: 1.6rem;
}
.top_pickup .slick-dots button{
	border: 1px solid #ffffff;
}
.top_pickup .slick-dots .slick-active button{
	background-color: #ffffff;
}
#content .top_pickup_item:hover{
	background-color: #B95500;
	color: #ffffff;
}
#content .top_pickup_item:hover .top_pickup_body{
	background-image: url(/images/renewal_2022/cmn/icon_angle_right_thin-white.svg);
}
@media only screen and (min-width:769px){
	.top_pickup{
		padding: 60px 0 120px;
	}
	.top_pickup_slide{
		margin: 0 -12px;
	}
	.top_pickup_item{
		margin: 0 12px;
	}
	.top_pickup_img{
		padding: 50px 12.8% 15px;
	}
	.top_pickup_body{
		margin: 30px 20px;
	}
	.top_pickup_text{
		margin-top: 10px;
	}
}
@media only screen and (max-width:768px){
	.top_pickup{
		padding: 30px 0 30px;
	}
	.top_pickup_slide{
		margin: 0 -5.3vw;
	}
	.top_pickup_item{
		margin: 0 1.3vw;
	}
	.top_pickup_img{
		padding: 10px 17vw;
	}
	.top_pickup_body{
		margin: 25px 4.2vw;
	}
	.top_pickup_text{
		margin-top: 7px;
	}
}

.top_rentecinsight_item{
	transition: background .3s ease-in-out;
	display: block;
	border: 1px solid #D5D5D5;
}
.top_rentecinsight_img{
	margin: 0 auto;
}
.top_rentecinsight_body{
	background: url(/images/renewal_2022/cmn/icon_angle_right_thin.svg) no-repeat right center;
	background-size: 11px auto;
	padding-right: 35px;
}
.top_rentecinsight_title{
	font-size: 2.3rem;
}
.top_rentecinsight .slick-dots button{
	border: 1px solid #003366;
}
.top_rentecinsight .slick-dots .slick-active button{
	background-color: #003366;
}
#content .top_rentecinsight_item:hover{
	background-color: #B95500;
	color: #ffffff;
}
#content .top_rentecinsight_item:hover .top_rentecinsight_body{
	background-image: url(/images/renewal_2022/cmn/icon_angle_right_thin-white.svg);
}
@media only screen and (min-width:769px){
	.top_rentecinsight{
		padding: 60px 0 120px;
	}
	.top_rentecinsight_slide .slick-list{
		margin: 0 -12px;
	}
	.top_rentecinsight_item{
		margin: 0 12px;
	}
	.top_rentecinsight_body{
		margin: 25px 20px 20px;
	}
	.top_rentecinsight_date{
		font-size: 1.2rem;
	}
	.top_rentecinsight_title{
		margin-top: 10px;
	}
}
@media only screen and (max-width:768px){
	.top_rentecinsight{
		padding: 30px 0 30px;
	}
	.top_rentecinsight_slide{
		margin: 0 -5.3vw;
	}
	.top_rentecinsight_item{
		margin: 0 1.3vw;
	}
	.top_rentecinsight_body{
		margin: 15px 4.2vw;
	}
	.top_rentecinsight_date{
		font-size: 1.0rem;
	}
	.top_rentecinsight_title{
		margin-top: 7px;
	}
}

.top_strength_content{
	background-image: linear-gradient(to right, #4B2382 0%, rgba(100, 170, 220, .9) 100%);
	color: #ffffff;
}
.top_strength_content .animate{
	transform: translateY(30px);
	transition-delay: .2s;
}
.top_strength_content .animate.animated{
	transform: translateY(0);
}
.top_strength_body{
	max-width: 683px;
	width: 100%;
	padding: 0 4.5vw;
	text-align: center;
}
.top_strength_label{
	background: url(/images/renewal_2022/top/top_strength_label_bg.svg) no-repeat center bottom;
	background-size: 112px auto;
	padding: 0 0 15px;
	font-size: 2.0rem;
	font-weight: 700;	/* Bold */
	letter-spacing: 0.05em;
}
.top_strength_title{
	border-bottom: 2px solid;
	border-image: linear-gradient(to left, #4B2382 0%, #64AADC 100%);
	border-image-slice: 1;
	margin: 17px 0;
	padding-bottom: 15px;
	font-weight: 700;	/* Bold */
	line-height: 1.15;
	letter-spacing: 0.1em;
}
.top_strength_text{
	margin: 25px 0;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}
.top_strength_btn a{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-image: url(/images/renewal_2022/cmn/icon_angle_right.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 8px auto;
	background-color: #ffffff;
	border-radius: 3px;
	width: 282px;
	height: 60px;
	font-size: 1.6rem;
	font-weight: 700;	/* Bold */
}
#content .top_strength_btn a:hover{
	background-image: url(/images/renewal_2022/cmn/icon_angle_right-white.svg);
	background-color: #B95500;
	color: #ffffff;
}
@media only screen and (min-width:769px){
	.top_strength{
		background-image: url(/images/renewal_2022/top/strength_bg.jpg);
		background-size: cover;
	}
	.top_strength_content{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
		margin-right: 50vw;
		height: 500px;
	}
	.top_strength_title{
		font-size: 3.3rem;
	}
	.top_strength_title small{
		font-size: 2.5rem;
	}
	.top_strength_btn{
		margin-top: 35px;
	}
}
@media only screen and (max-width:768px){
	.top_strength{
		background-repeat: no-repeat;
		background-image: url(/images/renewal_2022/top/strength_bg_sp.jpg);
		background-size: 100% auto;
		padding-top: 73.3%;
	}
	.top_strength_body{
		padding-top: 35px;
		padding-bottom: 40px;
	}
	.top_strength_label{
		margin-bottom: 20px;
	}
	.top_strength_title{
		font-size: 2.6rem;
	}
	.top_strength_title small{
		font-size: 2.2rem;
	}
}

/* ↓ オリックス・レンテックの強み
================================== */
.strength_main_wrap{
	background-position: center bottom;
	background-size: cover;
}
.strength_main{
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: linear-gradient(to right, rgba(75, 35, 130, .8) 0%, rgba(100, 170, 220, .8) 100%);
	color: #ffffff;
}
.strength_main_title{
	padding: 0 45px;
	transform: translateY(30px);
	font-weight: 700;	/* Bold */
	letter-spacing: .1em;
	text-align: center;
	line-height: 1.3;
}
.strength_main_title.animated{
	transform: translateY(0);
}
@media only screen and (min-width:769px){
	.strength_main_wrap{
		background-image: url(/images/renewal_2022/strength/main_bg.jpg);
	}
	.strength_main{
		height: 200px;
	}
	.strength_main_title{
		font-size: 3.3rem;
	}
}
@media only screen and (max-width:768px){
	.strength_main_wrap{
		background-image: url(/images/renewal_2022/strength/main_bg_sp.jpg);
	}
	.strength_main{
		height: 150px;
	}
	.strength_main_title{
		font-size: 2.3rem;
	}
}

.strength_lead{
	transform: translateY(30px);
	transition-delay: .3s;
	letter-spacing: .1em;
	line-height: 1.8;
}
.strength_lead.animated{
	transform: translateY(0);
}
@media only screen and (min-width:769px){
	.strength_lead{
		margin: 60px auto;
		font-size: 2rem;
		text-align: center;
	}
}
@media only screen and (max-width:768px){
	.strength_lead{
		margin: 40px auto 10px;
		font-size: 1.4rem;
	}
}

.strength_movie{
	color: #ffffff;
	overflow: hidden;
}
.strength_movie a{
	color: #ffffff !important;
}
.strength_movie_section{
	position: relative;
	margin: 40px 0;
}
.strength_movie_box{
	transition-delay: .6s;
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(to right, #4B2382 0%, rgba(100, 170, 220, .9) 100%);
}
.strength_movie_play{
	transform: scale(1.5);
	transition-delay: .4s;
	font-family: 'Roboto Condensed', sans-serif;
	letter-spacing: .05em;
	text-align: center;
}
.strength_movie_play.animated{
	transform: scale(1);
}
.strength_movie_play a::before{
	transition: .3s ease-in-out;
	content: '';
	display: block;
	background: url(/images/renewal_2022/cmn/icon_caret_right.svg) no-repeat center center;
	border: 3px solid #ffffff;
	border-radius: 50%;
	margin-bottom: 10px;
}
.strength_movie_play a:hover::before{
	background-color: rgba(181, 205, 226, .1);
}
.strength_movie_head{
	display: flex;
	align-items: center;
}
.strength_movie_no{
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 4.0rem;
	font-style: italic;
	letter-spacing: .02em;
	flex-shrink: 0;
}
.strength_movie_title{
/*	border-left: 1px solid #ffffff; */
	font-weight: 700;	/* Bold */
	line-height: 1.7;
}
.strength_movie_body{
	margin-top: 35px;
	line-height: 1.75;
}
.strength_movie_section:nth-child(odd)::before{
	right: 0;
}
.strength_movie_section:nth-child(odd) .strength_movie_box{
	transform: translateX(70px);
}
.strength_movie_section:nth-child(odd) .strength_movie_box.animated{
	transform: translateX(0);
}
.strength_movie_section:nth-child(even)::before{
	left: 0;
}
.strength_movie_section:nth-child(even) .inner{
	flex-direction: row-reverse;
}
.strength_movie_section:nth-child(even) .strength_movie_box{
	transform: translateX(-70px);
}
.strength_movie_section:nth-child(even) .strength_movie_box.animated{
	transform: translateX(0);
}
@media only screen and (min-width:769px){
	.strength_movie_section{
		padding: 60px 0;
	}
	.strength_movie_section::before{
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		background-position: center center;
		background-size: cover;
		width: calc((100% - 1366px) / 2 + 1180px);
		min-width: 1180px;
	}
	.strength_movie_section.section01::before{
		background-image: url(/images/renewal_2022/strength/section01_bg.jpg);
	}
	.strength_movie_section.section02::before{
		background-image: url(/images/renewal_2022/strength/section02_bg.jpg);
	}
	.strength_movie_section.section03::before{
		background-image: url(/images/renewal_2022/strength/section03_bg.jpg);
	}
	.strength_movie_section .inner{
		display: flex;
	}
	.strength_movie_box{
		padding: 20px 40px;
		width: 49%;
		min-height: 440px;
		flex-shrink: 0;
	}
	.strength_movie_play{
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 40px;
		width: 100%;
		font-size: 2.5rem;
	}
	.strength_movie_play a::before{
		background-size: 90px auto;
		width: 150px;
		height: 150px;
	}
	.strength_movie_play a:hover::before{
		background-size: 120px auto;
	}
	.strength_movie_title{
/*		margin-left: 30px;
		padding-left: 30px;*/
		font-size: 2.6rem;
	}
	.strength_movie_body{
		font-size: 1.6rem;
	}
}
@media only screen and (max-width:768px){
	.strength_movie_section .inner{
		padding: 0 !important;
	}
	.strength_movie_box{
		padding: 40px 5.3vw 43.5vw;
	}
	.strength_movie_play{
		margin: -33vw 5.3vw 0;
		font-size: 1.4rem;
	}
	.strength_movie_play a{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-size: cover;
		height: 45vw;
	}
	.strength_movie_play a::before{
		background-size: 50px auto;
		width: 70px;
		height: 70px;
	}
	.strength_movie_play a:hover::before{
		background-size: 70px auto;
	}
	.strength_movie_section.section01 .strength_movie_play a{
		background-image: url(/images/renewal_2022/strength/section01_bg.jpg);
	}
	.strength_movie_section.section02 .strength_movie_play a{
		background-image: url(/images/renewal_2022/strength/section02_bg.jpg);
	}
	.strength_movie_section.section03 .strength_movie_play a{
		background-image: url(/images/renewal_2022/strength/section03_bg.jpg);
	}
	.strength_movie_title{
/*		margin-left: 20px;
		padding-left: 20px;*/
		font-size: 2.2rem;
	}
	.strength_movie_body{
		font-size: 1.4rem;
	}
}

.strength_modal{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(0, 0, 0, .7);
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
}
.strength_modal.show{
	transition: opacity .3s ease-in-out;
	opacity: 1;
	pointer-events: all;
}
.strength_modal_body{
	max-width: 1080px;
	width: 100%;
	padding: 0 40px;
}
.strength_modal_close{
	position: relative;
}
.strength_modal_close a{
	position: absolute;
	top: -20px;
	right: -20px;
	background-color: #ffffff;
	display: block;
	padding: 12px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	z-index: 1;
}
.strength_modal_close a img{
	transition: transform .3s ease-in-out;
}
.strength_modal_close a:hover img{
	transform: rotate(90deg);
}
.strength_modal_movie{
	position: relative;
	padding-top: 56.25%;
}
.strength_modal_movie .wistia_responsive_wrapper{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.strength_modal_movie .wistia_embed{
	width: 100%;
	height: 100%;
}

.top_announce {
  margin: 0 auto;
  max-width: 1280px;
}

@media only screen and (min-width: 769px){
  .top_announce {
    padding: 60px 40px;
  }
}

@media screen and (max-width: 768px) {
  .top_announce {
    padding: 30px 40px;
  }
}

.top_announce__inner {
  max-width: 960px;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  .top_announce__inner {
    padding: 0 5.3vw;
    width: 100%;
    margin: 20px auto;
  }
}

.top_announce__box {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
  padding: 36px 5px;
}

@media screen and (max-width: 768px) {
  .top_announce__box {
    padding: 36px 10px;
  }
}

.top_announce__title {
  font-size: 32px;
  font-weight: bold;
  line-height: 46px;
  margin-bottom: 30px;
  color: #333333;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .top_announce__title {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 33px;
  }
}

.top_announce__text {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #333333;
  text-align: center;
}

.top_announce__buttonarea {
  display: flex;
  justify-content: center;
  text-align: center;
}

.top_announce__button {
  margin: 0 18px 24px 18px;
}

@media screen and (max-width: 768px) {
  .top_announce__button {
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
    margin-bottom: 0;
  }
}

.top_announce__button a {
  font-size: 14px;
  width: 296px;
  height: 50px;
  border-radius: 100vh;
  color: #003366 !important;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
  border: solid 2px #003366;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-image: url(/images/renewal_2022/cmn/icon_angle_right.svg);
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 8px auto;
}
@media screen and (max-width: 768px) {
.top_announce__button a {
    width: 100%;
  }
}
.top_announce__button a:hover {
  opacity: 0.8;
/*  text-decoration: underline !important;*/
}

/* pc - sp */
.use-pc {
	display: flex;
}
.use-sp {
	display: none;
}
@media (max-width: 768px) {
	.use-pc {
		display: none;
	}
	.use-sp {
		display: flex;
	}
}

/* ==========================================================================
   【TOPメニュー不具合完全修正】文字色白固定・黒スジ消去・SP2カラム・SPアコーディオン
   ========================================================================== */

/* 1. タイトル文字色の白固定 (cmn2025.cssなどのaタグ黒指定を完全上書き) */
#content .top_service .top_service_menu_title,
#content .top_service .top_service_menu_title a,
#content .top_service_menu_body .top_service_menu_title,
#content .top_service_menu_body .top_service_menu_title a,
.top_service_menu_title,
.top_service_menu_title a {
	color: #333333 !important;
	text-decoration: none !important;
}
#content .top_service .top_service_menu_title a:hover,
#content .top_service_menu_body .top_service_menu_title a:hover {
	color: #ffffff !important;
	text-decoration: underline !important;
}



/* 2. 空のimgタグによる壊れた画像アイコン非表示 */
.top_service_menu_img img[src=""],
.top_service_menu_img img:not([src]) {
	display: none !important;
}

/* --------------------------------------------------------------------------
   PC表示（769px以上）：2列グリッド整列 & 黒スジ削除 & 位置ズレ解消
   -------------------------------------------------------------------------- */
@media only screen and (min-width: 769px) {
	.top_service_main_row {
		display: flex;
		justify-content: space-between;
		margin-bottom: 12px;
	}
	.top_service_main_row .top_service_menu_item {
		width: 49.4%;
		margin-top: 0 !important;
	}

	.top_service_sub_row {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}

	/* 左側3段（高さ: 145*3 + 12*2 = 459px） */
	.top_service_left_grid {
		width: 49.4%;
		height: 459px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: space-between;
	}
	.top_service_left_grid .top_service_submenu_item {
		width: 48.8% !important;
		height: 145px !important;
		margin-bottom: 0 !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding: 0 15px 0 20px !important;
		box-sizing: border-box !important;
		position: relative !important;
		overflow: hidden !important;
	}

	/* 右側全体高さ 459px */
	.top_service_right_grid {
		width: 49.4%;
		height: 459px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	/* 購入枠: 高さ 302px (左側2段分に完全一致) & 黒スジ消去 */
	.top_service_right_grid .purchase_item {
		width: 100% !important;
		height: 302px !important;
		margin: 0 !important;
		box-sizing: border-box !important;
		overflow: hidden !important;
		border: 1px solid #D5D5D5 !important;
		position: relative !important;
	}
	.top_service_right_grid .purchase_item .top_service_menu_img {
		position: absolute !important;
		top: 0 !important;
		left: 0 !important;
		width: 100% !important;
		height: 100% !important;
		border: none !important;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
	}
	.top_service_right_grid .purchase_item .top_service_menu_img img {
		display: block !important;
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
	}

	/* 右下2枠: 高さ 145px (左側3段目と完全に一列揃い) */
	.top_service_right_bottom {
		display: flex;
		justify-content: space-between;
		height: 145px;
	}
	.top_service_right_bottom .top_service_submenu_item {
		width: 48.8% !important;
		height: 145px !important;
		margin: 0 !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		padding: 0 15px 0 20px !important;
		box-sizing: border-box !important;
		position: relative !important;
		overflow: hidden !important;
	}

	/* サブカード内タイトル＆画像配置 */
	.top_service_left_grid .top_service_submenu_title,
	.top_service_right_bottom .top_service_submenu_title {
		width: 55% !important;
		padding: 0 !important;
		margin: 0 !important;
		font-size: 2.3rem !important;
		line-height: 1.3 !important;
		z-index: 1;
	}
	.top_service_left_grid .top_service_submenu_img,
	.top_service_right_bottom .top_service_submenu_img {
		width: 42% !important;
		height: 100% !important;
		padding: 0 !important;
		margin: 0 !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
	}
	.top_service_left_grid .top_service_submenu_img img,
	.top_service_right_bottom .top_service_submenu_img img {
		max-width: 100% !important;
		max-height: 110px !important;
		height: auto !important;
		object-fit: contain !important;
	}
}

/* --------------------------------------------------------------------------
   スマホ表示（768px以下）：現行仕様完全準拠 (枠線・背景白・padding: 12px 0)
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
	/* 1. メインカード＆購入枠 (親枠に重複する枠線・背景をつけない) */
	.top_service_menu_item {
		width: 100% !important;
		margin-bottom: 1.3vw !important;
		border: none !important;
		background: transparent !important;
		position: relative !important;
	}

	/* 画像領域（現行通りの1px枠線） */
	.top_service_menu_img {
		position: relative !important;
		border: 1px solid #D5D5D5 !important;
		line-height: 0 !important;
	}
	.top_service_menu_img img {
		width: 100% !important;
		height: auto !important;
		display: block !important;
	}

	/* タイトル（画像の上に配置 & 「＋」「ー」アイコン） */
	.top_service_menu_item .top_service_menu_title {
		position: absolute !important;
		top: 0 !important;
		right: 0 !important;
		left: 0 !important;
		z-index: 1 !important;
		margin: 4.5vw 5.3vw 4.5vw 2.2vw !important;
		padding: 0 !important;
		font-size: 1.6rem !important;
		font-weight: bold !important;
		color: #ffffff !important;
		cursor: pointer !important;
		background: url(https://www.orixrentec.jp/images/renewal_2022/cmn/icon_plus-white.svg) no-repeat right center !important;
		background-size: 15px auto !important;
	}
	.top_service_menu_item.show .top_service_menu_title {
		background-image: url(https://www.orixrentec.jp/images/renewal_2022/cmn/icon_minus-white.svg) !important;
	}

	/* アコーディオンリスト（背景白/透明・現行通り padding: 12px 0） */
	.top_service_menu_list {
		display: none;
		position: static !important;
		background: transparent !important;
		padding: 0 !important;
		font-size: 1.4rem !important;
		font-weight: bold !important;
		opacity: 1 !important;
	}
	.top_service_menu_list ul {
		padding: 12px 0 !important;
	}
	.top_service_menu_list li {
		margin: 5px 0 !important;
	}
	.top_service_menu_list a {
		color: #333333 !important;
		text-decoration: none !important;
		background: url(https://www.orixrentec.jp/images/renewal_2022/cmn/icon_angle_right.svg) no-repeat right center !important;
		background-size: 7px auto !important;
		padding-right: 17px !important;
		display: inline-block !important;
	}

	/* 2. サブカード群（SP 2カラム配置 & アイコン画像拡大） */
	.top_service_sub_row {
		display: block !important;
		width: 100% !important;
	}
	.top_service_left_grid,
	.top_service_right_bottom {
		display: flex !important;
		flex-wrap: wrap !important;
		justify-content: space-between !important;
		width: 100% !important;
	}

	.top_service_left_grid .top_service_submenu_item,
	.top_service_right_bottom .top_service_submenu_item {
		width: 48.5% !important;
		height: 43vw !important;
		max-height: 180px !important;
		min-height: 140px !important;
		margin-bottom: 3vw !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		align-items: flex-start !important;
		padding: 12px 10px 8px 10px !important;
		box-sizing: border-box !important;
		background: #ffffff !important;
		border: 1px solid #D5D5D5 !important;
		text-decoration: none !important;
		position: relative !important;
	}

	/* タイトル＋青い矢印「＞」アイコン */
	.top_service_left_grid .top_service_submenu_title,
	.top_service_right_bottom .top_service_submenu_title {
		width: 100% !important;
		font-size: 1.4rem !important;
		font-weight: bold !important;
		color: #333333 !important;
		line-height: 1.3 !important;
		margin: 0 !important;
		padding-right: 14px !important;
		box-sizing: border-box !important;
		background: url(https://www.orixrentec.jp/images/renewal_2022/cmn/icon_angle_right.svg) no-repeat right top 2px !important;
		background-size: 8px auto !important;
		text-align: left !important;
	}

	/* サブカード画像表示領域の拡大（107px前後の大きめ表示） */
	.top_service_left_grid .top_service_submenu_img,
	.top_service_right_bottom .top_service_submenu_img {
		width: 100% !important;
		flex: 1 !important;
		display: flex !important;
		justify-content: center !important;
		align-items: center !important;
		margin: 0 auto !important;
		padding-bottom: 4px !important;
	}
	.top_service_left_grid .top_service_submenu_img img,
	.top_service_right_bottom .top_service_submenu_img img {
		max-width: 95% !important;
		max-height: 110px !important;
		width: auto !important;
		height: auto !important;
		object-fit: contain !important;
	}

	.top_service_menu_item .top_service_menu_title {
		cursor: pointer;
	}
}
/* ==========================================================================
   トップページ「商品・サービス」エリア調整
   ========================================================================== */

/* 1. 枠サイズを維持したまま、画像の表示サイズのみ80%に縮小 */
.top_service_menu_img img {
	transform: scale(0.70) !important;
	transition: transform 0.3s ease-in-out !important;
}
/* ホバー時のオレンジ背景（::before）を画像より手前に表示させる */
.top_service_menu_img::before {
	z-index: 1 !important;
}
/* 2. カードボックス（.top_service_menu_item）ホバー時にタイトル文字色を白に変更（PC・769px以上限定） */
@media only screen and (min-width: 769px) {
	#content .top_service_menu_item:hover .top_service_menu_title,
	#content .top_service_menu_item:hover .top_service_menu_title a {
		color: #ffffff !important;
	}
}

/* トップページ「商品・サービス」SP表示時（768px以下）アコーディオンタイトルの文字色制御 */
@media only screen and (max-width: 768px) {
	/* 1. 閉じている時（初期状態・閉じた後）：黒色（#333333） */
	#content .top_service_menu_item .top_service_menu_title,
	#content .top_service_menu_item .top_service_menu_title a {
		color: #333333 !important;
	}

	/* 2. 開いている時（.showクラス付与時）：白色（#ffffff） */
	#content .top_service_menu_item.show .top_service_menu_title,
	#content .top_service_menu_item.show .top_service_menu_title a {
		color: #ffffff !important;
	}
}
/* --------------------------------------------------------------------------
   PCタブレット表示（769px?1240px）：横2つ・縦3つのグリッドを維持するためのサイズ調整
   -------------------------------------------------------------------------- */
@media only screen and (max-width: 1240px) and (min-width: 769px) {
	/* ボックス内の余白を減らし、横並びのスペースを確保 */
	.top_service_left_grid .top_service_submenu_item,
	.top_service_right_bottom .top_service_submenu_item {
		padding: 0 10px 0 12px !important;
	}
	
	/* フォントサイズを縮小（2.3rem → 1.6rem前後）し、タイトルの幅を調整 */
	.top_service_left_grid .top_service_submenu_title,
	.top_service_right_bottom .top_service_submenu_title {
		font-size: 1.6rem !important;
		width: 55% !important;
	}

	/* 画像サイズを縮小 */
	.top_service_left_grid .top_service_submenu_img,
	.top_service_right_bottom .top_service_submenu_img {
		width: 42% !important;
	}
	.top_service_left_grid .top_service_submenu_img img,
	.top_service_right_bottom .top_service_submenu_img img {
		max-height: 80px !important; /* 高さを抑えてはみ出しを防ぐ */
	}
}
