@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
	--base_font_family: 'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
	--font_inter: "Inter", sans-serif;
	--base_font_color: #303030;
	--base_black:#303030;
	--base_blue:#122D51;
	--base_red:#D01523;
	--c_duration:0.4s;
	--c_hover_opa:0.6;
	--c_sec_space:200px;
}

*{
	margin:0;
	padding:0;
	list-style: none;
	box-sizing: border-box;
	text-decoration: none;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

*::before,
*::after{
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	box-sizing: border-box;
}

html {
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

input,
select,
textarea{
	font-family: var(--base_font_family);
	color:var(--base_font_color);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	font-feature-settings: 'palt';
	touch-action: manipulation;
	resize: none;
	display: block;
}

button{
	border: none;
	background: none;
	border-radius: 0;
	cursor: pointer;
}

body{
	color: var(--base_font_color);
	font-size: 16px;
	font-family: var(--base_font_family);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.grecaptcha-badge { visibility: hidden; }

img{
	display: block;
	object-position: center;
	width: 100%;
}

#body_wrap{
	overflow: clip;
}


a{
	color: inherit;
}

.fax a{
	pointer-events: none;
}

@media (any-hover:hover){
a[href^="tel:"] {
	pointer-events: none;
}
}

/*
------------------------------------
アニメーション関係
------------------------------------
*/

.c_hover_opa{
	transition-duration: var(--c_duration);
}


@media (any-hover:hover){
	.c_hover_opa:hover{
		opacity: var(--c_hover_opa);
	}
	
}


.anime_fadein_bottom{
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	transform: translateY(40px);
}

.anime_fadein_bottom.anime_active ,
.anime_active .anime_fadein_bottom{
	animation-name:anime_fadein_bottom;
}

@keyframes anime_fadein_bottom {
	0% {
	opacity:0;
	}
	100% {
		opacity:1;
		transform: translateY(0);
	}
}



/*
------------------------------------
共通パーツ
------------------------------------
*/

section{
	position: relative;
	padding-top: var(--c_sec_space);
}

.hide{
	display: none!important;
}

.container{
	max-width: 1200px;
	width:92%;
	margin:0 auto;
}


.c_sec_head_set{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color:var(--base_blue);
}

.c_sec_head_set .sec_head_main{
	font-size: 64px;
	font-weight: 500;
	line-height: 1.25;
}

.c_sec_head_set .sec_head_sub{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
}

.c_sec_head_set.white{
	color:#fff;
}
.c_sec_head_set.center{
	align-items: center;
	text-align: center;
}


.c_arrow_button{
	width: fit-content;
	min-width: 274px;
	min-height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px 40px;
	background-color: var(--base_blue);
	border:1px solid  var(--base_blue);
	color:#fff;
	transition-duration: var(--c_duration);
	font-size: 16px;
	position: relative;
}

.c_arrow_button::after{
	content:'';
	width:16px;
	aspect-ratio: 1 / calc(8 / 17);
	background-image: url('../img/common/icon_arrow_long_right_white.svg');
	position: absolute;
	top: 50%;
	right:16px;
	transform: translateY(-50%);
}

@media (any-hover: hover) {
	.c_arrow_button:hover{
		background-color: #fff;
		color:var(--base_blue);
	}
	.c_arrow_button:hover::after{
		background-image: url('../img/common/icon_arrow_long_right_blue.svg');
	}
}



.c_page_title_set{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap:12px;
}

.c_page_title_set .page_title_main{
	font-size: 64px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0.05em;
}

.c_page_title_set .page_title_sub{
	font-size: 20px;
	font-weight: 500;
	line-height: 1.25;
}

.c_page_title_set.white{
	color:#fff;
}
.c_page_title_set.center{
	align-items: center;
	text-align: center;
}


.c_sec_box_head{
	width: fit-content;
	min-height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px;
	background-color: var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color:#fff;
}

.c_sec_box_head.center{
	margin-inline: auto;
}


.c_square_list{
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:16px;
}

.c_square_list .square_list_item{
	position: relative;
	padding-left: 32px;
	padding-top: 2px;
}

.c_square_list .square_list_item::before{
	content:'';
	width:24px;
	aspect-ratio: 1 / 1;
	position: absolute;
	left:0;
	top:0;
	background-color: var(--base_blue);
}

.c_square_list .square_item_title{
	color:var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	
}

.c_square_list .square_list_item.red::before{
	background-color: var(--base_red);
}
.c_square_list .square_list_item.red .square_item_title{
	color: var(--base_red);
}

.c_square_list .square_item_text{
	margin-top: 16px;
	font-size: 16px;
	color:var(--base_blue);
}

.c_square_list .square_item_text_remark{
	font-size: 12px;
	line-height: 2;
}
/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
	position: fixed;
	width:100%;
	top:0;
	left:0;
	z-index: 1000;
}

header a{
	transition-duration: var(--c_duration);
	transition-property: opacity;
}

@media (any-hover: hover) {
	header a:hover{
		opacity: var(--c_hover_opa);
	}
}

header .header_inner{
	padding-top: 16px;
	padding-inline: 32px;
}

header .header_frame{
	padding:8px;
	background-color: #fff;
}

header .header_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:24px;
}

header .header_logo{
	display: block;
	width:204px;
	aspect-ratio: 1 / calc(40 / 204);
	position: relative;
}

header .header_logo img{
	position: absolute;
	top:0;
	left:0;
	transition-duration: var(--c_duration);
	transition-property: opacity;
}

header .header_nav{
	display: flex;
	align-items: center;
	gap:12px 40px;
}

header .header_button_list{
	display: flex;
	gap:16px;
}

header .header_button{
	min-width: 166px;
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:4px 12px;
	background-color: var(--base_red);
	color:#fff;
	font-size: 16px;
	font-weight: 700;

}

header .header_parent_menu{
	display: flex;
	align-items: center;
	gap:40px;
	color: var(--base_blue);
	font-size: 16px;
	font-weight: 500;
	transition-duration: var(--c_duration);
	transition-property: color;
}

header .header_parent_item{
	position: relative;
}

header .header_parent_link{
	cursor: pointer;
}

header .header_child_frame{
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 12px;
	opacity: 0;
	pointer-events: none;
	transition-duration: var(--c_duration);
	transition-property: opacity;
}

@media (any-hover: hover) {
	header .header_parent_item:hover .header_child_frame{
		opacity: 1;
		pointer-events: auto;
	}
}

header .header_child_frame .header_child_menu{
	min-width: 240px;
	background-color: #fff;
	white-space: nowrap;
}

header .header_child_item + .header_child_item{
	border-top:1px solid var(--base_blue);
} 

header .header_child_link{
	display: flex;
	justify-content: center;
	align-items: center;
	padding:12px;
	color: var(--base_blue);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	transition-duration: var(--c_duration);
	transition-property: background-color,color;
} 

@media (any-hover: hover) {
	header .header_child_link:hover{
		background-color: var(--base_blue);
		color:#fff;
		opacity: 1;
	}
}
/*
------------------------------------
ページ下部のダウンロードセクション
------------------------------------
*/

