@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

:root{
    --base_black: #303030;
    --base_blue: #0172DA;
    --base_font:'Noto Sans CJK JP' , 'Noto Sans JP'  ,sans-serif;
}


*{
	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);
	color:var(--base_black);
	-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_black);
	font-size: 16px;
	font-family: var(--base_font);
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: none;
	-webkit-text-size-adjust: none;
}

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

#body_wrap{
	overflow: clip;
}


a{
	color:var(--base_black);
}

.fax a{
	pointer-events: none;
}

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

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

.c_hover_opa{
	transition: 0.4s;
}


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

/*
------------------------------------
共通パーツ
------------------------------------
*/
.container{
	max-width: 1240px;
	padding-inline: 20px;
	margin-inline: auto;
}



.c_blue_button{
	width:300px;
	min-height: 50px;
	border-radius: 9999px;
	background-color: var(--base_blue);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	letter-spacing: 0.05em;
	color:#fff;
	position: relative;
}

.c_blue_button::after{
	content:'';
	width:7px;
	height:13px;
	background-image: url('../img/common/icon_angle_right_white.svg');
	position: absolute;
	top: 50%;
	right:24px;
	transform: translateY(-50%);
}

/*
------------------------------------
ヘッダー
------------------------------------
*/

header{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 100;
	background-color: #fff;
}

header .header_inner{
	padding-inline: 40px;
}