.c_download_section{
	
}

.c_download_section .download_box_area{
	position: relative;
}

.c_download_section .download_deco{
	position: absolute;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.c_download_section .download_deco01{
	width:127px;
	aspect-ratio: 1 / calc(135 / 127);
	background-image: url('../img/download/download_deco01.png');
	left:56px;
	bottom:-36px;
}
.c_download_section .download_deco02{
	width:247px;
	aspect-ratio: 1 / calc(153 / 247);
	background-image: url('../img/download/download_deco02.png');
	left:212px;
	bottom:-42px;
}

.c_download_section .download_deco02 span{
	position: relative;
	display: block;
	width:100%;
	height:100%;
}
.c_download_section .download_deco02 span::after{
	content:'';
	width:calc(180 / 247 * 100%);
	height:calc(30 / 153 * 100%);
	background-color: var(--base_blue);
	position: absolute;
	bottom:42px;
	left:calc(80 / 247 * 100%);
}

.c_download_section .download_deco02.back{
	z-index: 0;
}

.c_download_section .download_box{
	position: relative;
	z-index: 1;
	padding:24px;
	background-color: var(--base_blue);
	min-height: 312px;
}

.c_download_section .download_flex{
	display: flex;
	justify-content: space-between;
	gap:24px;
}

.c_download_section .download_left{
	color:#fff;
	padding-bottom: 80px;
	flex-shrink: 0;
}

.c_download_section .download_head{
	font-size: 16px;
	font-weight: 300;
	line-height: 1.2;
	
}

.c_download_section .download_title{
	margin-top: 16px;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.c_download_section .download_text{
	margin-top: 16px;
	font-size: 16px;
}


.c_download_section .download_right{
	width:100%;
	max-width:773px;
}

.c_download_section .download_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:16px;
	position: relative;
	z-index: 3;
}

.c_download_section .download_link{
	position: relative;
	background-color: #fff;
	display: block;
}

.c_download_section .download_link::before{
	content:'';
	width:100%;
	height:100%;
	background-color: var(--base_blue);
	opacity: 0.1;
	position: absolute;
	left:0;
	top:0;
	transition-duration: var(--c_duration);
	transition-property: transform;
	transform-origin: left;
	transform: scaleX(0);
}

@media (any-hover: hover) {
	.c_download_section .download_link:hover::before{
		transform: scaleX(1);
	}
}
.c_download_section .download_link_inner{
	display: flex;
	justify-content: flex-end;
	gap:8px;
	min-height: 124px;
	position: relative;
	z-index: 1;
	padding: 8px;
}

.c_download_section .download_link_title{
	width:100%;
	display: flex;
	align-items: center;
}

.c_download_section .download_link_title img{
	width:calc(168 / 195 * 100%);
	margin-inline: auto;
}

.c_download_section .download_link_title .download_link_title01{
	width:calc(114 / 195 * 100%);
	margin-left:16px;
}
.c_download_section .download_link_title .download_link_title02{
	width:calc(188 / 195 * 100%);
}

.c_download_section .download_link_arrow{
	flex-shrink: 0;
	width:28px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
}

.c_download_section .download_link_arrow::after{
	content:'';
	width:calc(13 / 28 * 100%);
	aspect-ratio: 1 / calc(8 / 13);
	background-image: url('../img/common/icon_arrow_right_white.svg');
}
/*
------------------------------------
フッター
------------------------------------
*/

footer{
	padding-top: var(--c_sec_space);
	padding-bottom: 16px;
}

footer a{
	transition-duration: var(--c_duration);
	transition-property: opacity;
}

@media (any-hover: hover) {
	footer a:hover{
		opacity: var(--c_hover_opa);
	}
}

footer .footer_inner{
	display: flex;
	justify-content: flex-end;
}

footer .footer_flex{
	display: flex;
	justify-content: space-between;
	gap:24px;
	max-width: 1140px;
	width: 100%;

}

footer .footer_logo{
	display: block;
	width:288px;
}

footer .footer_address{
	margin-top: 48px;
	font-size: 16px;
}

footer .footer_right{
	width: 100%;
	display: flex;
	align-items: center;
	padding-top: 24px;
}

footer .footer_right_inner{
	width:100%;
}

footer .footer_nav{
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap:32px;
}

footer .footer_parent_menu{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:30px;
	width: 280px;
}

footer .footer_parent_item{
	
}

footer .footer_parent_link{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	border-bottom:1px solid var(--base_black);
	letter-spacing: 0;
}

footer .footer_parent_link_en{
	font-size: 24px;
	line-height: 1;
}

footer .footer_parent_link_ja{
	font-size: 16px;
	line-height: 1.4;
}

footer .footer_child_menu{
	margin-top: 20px;
	padding-left: 16px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:8px;
}

footer .footer_child_link{
	display: flex;
	align-items: center;
	gap:16px;
}

footer .footer_child_link::before{
	content:'';
	flex-shrink: 0;
	width:8px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: var(--base_black);
}

footer .footer_copy{
	margin-top: 40px;
	font-size: 16px;
	text-align: right;
}
/*
------------------------------------
TOP
------------------------------------
*/


body.top_body header .header_frame{
	transition-duration: var(--c_duration);
	background-color: transparent;
}

body.top_body header .header_logo_blue{
	opacity: 0;
}

body.top_body header .header_parent_menu{
	color:#fff;
}


body.top_body header.show .header_frame{
	background-color: #fff;
}

body.top_body header.show .header_logo_blue{
	opacity: 1;
}

body.top_body header.show .header_parent_menu{
	color:var(--base_blue);
}



.top_fv_section{
	padding-top: 0;
}

.top_fv_section .fv_inner{
	position: relative;
	min-height: max(600px , 100svh);
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 90px;
	padding-bottom: 70px;
}

body:has(.top_news_section) .fv_inner{
	min-height: max(550px , calc(100svh - 120px));
}


.top_fv_section .fv_pic img{
	position: absolute;
	width:100%;
	height:100%;
	z-index: -1;
	object-fit: cover;
	top:0;
	left:0;
}

.top_fv_section .fv_contents{
	width:90%;
	max-width: 960px;
	padding-bottom: 60px;
	display: flex;
	justify-content: flex-end;
}

.top_fv_section .fv_catch{
	width:413px;
}


.top_fv_section .fv_remark{
	width:fit-content;
	margin-top: 24px;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1.5;
	color:#fff;
	background-color: var(--base_blue);
}

.top_news_section{
	padding-top: 0;
	padding-bottom: 168px;
}

.top_news_section .news_slide_area{
	display: flex;
	justify-content: center;
	margin-top: -48px;
}

.top_news_section .news_slide_inner{
	flex-shrink: 0;
	width:100vw;
	max-width: 1920px;
	overflow: clip;
	padding-left: min(calc(120 / 1440 * 1920px) , calc(120 / 1440 * 100vw));
}

.top_news_section .news_slide{
	width:380px;
	margin-right: 40px;
	display: flex;
}

.top_news_section .news_card{
	width:100%;
	min-height:160px;
	
	position: relative;
	display: flex;
	background-color: #E9E9E9;
}

.top_news_section .news_card::before{
	content:'';
	width:100%;
	height:100%;
	background-color: var(--base_blue);
	opacity: 0.1;
	position: absolute;
	left:0;
	top:0;
	transition-duration: var(--c_duration);
	transition-property: transform;
	transform-origin: left;
	transform: scaleX(0);
}

@media (any-hover: hover) {
	.top_news_section .news_card:hover::before{
		transform: scaleX(1);
	}
}

.top_news_section .news_card_inner{
	position: relative;
	z-index: 1;
	width:100%;
	display: flex;
	padding:8px;
	justify-content: space-between;
	gap:24px;
}

.top_news_section .news_card_left{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap:16px;
	width:100%;
	padding:16px;
	padding-right: 0;
}

.top_news_section .news_card_title{
	font-weight: 500;
	font-size: 16px;
}

.top_news_section .news_card_info{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap:12px;
	width: 100%;
}


.top_news_section .news_card_date{
	flex-shrink: 0;
	color: #919191;
	font-size: 14px;
	font-weight: 500;
}

.top_news_section .news_card_cat{
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 105px;
	min-height: 28px;
	padding:4px 16px;
	border-radius: 9999px;
	background-color: #fff;
	color: #919191;
	font-size: 14px;
	font-weight: 500;
}

.top_news_section .news_card_arrow{
	flex-shrink: 0;
	width:24px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
}

.top_news_section .news_card_arrow::after{
	content:'';
	width:9px;
	aspect-ratio: 1 / calc(8 / 9);
	background-image: url('../img/common/icon_arrow_right_black.svg');
}

.top_news_section .news_bottom_flex{
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:24px;
}

.top_news_section .news_nav_flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:8px;
}
.top_news_section .news_nav{
	width:32px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border:1px solid var(--base_blue);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition-duration: var(--c_duration);
}
.top_news_section .news_nav::after{
	content:'';
	width:6px;
	aspect-ratio: 1 / calc(9 / 6);
	transition-duration: var(--c_duration);
}

.top_news_section .news_nav.prev::after{
	background-image: url('../img/common/icon_angle_left_blue.svg');
}
.top_news_section .news_nav.next::after{
	background-image: url('../img/common/icon_angle_right_blue.svg');
}

@media (any-hover: hover) {
	.top_news_section .news_nav:hover{
		background-color: var(--base_blue);
	}
	.top_news_section .news_nav.prev:hover::after{
		background-image: url('../img/common/icon_angle_left_white.svg');
	}
	.top_news_section .news_nav.next:hover::after{
		background-image: url('../img/common/icon_angle_right_white.svg');
	}
}

.top_news_section .news_nav.swiper-button-disabled{
	opacity: 0;
	pointer-events: none;
}

.top_news_section .news_button{
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 104x;
	min-height: 24px;
	padding:4px 16px;
	border-radius: 9999px;
	background-color: var(--base_blue);
	border:1px solid var(--base_blue);
	color:#fff;
	font-size: 14px;
	font-weight: 500;
	transition-duration: var(--c_duration);
}
@media (any-hover: hover) {
	.top_news_section .news_button:hover{
		background-color: #fff;
		color:var(--base_blue);
	}
}

.top_service_section{
	
	padding-bottom: var(--c_sec_space);
	background-color: var(--base_blue);
}

.top_service_section .service_list{
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:16px;
}

.top_service_section .service_item{
	display: flex;
}

.top_service_section .service_card{
	display: flex;
	width:100%;
	position: relative;
	background-color: #fff;
}

.top_service_section .service_card::before{
	content:'';
	width:100%;
	height:100%;
	background-color: var(--base_blue);
	opacity: 0.1;
	position: absolute;
	left:0;
	top:0;
	transition-duration: var(--c_duration);
	transition-property: transform;
	transform-origin: left;
	transform: scaleX(0);
}

@media (any-hover: hover) {
	.top_service_section .service_card:hover::before{
		transform: scaleX(1);
	}
}
.top_service_section .service_card_inner{
	width: 100%;
	display: flex;
	justify-content: flex-end;
	gap:18px;
	min-height: 180px;
	position: relative;
	z-index: 1;
	padding: 8px;
}

.top_service_section .service_card_arrow{
	flex-shrink: 0;
	width:32px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
}

.top_service_section .service_card_arrow::after{
	content:'';
	width:calc(16 / 32 * 100%);
	aspect-ratio: 1 / calc(8 / 13);
	background-image: url('../img/common/icon_arrow_right_white.svg');
}

.top_service_section .service_card_contents{
	width: 100%;
	display: flex;
	align-items: center;
	padding-left: 16px;
	gap:calc(32 / 530 * 100%);
}

.top_service_section .service_card_thumb{
	flex-shrink: 0;
	width:calc(160 / 530 * 100%);
}

.top_service_section .service_card_title{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap:8px;
	color:var(--base_blue);
	font-weight: 900;
}

.top_service_section .service_card_title .min{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
}

.top_service_section .service_card_title .middle{
	font-size: 24px;

}

.top_service_section .service_card_title .middle span{
	font-size: 20px;
}

.top_service_section .service_card_title .big{
	font-size: 32px;
	line-height: 1.25;
	letter-spacing: 0.1em;
}

.top_about_section{
	
	padding-bottom: var(--c_sec_space);
	background-image: url('../img/top/about_sec_bg.jpg');
}

.top_about_section .about_text{
	max-width: 340px;
	margin-top: 48px;
	color: #FFF;
	font-size: 20px;
}

.top_about_section .about_button_frame{
	margin-top: 40px;
}


/*
------------------------------------
ABOUT US
------------------------------------
*/

.about_fv_section{
	padding-top: 0;
	background-color: var(--base_blue);
}

.about_fv_section .fv_inner{
	height:100svh;
	min-height: 600px;
	padding:100px 0;
	position: relative;
	display: flex;
	align-items: center;
}

.about_fv_section .fv_pic img{
	width:100vw;
	height:100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}


.about_fv_section .c_page_title_set{
	position: relative;
	z-index: 1;
}


.about_fv_section .catch_area{
	padding-top: 130px;
	padding-bottom: 130px;
	position: relative;	
}

.about_fv_section .catch_text{
	position: relative;
	z-index: 1;
	color: #FFF;
	font-size: 60px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.01em;
	line-height: 1.2;
}

.about_fv_section .catch_text strong{
	font-size: 80px;
}

.about_fv_section .deco{
	position: absolute;
	bottom:0;
	background-size: contain;
}

.about_fv_section .deco01{
	width:69px;
	aspect-ratio: 1 / calc(122 / 69);
	background-image: url('../img/about/fv_deco01.png');
	right:calc(50% + 530px);
}
.about_fv_section .deco02{
	width:70px;
	aspect-ratio: 1 / calc(122 / 70);
	background-image: url('../img/about/fv_deco02.png');
	right:calc(50% + 400px);
}
.about_fv_section .deco03{
	width:137px;
	aspect-ratio: 1 / calc(125 / 137);
	background-image: url('../img/about/fv_deco03.png');
	left:calc(50% + 430px);
}