header .header_flex{
	min-height: 80px;
	padding:10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .header_logo{
	display: block;
	width:280px;
}

header .header_tel{
	display: flex;
	align-items: center;
	gap:8px;
	font-size: 32px;
	font-weight: 700;
	width: fit-content;
}

header .header_tel::before{
	content:'';
	width:30px;
	height:24px;
	background-image: url('../img/common/icon_tel_black.svg');
}

header .header_tel_time{

}


/*
------------------------------------
オプションページ
------------------------------------
*/

.c_info_section{
	margin-top: 72px;
	padding-top:36px;
	padding-bottom: 48px;
	background-color: var(--base_blue);
	color:#fff;
}

.c_info_section .sec_head{
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-align: center;
}

.c_info_section .info_flex{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:30px 6%;
	margin-top: 40px;
}

.c_info_section .info_left{
	/* flex-shrink: 0; */
	width:347px;
}

.c_info_section .info_img img{
	border-radius: 24px;
}

.c_info_section .info_right{
	max-width: 600px;
}


.c_info_section .info_head{
	font-weight: 700;
	letter-spacing: 0.05em;
}

.c_info_section .info_text{
	margin-top: 8px;
	line-height: 2;
	letter-spacing: 0.05em;
}

.c_info_section .info_button_list{
	margin-top: 48px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:20px;
}

.c_info_section .info_button{
	width:236px;
	min-height: 50px;
	padding:8px 24px;
	border-radius: 9999px;
	font-weight: 700;
	color:#fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.c_info_section .info_button::after{
	content:"";
	width:7px;
	height:13px;
	background-image: url('../img/common/icon_angle_right_white.svg');
}

.c_info_section .info_button.document{
	background-color: #7FB8EC;
}
.c_info_section .info_button.demo{
	border:1px solid #fff;
	background-color: var(--base_blue);
}
/*
-----------------------------------
フッター
------------------------------------
*/

footer{
	padding-top: 100px;
	padding-bottom: 24px;
}

footer .footer_contents{
	width: fit-content;
	margin-inline: auto;
}

footer .footer_catch01{
	font-size: 35px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

footer .footer_catch02{
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

footer .footer_button_list{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:36px;
	margin-top: 44px;
}

footer .footer_button_block p{
	font-size: 20px;
	font-weight: 700;
	text-align: center;
}

footer .footer_logo_list{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap:36px;
	margin-top: 80px;
}

footer .footer_logo01{
	width:265px;
}

footer .footer_logo02{
	width:120px;
}

footer .footer_logo03{
	width:385px;
}

footer .footer_address{
	margin-top: 24px;
	font-size: 14px;
	line-height: 1.7;
}

footer .footer_copy{
	margin-top: 40px;
	text-align: center;
	font-weight: 700;
}

/*
------------------------------------
トップ
------------------------------------
*/

.top_section{

}

.top_section .sec_head{
	text-align: center;
	font-size: 35px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.top_fv_section{

}

.top_fv_section .fv_inner{
	position: relative;
	/* min-height:100vh; */
	background-image: url('../img/top/fv_bg.jpg');
	padding-top: 160px;
	padding-bottom: 280px;
}

.top_fv_section .fv_text{
	width: 95%;
	max-width: 1135px;
	margin-inline: auto;
}

.top_fv_section .fv_chara{
	width:920px;
	max-width: 90%;
	aspect-ratio: 1 / calc(240 / 920);
	position: absolute;
	bottom:-12px;
	left:0;
	right:0;
	margin-inline: auto;
}

.top_fv_section .fv_chara img{
	width:100%;
	height:100%;
	object-fit: contain;
}

.top_about_section{
	padding-top: 130px;
}

.top_about_section .about_text{
	margin-top: 40px;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: center;
}

.top_about_section .button_flex{
	margin-top: 40px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:16px 40px;
}

.top_about_section .button{
	width:300px;
	min-height: 50px;
	border-radius: 9999px;
	background-color: var(--base_blue);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	letter-spacing: 0.05em;
	color:#fff;
	position: relative;
}

.top_about_section .button::after{
	content:'';
	width:7px;
	height:13px;
	background-image: url('../img/common/icon_angle_right_white.svg');
	position: absolute;
	top: 50%;
	right:24px;
	transform: translateY(-50%);
}

.top_manage_section{
	padding-top: 114px;
}

.top_manage_section .manage_text{
	margin-top: 24px;
	text-align: center;
	color:var(--base_blue);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.top_manage_section .manage_flex{
	display: flex;
	justify-content: center;
	gap:6px;
	margin-top: 112px;
}

.top_manage_section .manage_arrow{
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.top_manage_section .manage_arrow::after{
	content:'';
	width:35px;
	height:29px;
	background-image: url('../img/common/icon_arrow_right_blue.svg');
}

.top_manage_section .manage_box{
	width:445px;
	position: relative;
	border:3px solid var(--manage_color);
	
}

.top_manage_section .manage_box_inner{
	padding:36px 16px 20px;
}

.top_manage_section .manage_kind{
	position: absolute;
	left:0;
	bottom:100%;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.04em;
	color:var(--manage_color);
	z-index: 3;
}

.top_manage_section .manage_icon{
	width:161px;
	margin-inline: auto;
	aspect-ratio: 1 / calc(118 / 161);
	position: relative;
	display: block;
}

.top_manage_section .manage_icon::before{
	content:'';
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.top_manage_section .manage_list{
	margin-top: 32px;
	font-weight: 700;
	color:var(--manage_color);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap:10px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	width: fit-content;
	margin-inline: auto;
}

.top_manage_section .manage_list li{
	position: relative;
	padding-left: 16px;
	/* text-align: center; */
}

.top_manage_section .manage_list li::before{
	content:'・';
	font-weight: 700;
	color:var(--manage_color);
	line-height: 1.5;
	position: absolute;
	left:0;
	top:0;
}

.top_manage_section .manage_box.before{
	--manage_color:#807D7D;
}

.top_manage_section .manage_box.before .manage_icon::before{
	width:100%;
	height:100%;
	background-image: url('../img/top/manage_before.png');
}

.top_manage_section .manage_box.after{
	--manage_color:var(--base_blue);
}
.top_manage_section .manage_box.after .manage_icon::before{
	width:219px;
	height:164px;
	background-image: url('../img/top/manage_after.png');
	/* margin-top: -30px; */
}

.top_effect_section{
	padding-top: 80px;
}

.top_effect_section .effect_frame{
	max-width: 890px;
	margin-inline: auto;
	margin-top: 40px;
}

.top_service_section{
	margin-top: 80px;
}

.top_service_section .service_inner{

}

.top_service_section .service_head{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 110px;
	background-color: #17629B;
	color:#fff;
	padding:6px 10px;
	gap:4px;
}

.top_service_section .service_head_ja{
	font-size: 16px;
	font-weight: 400;
}

.top_service_section .service_head_en{
	font-size: 48px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.3em;
}

.top_service_section .service_list{
	display: flex;
}

.top_service_section .service_item{
	width:25%;
	display: flex;
	flex-direction: column;
	align-items: center;
	border-bottom:1px solid var(--base_black);
}

.top_service_section .service_item + .service_item{
	border-left:1px solid var(--base_black);
}

.top_service_section .service_icon{
	width:100%;
	height:340px;
	padding:16px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom:2px solid var(--base_black);
}

.top_service_section .service_name{
	height:270px;
	
}

.top_service_section .service_name img{
	height:100%;
	width:auto;
	max-width: 100%;
	object-fit: contain;
}

.top_service_section .service_info_area{
	/* height:100%; */
	padding:12px;
	min-height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.top_service_section .service_link{
	display: block;
	width: fit-content;
	margin-inline: auto;
	color: #133281;
	font-weight: 700;
}


.top_service_section .service_info_area ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:6px 40px;
}

.top_service_section .service_info_area ul:has(li:nth-child(7)){
	gap:6px 16px;
}

.top_service_section .service_info_area ul li{
	font-weight: 700;
	color:#133281;
}

.top_flow_section{
	padding-top: 80px;
}

.top_flow_section .flow_head{
	width: fit-content;
	margin-inline: auto;
	min-height: 64px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding:8px 32px;
	background-color: var(--base_blue);
	color: #FFF;
	text-align: center;
	font-size: 36px;
	font-weight: 700;
}

.top_flow_section .flow_text{
	margin-top: 64px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

.top_flow_section .flow{
	max-width: 1110px;
	margin-inline: auto;
	margin-top: 64px;
}

.top_flow_section .flow_info{
	max-width: 650px;
	margin-inline: auto;
	margin-top: 72px;
	line-height: 2;
	letter-spacing: 0.05em;
	text-align: center;
}

/*
------------------------------------
サービス紹介ページ
------------------------------------
*/

.service_section{
	color: #0A305B;
}

.service_section .sec_head{
	
	font-size: 48px;
	font-weight: 900;
	text-align: center;
	letter-spacing: 0.1em;
	position: relative;
	width: fit-content;
	margin-inline: auto;
	line-height: 1.2;
}

.service_fv_section{
	padding-top: 140px;

}

.service_fv_section .fv_inner{
	position: relative;
	padding-bottom: 40px;
}

.service_fv_section .fv_inner::before{
	content:'';
	width:100%;
	height:545px;
	background-image: url('../img/common/service_fv_bg.png');
	background-size: cover;
	background-position: top;
	position: absolute;
	bottom:0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.service_fv_section .page_title{
	font-size: 48px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.3em;
}

.service_fv_section .fv_deco{
	margin-top: 40px;
	height:526px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.service_fv_section .fv_deco img{
	width:auto;
	height:100%;
	max-width: 90%;
	object-fit: contain;
}


.service_guide_section{
	padding-top: 64px;
}

.service_guide_section .guide_contents{
	max-width: 1060px;
	margin-inline: auto;
	margin-top: 80px;
}

.service_guide_section .button_flex{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:24px;
	flex-wrap: wrap;
}

.service_guide_section .button{
	width: 236px;
    min-height: 50px;
    padding: 8px 24px;
    border-radius: 9999px;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service_guide_section .button::after {
    content: "";
    width: 7px;
    height: 13px;
    background-image: url(../img/common/icon_angle_right_white.svg);
}

.service_guide_section .button.demo {
    background-color: var(--base_blue);
}
.service_guide_section .button.document {
    background-color: #7FB8EC;
}

.service_guide_section .sec_head{
	margin: 0;
}

.service_guide_section .sub_head{
	margin-top: 24px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_guide_section .guide_text{
	margin-top: 24px;
	line-height: 2;
	letter-spacing: 0.05em;
}

.service_worry_section{
	padding-top: 96px;
}



.service_worry_section .worry_flex{
	/* width: fit-content; */
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:30px 6%;
	/* margin-inline: auto; */
	margin-top: 80px;
}

.service_worry_section .worry_left{
	width:222px;
}

.service_worry_section .worry_right{

}

.service_worry_section .worry_list li{
	display: flex;
	align-items: flex-start;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_worry_section .worry_list li + li{
	margin-top: 10px;
}

.service_worry_section .worry_list li .num{
	flex-shrink: 0;

}


.service_spec_section{
	padding-top: 120px;
}

.service_spec_section .guide_list{
	width: fit-content;
	margin-inline: auto;
	margin-top: 64px;
}

.service_spec_section .guide_list li{
	padding-left: 36px;
	counter-increment: cnt;
	position: relative;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_spec_section .guide_list li::before {
	content: counter(cnt)".";
	position: absolute;
	left:0;
	top:0;
	color:#0A305B;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_spec_section .guide_list li + li{
	margin-top: 12px;
}

.service_spec_section .spec_list{
	max-width: 1000px;
	margin-inline: auto;
	margin-top: 96px;
}


.service_spec_section .spec_item{
	display: flex;
	align-items: center;
	border: 3px solid #0A305B;
	padding:30px 0;
	padding-inline: 5%;
}

.service_spec_section .spec_item + .spec_item{
	margin-top: 18px;
}
.service_spec_section .spec_num{
	width: 21%;
	min-width: 170px;
	padding-right: 8px;
	color:#fff;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: #0A305B;
	font-size: 119px;
	font-weight: 900;
	line-height: 1;
}

.service_spec_section .spec_contents{
	
}

.service_spec_section .spec_head{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_spec_section .spec_text{
	margin-top: 12px;
	line-height: 2;
	letter-spacing: 0.05em;
	max-width: 620px;
}

.service_spec_section .spec_img{
	max-width: 868px;
	margin-inline: auto;
	margin-top: 80px;
}


.service_voice_section{
	padding-top: 200px;
	padding-bottom: 80px;
}

.service_voice_section .voice_flex{
	margin-top: 80px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap:40px;
	max-width: 1040px;
	margin-inline: auto;
}

.service_voice_section .voice_left{
	width:37%;
	flex-shrink: 0;
}

.service_voice_section .voice_right{
	width:100%;
}

.service_voice_section .voice_name{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.service_voice_section .voice_text{
	margin-top: 36px;
	line-height: 2;
	letter-spacing: 0.05em;
}



/*
------------------------------------
フォーム申し込み
------------------------------------
*/

.form_section{
	padding-top: 160px;
	padding-bottom: 80px;
}


.form_section .form_head{
	font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.form_section .thanks_text{
	display: flex;
    justify-content: center;
    text-align: center;
	margin-top: 24px;
}

.form_section .top_button{
	margin:24px auto 0;
}