.about_voice_section{
	
}

.about_voice_section .voice_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:32px;
	margin-top: 40px;
}
.about_voice_section .voice_left{
	width:100%;
	max-width: 670px;
}

.about_voice_section .voice_catch{
	font-size: 32px;
	font-weight: 700;
}

.about_voice_section .voice_text{
	margin-top: 16px;
	line-height: 2;
}

.about_voice_section .voice_right{
	flex-shrink: 0;
	width:calc(450 / 1200 * 100%);
}

.about_profile_section{
	
}

.about_profile_section .profile_frame{
	width: fit-content;
	margin-inline: auto;
	margin-top: 64px;
}

.about_profile_section .profile_table{
	border-collapse: collapse;
}

.about_profile_section .profile_table th,
.about_profile_section .profile_table td{
	font-size: 16px;
	font-weight: 400;
	padding-top: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid #31433A;
	line-height: 1.2;
	text-align: left;
}

.about_profile_section .profile_table th{
	white-space: nowrap;
	padding-right: 24px;
}

.about_profile_section .profile_table p + p{
	margin-top: 8px;
}

.about_profile_section .profile_table tr:last-child th,
.about_profile_section .profile_table tr:last-child td{
	border-bottom: none;
}

/*
------------------------------------
DOUWLOAD
------------------------------------
*/

.download_section{
	
	padding-bottom: 180px;
	background-color: var(--base_blue);
}

.download_section .download_box_area{
	margin-top: 80px;
}

.download_section .download_box{
	padding: 0;
}

.download_section .download_deco{
	display: none;
}
.download_section .download_left{
	padding-bottom: 0;
}


/*
------------------------------------
NEWS アーカイブ
------------------------------------
*/

.news_list_section{
	
}

.news_list_section .news_list_article{
	margin-top: 100px;
}


.news_list_section {

}

.news_list_section .news_list{

}

.news_list_section .news_item{
	border-bottom:1px solid var(--base_font_color);
}

.news_list_section .news_block{
	display: block;
	padding-top: 48px;
	padding-bottom: 48px;
	padding-right: 56px;
	position: relative;
}

.news_list_section .news_block svg{
	position: absolute;
	top: 50%;
	right:16px;
	transform: translateY(-50%);
	width:16px;
}

.news_list_section .news_block svg path{
	stroke: var(--base_font_color);
}

.news_list_section .news_flex{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap:32px;
	max-width: 1020px;
}

.news_list_section .news_thumb{
	flex-shrink: 0;
	width:220px;
	aspect-ratio: 1 / calc(144 / 220);
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid var(--base_font_color);
}

.news_list_section .news_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.news_list_section .news_text_area{
	width:100%;
	max-width: 690px;
}

.news_list_section .news_head_flex{
	display: flex;
	align-items: flex-start;
	gap:16px;
}

.news_list_section .news_date{
	min-width: 95px;
}

.news_list_section .news_title{
	margin-top: 16px;
	font-size: 20px;
	font-weight: 700;
}

.news_list_section .news_excerpt{
	margin-top: 16px;
	line-height: 1.5;
}

/* ===== ページネーション ===== */
.c_page_nation{
	margin-top: 80px;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-shrink: 0;
	gap:16px;
	font-size: 24px;
	line-height: 1.2;
}

.c_page_nation span.current{/*現在のページボタン*/
	width: 46px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_font_color);
	color: #ffffff;
	
}

.c_page_nation a.page-numbers{/*指定のページ移動ボタン*/
	width: 36px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid var(--base_font_color);
	transition-duration: var(--c_duration);
}

@media(any-hover:hover){
	.c_page_nation a.page-numbers:hover{
		background-color: var(--base_font_color);
		color:var(--base_color_text);
	}
}

/*
------------------------------------
NEWS 詳細
------------------------------------
*/


.news_single_section{
	
}


.news_single_section .article_frame{
	max-width: 750px;
	margin-inline: auto;
}

.news_single_section .article_date{
	margin-top: 16px;
}

.news_single_section .article_title{
	margin-top: 16px;
	font-size: 20px;
	font-weight: 700;
}

.news_single_section .single_frame{
	margin-top: 60px;
}


.c_single_block{
	line-height: 2;
    letter-spacing: 0.05em;
}

.c_single_block p{
	margin:24px 0;
}

.c_single_block h2{
	font-size: 24px;
	font-weight: 700;
	margin:32px 0;
	line-height: 1.5;
}

.c_single_block h3{
	font-size: 18px;
	font-weight: 700;
	margin:24px 0;
	line-height: 1.5;
}

.c_single_block .wp-block-image {
	margin:24px 0;
}


/*
------------------------------------
SERVICE
------------------------------------
*/

body.service_body{
	color:var(--base_blue);
}

.service_fv_section{
	
}

.service_fv_section .fv_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:32px;
}

.service_fv_section .fv_left{
	width:100%;
	max-width: 520px;
	position: relative;
	padding-right: 10px;
	display: flex;
	align-items: center;
	padding-top: 32px;
	padding-bottom: 32px;
	min-height: 434px;
}

.service_fv_section .fv_left::before{
	content:'';
	width:880px;
	height:100%;
	position: absolute;
	top:0;
	right:0;
	background-color: var(--base_blue);

}

.service_fv_section .page_title{
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color:#fff;
}

.service_fv_section .page_title .main_title{
	font-size: 64px;
	font-weight: 900;
	letter-spacing: 0.1em;
	line-height: 1.45;
}

.service_fv_section .page_title .big_title{
	font-size: 56px;
	font-weight: 900;
}

.service_fv_section .page_title .middle_title{
	margin-top: 8px;
	font-size: 48px;
	font-weight: 900;
	line-height: 1.45;
	letter-spacing:0.04em;
}
.service_fv_section .page_title .campus_title{
	font-size: 32px;
	font-weight: 900;
	line-height: 1.25;
	letter-spacing: 0.15em;
}

.service_fv_section .page_title .sub_title{
	margin-top: 16px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.2;
}

.service_fv_section .fv_right{
	width:50%;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
}

.service_fv_section .fv_img{
	width:100%;
}


.service_feature_section{

}

.service_feature_section .feature_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 1040px;
	margin-inline: auto;
	/* gap:32px; */
}

.service_feature_section .feature_left{
	width:50%;
	display: flex;
	justify-content: center;
}

.service_feature_section .feature_right{
	width:47%;
	max-width: 470px;
	padding-top: 72px;
}

.service_feature_section .feature_contents + .feature_contents{
	margin-top: 80px;
}

.service_feature_section .feature_catch{
	font-size: 24px;
	font-weight: 500;
	margin-top: 24px;
	color:var(--base_blue);
}



.service_media_section{

}

.service_media_section .media_flex{
	max-width: 1040px;
	margin-inline: auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap:24px;
}

.service_media_section .media_left{
	width:calc(580 / 1040 * 100%);
}

.service_media_section .media_right{
	flex-shrink: 0;
	width:calc(450 / 1040 * 100%);
	display: flex;
	justify-content: center;
}

.service_media_section .media_img{
	width:90%;
	max-width: 350px;
}

.service_media_section .logo_list_area{
	margin-top: 60px;
}

.service_media_section .logo_list_frame + .logo_list_frame{
	margin-top: 32px;
}

.service_media_section .logo_list{
	display: flex;
}

.service_media_section .logo_slide{
	width:calc(200 / 1200 * 100%);
}

.service_program_section{

}

.service_program_section .program_inner{
	padding-top: 40px;
	padding-left: 40px;
	position: relative;
}

.service_program_section .program_pic{
	position: absolute;
}

.service_program_section .program_list{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:16px;
}

.service_program_section .program_line{
	display: flex;
	align-items: flex-start;
	gap:40px;
	color: var(--base_blue);
}

.service_program_section .program_title_area{
	flex-shrink: 0;
}

.service_program_section .program_title{
	width: fit-content;
	width: 85px;
	min-height: 35px;
	padding:8px 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid var(--base_blue);
	
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
}

.service_program_section .program_title p{
	width:100%;
	text-align:justify;
	text-align-last:justify;
}

.service_program_section .program_contents{
	padding-top: 8px;
	line-height: 1.2;
	font-weight: 500;
}

.service_program_section .program_contents .red{
	color:var(--base_red);
}

.service_program_section .program_contents_remark{
	font-weight: 400;
}

.service_program_section .program_contents ul{
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:4px;
}

.service_program_section .program_contents ul li{
	padding-left: 16px;
	position: relative;
}
.service_program_section .program_contents ul li::before{
	content:'・';
	color:var(--base_blue);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	position: absolute;
	left:0;
	top:0;
}

.service_program_section .program_example_area{
	margin-top: 16px;
}

.service_program_section .program_example_head_flex{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap:8px 40px;
}

.service_program_section .program_example_head{
	width: fit-content;
	min-height: 35px;
	padding:8px;
	display: flex;
	justify-content: center;
	align-items: center;
	border:1px solid var(--base_blue);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	white-space: nowrap;
	color:var(--base_blue);
}

.service_program_section .program_example_head_remark{
	color:var(--base_blue);
}

.service_program_section .program_example_frame{
	margin-top: 16px;
}

.service_program_section .program_example_remark{
	margin-top: 16px;
	padding-left: 12px;
	color:var(--base_blue);
	font-size: 16px;
}
/*
------------------------------------
広島街中サイネージ
------------------------------------
*/

.town_fv_section .fv_img{
	max-width: calc(503 / 600 * 100%);
}

.town_feature_section{

} 

.town_feature_section .feature_img{
	width:calc(455 / 520 * 100%);
}

.town_location_section{
	color:var(--base_blue);
}

.town_location_section .catch_text{
	margin-top: 40px;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.town_location_section .guide_text{
	margin-top: 24px;
	width: fit-content;
	margin-inline: auto;
}

.town_location_section .map_frame{
	margin-top: 48px;
	display: flex;
	justify-content: center;
}

.town_location_section .map_item{
	flex-shrink: 0;
	width:100vw;
	max-width: 1440px;
	height:475px;
	position: relative;
	overflow: clip;
}

.town_location_section .map_item iframe{
	position: absolute;
	width:100%;
	height:calc(100% + 70px);
	display: block;
	bottom:0;
	left:0;
}

.town_location_section .area_list{
	max-width: 1040px;
	margin-inline: auto;
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap:80px;
}

.town_location_section .location_list{
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	
	gap:40px calc(40 / 1040 * 100%);
}

.town_location_section .location_thumb{
	aspect-ratio: 1 / calc(232 / 325);
}

.town_location_section .location_thumb img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.town_location_section .location_title{
	margin-top: 16px;
	padding-left: 32px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	position: relative;
	padding-top: 1px;
}
.town_location_section .location_title .num{
	position: absolute;
	width:24px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background-color: var(--base_blue);
	position: absolute;
	left:0;
	top:0;
	display: flex;
	justify-content: center;
	align-items: center;
	color:#fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	padding-bottom: 3px;
}

.town_location_section .location_title .voice{
	color:var(--base_red);
	display: inline-block;
}

.town_program_section{

}

.town_program_section .program_pic{
	width:331px;
	right:0;
	top:0;
}

.town_program_section .program_example{
	max-width: 770px;
}

/*
------------------------------------
紙屋町シャレオ サイネージ
------------------------------------
*/

.shareo_fv_section .fv_img{
	max-width: calc(425 / 600 * 100%);
}


.shareo_feature_section{

} 

.shareo_feature_section .feature_flex{
	align-items: center;
}

.shareo_feature_section .feature_right{
	padding-top: 0;
}

.shareo_feature_section .feature_img{
	width:calc(322 / 520 * 100%);
}

.shareo_about_section{

} 

.shareo_about_section .about_text{
	margin-top: 40px;
	color: var(--base_blue);
	text-align: center;
	font-size: 16px;
}

.shareo_about_section .about_list{
	margin-top: 120px;
	display: flex;
	justify-content: space-between;
	gap:20px 0;
	flex-wrap: wrap;
}

.shareo_about_section .about_item img{
	min-height: 100%;
	object-fit: cover;
} 

.shareo_about_section .about_item01{
	width:calc(671 / 1200 * 100%);
}
.shareo_about_section .about_item02{
	width:calc(509 / 1200 * 100%);
}
.shareo_about_section .about_item03{
	width:calc(559 / 1200 * 100%);
}
.shareo_about_section .about_item04{
	width:calc(612 / 1200 * 100%);
}

.shareo_location_section{

}

.shareo_location_section .guide_text{
	margin-top: 32px;

}

.shareo_location_section .location_inner{
	max-width: 1120px;
	margin-inline: auto;
}

.shareo_location_section .location_flex{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.shareo_location_section .location_left{
	flex-shrink: 0;
	width:50.7%;
	max-width: 528px;
}

.shareo_location_section .location_right{
	width:48%;
	max-width: 520px;
}

.shareo_location_section .location_list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:14px;
}

.shareo_location_section .location_item{
	position: relative;
	aspect-ratio: 1 / calc(143 / 253);
}

.shareo_location_section .location_item img{
	width:100%;
	height:100%;
	object-fit: cover;
}

.shareo_location_section .location_num{
	position: absolute;
	z-index: 2;
	width:24px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	top:0;
	left:0;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_red);
	color:#fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	padding-bottom: 2px;
	transform: translate3d(-50% , -50% , 0);
}

.shareo_program_section{

}

.shareo_program_section .program_pic{
	width:257px;
	right:40px;
}

.shareo_program_section .program_example{
	max-width: 770px;
}

/*
------------------------------------
学生向けリクルート専用 キャンパス内サイネージ
------------------------------------
*/

.campus_fv_section .fv_img{

}

.campus_step_section{

}

.campus_step_section .guide_text{
	margin-top: 36px;
	text-align: center;
	font-size: 16px;
}
.campus_step_section .guide_text strong{
	color:var(--base_red);
}

.campus_step_section .alert_text{
	margin-top: 36px;
	text-align: center;
	color: var(--base_red);
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.campus_step_section .alert_text span{
	padding-inline: 12px;
	background: linear-gradient(to top, #EF0 -10%, #EF0 20%, transparent 20%, transparent 100%);
}

.campus_step_section .step_box{
	margin-top: 80px;
	max-width: 1120px;
	margin-inline: auto;
	border: 1px solid var(--base_blue);
}

.campus_step_section .step_box_head{
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
	padding:6px 12px;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.2;
	letter-spacing: 0;
}

.campus_step_section .step_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.campus_step_section .step_item{
	padding:40px 12px 40px;
}

.campus_step_section .step_item + .step_item{
	border-left:2px dashed var(--base_blue);
}

.campus_step_section .step_item_inner{
	max-width: 280px;
	margin-inline: auto;
}

.campus_step_section .step_num{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-family: var(--font_inter);
	font-size: 24px;
	font-style: italic;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: -0.05em;
}
.campus_step_section .step_num span{
	font-size: 48px;
	font-weight: 400;
	line-height: 0.8;
}

.campus_step_section .step_title{
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.8px;
	padding:6px 8px;
	margin-top: 20px;
	clip-path: polygon(calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 0 0);

}

.campus_step_section .step_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-inline: auto;
	height: 120px;
	margin-top: 15px;
}

.campus_step_section .step_icon::after{
	max-width: 100%;
	content:'';
}

.campus_step_section .step_icon.step01::after{
	height:calc(96 / 120 * 100%);
	aspect-ratio: 1 / calc(96 / 92);
	background-image: url('../img/campus/step01.png');
}
.campus_step_section .step_icon.step02::after{
	height:calc(102 / 120 * 100%);
	aspect-ratio: 1 / calc(102 / 107);
	background-image: url('../img/campus/step02.png');
}
.campus_step_section .step_icon.step03::after{
	height:calc(120 / 120 * 100%);
	aspect-ratio: 1 / calc(120 / 132);
	background-image: url('../img/campus/step03.png');
}

.campus_step_section .step_text{
	margin-top: 8px;
	line-height: 1.25;
}

.campus_assign_section{

}

.campus_assign_section .guide_text{
	width: fit-content;
	margin-inline: auto;
	font-weight: 500;
	line-height: 1.2;
	margin-top: 32px;
}

.campus_assign_section .assign_inner{
	max-width: 912px;
	margin-inline: auto;
	margin-top: 80px;
}

.campus_assign_section .assign_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}


.campus_assign_section .assign_list{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap:40px calc(36 / 912 * 100%);
}

.campus_assign_section .assign_item{
	min-height: 377px;
	padding:56px 16px 80px;
	clip-path: polygon(100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px), 0 0);
}

.campus_assign_section .assign_item.assign_problem{
	background-color: #D8D8D8;
}
.campus_assign_section .assign_item.assign_solution{
	background-color: var(--base_blue);
	color:#fff;
}

.campus_assign_section .assign_item_inner{
	max-width: 300px;
	margin-inline: auto;
}

.campus_assign_section .assign_item_icon{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}


.campus_assign_section .assign_item_icon::after{
	height:54px;
	content:'';
}
.campus_assign_section .assign_item_icon.assign01::after{
	aspect-ratio: 1 / calc(54 / 62);
	background-image: url('../img/campus/assign01_icon.svg');
}
.campus_assign_section .assign_item_icon.assign02::after{
	aspect-ratio: 1 / calc(54 / 43);
	background-image: url('../img/campus/assign02_icon.svg');
}

.campus_assign_section .assign_item_head{
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.campus_assign_section .assign_item_text{
	margin-top: 40px;
	line-height: 2;
	font-size: 16px;
}

.campus_assign_section .assign_solution .assign_item_text{
	margin-top: 24px;
}

.campus_assign_section .assign_result_box{
	margin-top: 40px;
	border: 1px solid var(--base_blue);
}

.campus_assign_section .assign_result_head{
	min-height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
	padding:6px 12px;
	color: #FFF;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
}

.campus_assign_section .assign_result_contents{
	min-height: 160px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:32px 16px;
}

.campus_assign_section .assign_result_text{
	text-align: center;
	font-size: 16px;
}

.campus_feature_section{

}

.campus_feature_section .feature_img{
	width: calc(448 / 520 * 100%);
}

.campus_feature_section .feature_right{
	padding-top: 0;
}

.campus_university_section{

}

.campus_university_section .university_list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:16px;
	margin-top: 36px;
}

.campus_program_section{

}

.campus_program_section .program_example{
	max-width: 1130px;
}

/*
------------------------------------
エールエールHIROSHIMA
------------------------------------
*/
.ale_fv_section{

}

.ale_fv_section .fv_img{
	max-width: calc(404 / 600 * 100%);
}

.ale_feature_section{

}

.ale_feature_section .feature_flex{
	align-items: center;
}
.ale_feature_section .feature_right{
	padding-top: 0;
}

.ale_feature_section .feature_img{
	width: calc(452 / 520 * 100%);
}

.ale_location_section{

}

.ale_location_section .location_image{
	max-width: 708px;
	margin-inline: auto;
	margin-top: 72px;
}

.ale_land_section{

}

.ale_land_section .land_frame{
	max-width: 433px;
	margin-inline: auto;
	margin-top: 20px;
}

.ale_land_section .land_name{
	margin-bottom: 20px;
	font-weight: 500;
	text-align: center;
	line-height: 1.2;
}

.ale_program_section{

}

.ale_program_section .program_example{
	max-width: 770px;
}

/*
------------------------------------
広島大学工学部 デジタルサイネージ
------------------------------------
*/

.university_fv_section .fv_right{
	display: block;
}

.university_fv_section .fv_img{
	width:calc(720 / 1440 * 100vw);
	max-width: 720px;
}

.university_feature_section{

}

.university_feature_section .feature_left{
	width:calc(600 / 1150 * 100%);
}

.university_feature_section .feature_flex{
	max-width: 1150px;
	margin: 0;
}

.university_location_section{

}

.university_location_section .location_flex{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.university_location_section .location_left{
	width:50%;
	max-width: 500px;
}

.university_location_section .location_right{
	width:46%;
	max-width: 517px;
}

.university_location_section .location_img{
	margin-top: 40px;
}

.university_program_section{

}

.university_program_section .program_list{
	max-width: 700px;
}

/*
------------------------------------
広島市中心市街地 人流データ
------------------------------------
*/

.jinryu_fv_section .fv_img{
	max-width: calc(550 / 600 * 100%);
}

.jinryu_about_section{

}

.jinryu_about_section .about_inner{
	max-width: 1120px;
	margin-inline: auto;
}

.jinryu_about_section .about_catch{
	margin-top: 40px;
	color: #4ABBE1;
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
}

.jinryu_about_section .about_text{
	margin-top: 40px;
	text-align: center;
	font-size: 16px;
}

.jinryu_about_section .about_text .red{
	color:var(--base_red);
}

.jinryu_about_section .about_img{
	margin-top: 80px;
}

.jinryu_about_section .feature_box{
	margin-top: 40px;
	border: 1px solid var(--base_blue);

}

.jinryu_about_section .feature_box_head{
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px 16px;
	background-color: var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color:#fff;
}

.jinryu_about_section .feature_list{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	color:var(--base_blue);
}

.jinryu_about_section .feature_item{
	padding:24px 16px 24px 80px;
	position: relative;
}

.jinryu_about_section .feature_item + .feature_item{
	border-left:2px dashed var(--base_blue);
}

.jinryu_about_section .feature_icon{
	position: absolute;
	top: 50%;
	left: 16px;
	transform: translateY(-50%);
	width:48px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	border:4px solid var(--base_blue);
}
.jinryu_about_section .feature_icon::after{
	content:'';
	width:21px;
	aspect-ratio: 1 / calc(14 / 21);
	background-image: url('../img/common/icon_check_blue.svg');
}

.jinryu_about_section .feature_title{
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.jinryu_about_section .feature_text{
	margin-top: 8px;
	font-size: 16px;
}

.jinryu_ability_section{

}

.jinryu_ability_section .guide_text{
	color:var(--base_blue);
	margin-top: 40px;
	text-align: center;
}

.jinryu_ability_section .ability_inner{
	max-width: 1120px;
	margin-inline: auto;
}

.jinryu_ability_section .ability_box_area{
	margin-top: 96px;
}

.jinryu_ability_section .ability_box{
	border: 1px solid var(--base_blue);
}

.jinryu_ability_section .ability_box_head{
	min-height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px 16px;
	background-color: var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color:#fff;
}

.jinryu_ability_section .ability_list{
	display: grid;
	color:var(--base_blue);
}

.jinryu_ability_section .ability_item{
	padding:24px 16px 32px;
}

.jinryu_ability_section .ability_item + .ability_item{
	border-left:2px dashed var(--base_blue);
}

.jinryu_ability_section .ability_item_inner{
	max-width: 188px;
	margin-inline: auto;
}

.jinryu_ability_section .ability_icon{
	display: flex;
	justify-content: center;
	align-items: center;
}
.jinryu_ability_section .ability_icon::after{
	content:'';
	max-width: 100%;
}

.jinryu_ability_section .ability_title{
	font-size: 20px;
	width: fit-content;
	margin-inline: auto;
	margin-top: 8px;
	font-weight: 700;
	line-height: 1.2;
}

.jinryu_ability_section .ability_text{
	margin-top: 16px;
	font-size: 16px;
}

.jinryu_ability_section .ability_list01{
	grid-template-columns: repeat(6, 1fr);
}
.jinryu_ability_section .ability_list01 .ability_title{
	margin-top: 8px;
}
.jinryu_ability_section .ability_list01 .ability_text{
	text-align: center;
}
.jinryu_ability_section .ability_list01 .ability_icon{
	height:63px;
}
.jinryu_ability_section .ability01_01::after{
	height:calc(46 / 63 * 100%);
	aspect-ratio: 1 / calc(46 / 50);
	background-image: url('../img/jinryu/ability01_01.svg');
}
.jinryu_ability_section .ability01_02::after{
	height:calc(63 / 63 * 100%);
	aspect-ratio: 1 / calc(63 / 33);
	background-image: url('../img/jinryu/ability01_02.svg');
}
.jinryu_ability_section .ability01_03::after{
	height:calc(43 / 63 * 100%);
	aspect-ratio: 1 / calc(43 / 39);
	background-image: url('../img/jinryu/ability01_03.svg');
}
.jinryu_ability_section .ability01_04::after{
	height:calc(43 / 63 * 100%);
	aspect-ratio: 1 / calc(43 / 41);
	background-image: url('../img/jinryu/ability01_04.svg');
}
.jinryu_ability_section .ability01_05::after{
	height:calc(43 / 63 * 100%);
	aspect-ratio: 1 / calc(43 / 49);
	background-image: url('../img/jinryu/ability01_05.svg');
}
.jinryu_ability_section .ability01_06::after{
	height:calc(50 / 63 * 100%);
	aspect-ratio: 1 / calc(50 / 46);
	background-image: url('../img/jinryu/ability01_06.svg');
}

.jinryu_ability_section .ability_list02{
	grid-template-columns: repeat(4, 1fr);
}
.jinryu_ability_section .ability_list02 .ability_title{
	margin-top: 16px;
}
.jinryu_ability_section .ability_list02 .ability_icon{
	height:70px;
}
.jinryu_ability_section .ability02_01::after{
	height:calc(58 / 70 * 100%);
	aspect-ratio: 1 / calc(58 / 50);
	background-image: url('../img/jinryu/ability02_01.svg');
}
.jinryu_ability_section .ability02_02::after{
	height:calc(70 / 70 * 100%);
	aspect-ratio: 1 / calc(70 / 36);
	background-image: url('../img/jinryu/ability02_02.svg');
}
.jinryu_ability_section .ability02_03::after{
	height:calc(53 / 70 * 100%);
	aspect-ratio: 1 / calc(53 / 53);
	background-image: url('../img/jinryu/ability02_03.svg');
}
.jinryu_ability_section .ability02_04::after{
	height:calc(52 / 70 * 100%);
	aspect-ratio: 1 / calc(52 / 52);
	background-image: url('../img/jinryu/ability02_04.svg');
}

.jinryu_plan_section{

}

.jinryu_plan_section .guide_text{
	color:var(--base_blue);
	margin-top: 40px;
	text-align: center;
}

.jinryu_plan_section .plan_inner{
	max-width: 1120px;
	margin-inline: auto;
}


.jinryu_plan_section .plan_list{
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap:calc(40 / 1120 * 100%);
	color:var(--base_blue);
}

.jinryu_plan_section .plan_item_head{
	min-height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px 16px;
	background-color: var(--base_blue);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color:#fff;
}

.jinryu_plan_section .plan_item{
	border:1px solid var(--base_blue);
}

.jinryu_plan_section .plan_item_contents{
	padding:24px 16px 32px;
}

.jinryu_plan_section .plan_icon{
	display: flex;
	justify-content: center;
	align-items: center;
}

.jinryu_plan_section .plan_icon::after{
	content:'';
	width:94px;
	aspect-ratio: 1 / calc(117 / 94);
}
.jinryu_plan_section .plan_icon.plan01::after{
	background-image: url('../img/jinryu/icon_plan01.svg');
}
.jinryu_plan_section .plan_icon.plan02::after{
	background-image: url('../img/jinryu/icon_plan02.svg');
}
.jinryu_plan_section .plan_icon.plan03::after{
	background-image: url('../img/jinryu/icon_plan03.svg');
}

.jinryu_plan_section .plan_title{
	margin-top: 16px;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
}

.jinryu_plan_section .plan_text{
	margin-top: 16px;
	text-align: center;
	font-size: 16px;
}

.jinryu_plan_section .button_frame{
	margin-top: 24px;
	display: flex;
	justify-content: center;
}

.jinryu_plan_section .document_button{
	display: block;
	width: fit-content;
	border:1px solid var(--base_blue);
	color:var(--base_blue);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.1em;
	position: relative;
}

.jinryu_plan_section .document_button::before{
	content:'';
	width:100%;
	height:100%;
	background-color: var(--base_blue);
	opacity: 0.1;
	position: absolute;
	left:0;
	top:0;
	transition-duration: var(--c_duration);
	transition-property: transform;
	transform-origin: left;
	transform: scaleX(0);
}

@media (any-hover: hover) {
	.jinryu_plan_section .document_button:hover::before{
		transform: scaleX(1);
	}
}


.jinryu_plan_section .document_button_inner{
	position: relative;
	z-index: 1;
	height:48px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-inline: 64px;
}

.jinryu_plan_section .document_button_inner::before{
	content:'';
	width:16px;
	aspect-ratio: 1 / calc(22 / 16);
	background-image: url('../img/common/icon_document_blue.svg');
	position: absolute;
	top: 50%;
	left: 24px;
	transform: translateY(-50%);
}

.jinryu_plan_section .document_button .arrow{
	width:28px;
	height:36px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--base_blue);
	position: absolute;
	top: 50%;
	right:6px;
	transform: translateY(-50%);
}
.jinryu_plan_section .document_button .arrow::after{
	content:'';
	width:13px;
	aspect-ratio: 1 / calc(8 / 13);
	background-image: url('../img/common/icon_arrow_long_right_white.svg');
}

.jinryu_plan_section .button_remark{
	width: fit-content;
	margin-inline: auto;
	margin-top: 24px;
	font-size: 16px;
}

/*
------------------------------------
お問い合わせ
------------------------------------
*/

.contact_form_section{

}

.contact_form_section .wpcf7-response-output{
	color:#fff;
}
.contact_form_section .contact_area{
	position: relative;
	padding:120px 0;
}

.contact_form_section .contact_area::before{
	content:'';
	position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--base_blue);
}

.contact_form_section .contact_frame{
	position: relative;
	z-index: 1;
	max-width: 1000px;
	margin-inline: auto;
}


.contact_form_section .form_line{
	background-color: #fff;
	border-radius: 5px;
	padding:12px 40px;
	display: flex;
	align-items: flex-start;
}

.contact_form_section .form_line + .form_line{
	margin-top: 16px;
}

.contact_form_section .form_label{
	width:200px;
	flex-shrink: 0;
	padding-right: 8px;
	min-height: 40px;
	display: flex;
	align-items: center;
	gap:8px;
	font-weight: 500;
	line-height: 1.3;
	position: relative;
}


.contact_form_section .form_line:has([aria-required="true"]) .form_label::after,
.contact_form_section .form_line:has(.wpcf7-validates-as-required) .form_label::after,
.contact_form_section .form_line:has(input[type="radio"]) .form_label::after{
	content:'※必須';
	font-size: 12px;
	font-weight: 400;
	line-height: 1.3;
	color:#F00;

}
	

.contact_form_section .form_right{
	width:100%;
}

.contact_form_section .text_input{
	display: block;
	width:100%;
	height:40px;
	border:none;
	background: none;
	padding-inline: 12px;
	font-weight: 500;
}

.contact_form_section .text_input::placeholder,
.contact_form_section textarea::placeholder{
	color:var(--base_green);
	opacity: 0.5;
}

.contact_form_section .wpcf7-radio{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:16px 24px;
	padding-top: 6px;
}

.contact_form_section .wpcf7-list-item{
	margin: 0;
}

.contact_form_section .wpcf7-radio label{
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	min-height: 28px;
	padding:4px 16px;
	border-radius: 9999px;
	border:1px solid var(--base_color);
	line-height: 1.3;
	color:var(--base_color);
}

.contact_form_section .wpcf7-radio label input{
	display: none;
}

.contact_form_section .wpcf7-radio label:has(input:checked){
	background-color: var(--base_color);
	color:var(--base_color_text);
}

.contact_form_section textarea{
	width:100%;
	height:256px;
	border:none;
	background: none;
	padding: 8px 12px;
	font-size: 15px;
	font-weight: 700;
}

.contact_form_section .privacy_box{
	width: 100%;
	height:250px;
	overflow-y: auto;
	padding:12px 0;
	font-size: 14px;
	line-height: 1.5;
}

.contact_form_section .agree_area{
	width: fit-content;
    margin-inline: auto;
    margin-top: 16px;
}

.contact_form_section .agree_area label{
	display: flex;
	align-items: center;
	gap:24px;
	color:#fff;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.5;
	cursor: pointer;
	position: relative;
}

.contact_form_section .agree_area label input{
	display: none;
}

.contact_form_section .agree_area label::before{
	content:'';
	width:32px;
	height:32px;
	flex-shrink: 0;
	border-radius: 50%;
	background-color: #fff;
	border:1px solid var(--base_color);
}

.contact_form_section .agree_area label::after{
	content: '';
    width: 22px;
    height: 13px;
    background-image: url(../img/common/icon_check_blue.svg);
    position: absolute;
    top: 10px;
    left: 6px;
	opacity: 0;
}


.contact_form_section .agree_area label:has(input:checked)::before{
	/* background-color: var(--base_color); */
}
.contact_form_section .agree_area label:has(input:checked)::after{
	opacity: 1;
}

.contact_form_section .recaptcha_text {
    text-align: center;
    font-size: 13px;
    margin-top: 24px;
	color:#fff;
}

.contact_form_section .recaptcha_text a{
	border-bottom: 1px solid;
	color:#fff;
}

.contact_form_section .submit_area {
    margin-top: 40px;
    width: fit-content;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.contact_form_section .submit_frame{
	position: relative;
}

.contact_form_section .submit_frame::after{
	content:'';
	width:7px;
	height:13px;
	background-image: url('../img/common/icon_angle_right_blue.svg');
	position: absolute;
	right:32px;
	top:19px;
	pointer-events: none;
}

.contact_form_section .submit{
	width: 236px;
	height: 51px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 9999px;
	background-color: #fff;
	transition-duration: 0.4s;
	cursor: pointer;
	font-weight: 700;
	color:var(--base_blue);
	line-height: 1.2;
	border:none;
	font-size: 16px;
	letter-spacing: 0.05em;
}

@media(any-hover:hover){
	.contact_form_section .submit:hover{
		opacity: 0.7;
	}
}

.contact_section .complete_text01{
	font-size: 24px;
	text-align: center;
	margin-top: 40px;
}

.contact_section .complete_text02{
	width: fit-content;
	margin-inline: auto;
	margin-top: 24px;
	line-height: 1.75;
}

.contact_section .top_link{
	margin-inline: auto;
	margin-top: 24px;
}

/*
------------------------------------
404
------------------------------------
*/

.page404_section{

}

.page404_section .p01{
	font-size: 32px;
	text-align: center;
}

.page404_section .p02{
	width: fit-content;
	line-height: 1.75;
	margin-inline: auto;
	margin-top: 32px;
}

.page404_section .top_link{
	margin-inline: auto;
	margin-top: 24px;
}