@charset "UTF-8";

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

body {
	min-width: 1240px;
	color: #333333;
	font-size: 14px;
	line-height: 1.75;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	outline: none;
	margin: 0;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

.inner {
	max-width: 1430px;
	margin: 0 auto;
	padding: 0 40px;
}

.vis-hidden {
	display: block;
	visibility: visible;
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 4px;
	height: 4px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: none;
}

.vis-sp,
.vis-tb {
	display: none;
}

p {
	font-weight: 500;
}

a {
	transition-duration: 0.5s;
}


/* header */

.header_cnt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 33px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10000;
	width: 100%;
	/* background-color: #fff; */
	transition-duration: 0.5s;
}

.header_logo {
	/* margin-bottom: 15px; */
}

.header_cnt.-white {
    background-color: #fff;
}

.c_nav ul {
	display: flex;
	align-items: center;
	gap: 20px;
}

.c_nav ul li a {
	color: #007EDF;
	font-weight: bold;
}

.c_nav ul li a:hover {
	opacity: 0.8;
}

.c_nav_btn.-material a {
	color: #007EDF;
	background-color: #fff;
	border: solid 1px #007EDF;
	border-radius: 8px;
	padding: 10px 14px;
}

.c_nav_btn.-contact a {
	color: #fff;
	background-color: #007EDF;
	border-radius: 8px;
	padding: 10px 14px;
}

.open_nav {
	position: relative;
}

.open_nav span {
	display: block;
	transition-duration: 0.5s;
	width: 25px;
	height: 2px;
	background-color: #007EDF;
	border-radius: 10px;
}

.open_nav span:nth-child(1) {
	transform: translateY(-5px);
}
.open_nav span:nth-child(3) {
	transform: translateY(5px);
}

.open_nav.-open span:nth-child(1) {
	transform: rotate(45deg);
	position: absolute;
	top: 0;
}

.open_nav.-open span:nth-child(2) {
	opacity: 0;
}

.open_nav.-open span:nth-child(3) {
	transform: rotate(-45deg);
	position: absolute;
	top: 0;
}


/* g_nav_sp */

.g_nav {
	width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background-color: #fff;
    z-index: 1000;
	padding: 109px 50px 0;
	display: none;
    overflow: scroll;
}

.g_nav ul li {
	color: #007EDF;
	margin-bottom: 20px;
	font-weight: bold;
}

.g_nav ul li a {
	font-size: 18px;
}


/* footer */

.footer {
	padding: 71px 0 36px;
	background: linear-gradient(to top, #E4F2FB, #F5FBFF);
}

.footer .inner {
	max-width: 1430px;
}

.ft_contact_icon {
	text-align: center;
	margin-bottom: 10px;
}

.ft_contact_ttl {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

.ft_contact .btn_more {
	width: 300px;
	margin-top: 0px;
}

.footer_nav_row {
	background-color: #001738;
	border-radius: 15px;
	padding: 78px 95px 50px;
	margin-bottom: 20px;
}

.footer_nav_row_list {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 20px;
	margin-bottom: 50px;
}

.footer_nav_row_list ul li {
	margin-bottom: 10px;
}

.footer_nav_row_list ul li a {
	color: #fff;
	font-weight: bold;
}

.footer_nav_row_list .login {
	color: #fff;
	padding: 12px 74px;
	border: solid 1px #fff;
	border-radius: 9px;
	transition-duration: 0.5s;
	font-weight: bold;
}

.footer_nav_row_list .login:hover {
	color: #001738;
	background-color: #fff;
}

.copy {
	text-align: center;
	font-weight: normal;
	font-size: 13px;
}


/* hero */

.hero_more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    border-radius: 12px;
    padding: 27px 21px;
    background: linear-gradient(to right bottom, #3DC0FF, #007EDF);
}

.hero_more p {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
}

.hero_more a {
    color: #007EDF;
    background-color: #fff;
    padding: 12px 33px 12px 11px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: bold;
    line-height: 20px;
    position: relative;
}

.hero_more a::after {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(/img/cmn/icon-download_blue.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    shape-image-threshold: 5%;
    right: 3%;
    bottom: 30%;
}

/* section */

.section_ttl {
	font-size: 35px;
	font-weight: bold;
	line-height: 50px;
}

.section_ttl.-small {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 14px;
	color: #000;
}


/* line */


.line {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

.line span {
    width: 30px;
    height: 6px;
}

.line span:nth-child(1) {
    background-color: #007EDF;
}

.line span:nth-child(2) {
    background-color: #FA529D;
}



/* bnt_more */

.btn_more {
    color: #fff;
    background-color: #000;
    border-radius: 6px;
    width: 300px;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_more:hover {
    opacity: 0.8;
}

.btn_more::after {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(/img/cmn/icon-arrow_white.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

/* point */

.point_diagram {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.16);
    padding: 50px 18px;
    position: relative;
}

.point_diagram.-no2 {
    padding-bottom: 185px;
}

.point_diagram_intro {
    font-size: 16px;
    color: #909090;
    margin-bottom: 33px;
}

.point_diagram_cnt {
    padding: 0 30px;
}

.diagram_ttl {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    line-height: 40px;
}

.diagram_ttl::before {
    content: '';
    width: 7px;
    height: 100%;
    background: #007EDF;
    position: absolute;
    left: 0;
    top: 0;
}

.diagram_txt {
    margin-bottom: 40px;
}

.diagram_img {
    text-align: center;
}

.person {
    position: absolute;
    transform: translateX(50%);
    right: 50%;
    bottom: 0;
}

.pattern {
    background: #F5FBFF;
    border-radius: 17px;
    margin-bottom: 25px;
    padding: 25px;
}

.pattern_ttl {
    margin-bottom: 60px;
}

.pattern_ttl span {
    color: #fff;
    background: #FA529D;
    padding: 5px 10px;
    margin-right: 10px;
    border-radius: 30px;
}



/* service */


.service_list_popup {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
	background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(21px);
	z-index: 10000;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.service_list_popup.show {
    display: flex; /* フェードイン時にflexを適用 */
    opacity: 1; /* 不透明度を1にして表示 */
}

.service_list_popup_cnt {
	/* padding: 128px 64px; */
    background-color: #fff;
    margin: 0 auto;
	width: 100%;
    max-width: 820px;
    border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}

.service_list_popup_cnt_img {
	background: linear-gradient(to right, #E4F2FB, #F5FBFF);
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
	height: 540px;
    width: 272px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service_list_popup_cnt_img img {
	width: 100%;
	height: auto;
	max-width: 150px;
}

.service_list_popup_sentence {
	flex: 1;
	padding: 0 57px;
}

.service_list_popup_ttl {
	color: #007EDF;
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 25px;
	line-height: 30px;
}

.service_list_popup_txt {
	font-weight: 500;
	font-size: 16px;
	margin-bottom: 68px;
}

.service_list_popup_cnt_link {
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: center;
}

.service_list_popup_cnt_link a {
	width: 100%;
	padding: 10px 20px;
	font-size: 15px;
	font-weight: bold;
	border-radius: 6px;
	position: relative;
}

.service_list_popup_cnt_link a:hover {
	opacity: 0.8;
}

.service_list_popup_cnt_link .btn_popup_consul {
	color: #fff;
	background-color: #001738;
}

.service_list_popup_cnt_link .btn_popup_consul::after {
	content: '';
	width: 25px;
	height: 25px;
	background-image: url(/img/cmn/icon-arrow_white.svg);
	background-size: cover;
	position: absolute;
	right: 5%;
	transform: translateY(50%);
	bottom: 50%;
}

.service_list_popup_cnt_link .btn_popup_download {
	color: #001738;
	border: solid 1px #001738;
}

.service_list_popup_cnt_link .btn_popup_download::after {
	content: '';
	width: 25px;
	height: 25px;
	background-image: url(/img/cmn/icon-download_black.svg);
	background-size: cover;
	position: absolute;
	right: 5%;
	top: 25%;
}

.btn_close {
	position: absolute;
    top: -8%;
    right: -5%;
    z-index: 10;
}

.btn_close:hover {
	cursor: pointer;
}




/* contact */

.contact_cnt {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.contact_cnt li {
    background-color: #fff;
    border-radius: 15px;
    padding: 42px 30px 30px;
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 370px;
    height: 360px;
}

.contact_cnt li:nth-child(2) a::after {
    background-image: url(/img/cmn/icon-download.svg);
}

.contact_cnt li img {
    margin-bottom: 10px;
}

.footer .contact_cnt {
	margin-bottom: 40px;
}

.footer .contact_cnt li {
	width: 100%;
	max-width: 440px;
}


/* solution */

/* solution */

.solution .inner {
    max-width: 1350px;
}

.solution_body {
    background-color: #fff;
    border-radius: 15px;
    padding: 90px 56px;
    margin-bottom: 86px;
}

.solution_ttl {
    margin-bottom: 30px;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #3DC0FF, #003F70);
    background: -webkit-linear-gradient(-80deg, #3DC0FF, #003F70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.solution_cnt {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 43px;
}

.solution_cnt_row::before {
    content: '';
    width: 84px;
    height: 16px;
    background-image: url(/img/cmn/icon-line_structure_small.svg);
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
}

.solution_cnt_row.-left::before {
    right: -26%;
    top: 32%;
}

.solution_cnt_row.-right::before {
    left: -26%;
    top: 32%;
    transform: rotate(180deg);
}

.solution_cnt_row.-center::before {
    content: none;
}

.solution_cnt_row.-bottom::before {
    transform: rotate(-90deg) translateX(50%);
    right: 47%;
    top: -1%;
}

.solution_cnt_row.-left,
.solution_cnt_row.-right {
    width: 320px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 34px 20px;
    position: relative;
    z-index: 10;
}

.solution_cnt_row.-bottom {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    padding: 34px 20px;
    position: relative;
    z-index: 10;
}

.solution_cnt_row.-center {
    margin-top: 360px;
}

.solution_cnt_row.-center img {
    position: absolute;
    transform: translateX(50%);
    right: 50%;
    bottom: 40%;
    z-index: 0;
}

.solution_cnt_row_ttl {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}

.solution_cnt_row.-left ul li {
    background-color: #E4F2FB;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
}

.solution_cnt_row.-right ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.solution_cnt_row.-right ul li {
    background-color: #E4F2FB;
    border-radius: 10px;
    height: 100px;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    text-align: center;
}

.step {
    margin-bottom: 50px;
}

.step_ttl {
    font-size: 16px;
    font-weight: bold;
    background: #E4F2FB;
    border-radius: 15px;
    width: 100%;
    padding: 13px 20px;
    margin-bottom: 33px;
}

.step_ttl .blue {
    font-family: 'Montserrat', serif;
    font-size: 17px;
    color: #007EDF;
    font-weight: bold;
    margin-right: 20px;
}

.step_img {
    text-align: center;
}

.kind {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.kind_head {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
    padding: 9px 15px;
    background-color: #F5FBFF;
    border: solid 1px #007EDF;
    line-height: 24px;
}

.kind_txt {
    color: #007EDF;
    font-size: 16px;
    font-weight: bold;
}

.kind_txt span {
    font-size: 87px;
    line-height: 142px;
    font-family: 'Montserrat', serif;
}


/* btn_download */

.btn_download {
    color: #fff;
    background-color: #000;
    border-radius: 6px;
    width: 300px;
    padding: 15px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn_download:hover {
    opacity: 0.8;
}

.btn_download::after {
    content: '';
    width: 25px;
    height: 25px;
    background-image: url(/img/cmn/icon-download.svg);
    background-size: cover;
    background-repeat: no-repeat;
}


/* pnkz */
.pnkz {
	padding-bottom: 70px;
	position: relative;
	border-radius: 0 0 70px 70px;
	background-color: #fff;
}

.pnkz::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: #F5FBFF;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.pnkz .inner {
	max-width: 1240px;
}

.pnkz_cnt {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 15px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: solid 1px #BABABA;
}

.pnkz_cnt span {
	display: block;
	height: 1em;
	width: 1px;
	background-color: #000;
	transform: rotate(15deg);
}

@media screen and (max-width:1435px) {
    .c_nav ul li a {
        font-size: 12px;
    }
}

@media screen and (max-width:1240px) {
	.vis-tb {
		display: block;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width:767px) {
	body {
		min-width: 0;
	}

	.inner {
		padding: 0 24px;
	}

	.vis-sp {
		display: block;
	}

	.hide-sp {
		display: none;
	}

	/* header */

	.header_cnt {
		padding: 10px 20px;
	}
	
	.header_logo {
		width: 60%;
		margin-bottom: 0px;
	}

	.c_nav_btn.-material {
		margin-right: -20px;
		margin-bottom: 30px;
	}


	/* footer */

	.info {
        padding-top: 1px;
    }

    .ft_contact_ttl {
        font-size: 25px;
    }
	

	.footer_nav_row {
		padding: 36px 34px;
	}

	.footer_nav_row_list {
		flex-flow: column;
		gap: 0;
		margin-bottom: 15px;
	}

	.contact_cnt {
		flex-flow: column;
	}


	/* hero */

	.hero_more {
		flex-flow: column;
		padding: 27px 10px;
	}

	.hero_more a {
		padding: 12px 27px 12px 11px;
	}

	.hero_more p {
		text-align: center;
	}



	/* section */
	
	.section_ttl {
		font-size: 25px;
		line-height: 40px;
	}


	/* service */

	.service_list_popup.show {
		padding: 0 20px;
	}

	.service_list_popup_cnt {
		flex-flow: column;

	}

	.service_list_popup_cnt_img {
		height: 100%;
		width: 100%;
	}

	.service_list_popup_cnt_img img {
		width: 40%;
	}

	.service_list_popup_cnt_img {
		border-radius: 15px 15px 0 0;
		padding: 30px;
	}

	.service_list_popup_sentence {
		padding: 20px 24px;
	}

	.service_list_popup_ttl {
		margin-bottom: 10px;
	}

	.service_list_popup_txt {
		margin-bottom: 15px;
	}

	.point_diagram {
        padding: 30px 18px;
    }

	.point_diagram_cnt {
		padding: 0px;
	}

	.pattern {
        padding: 20px 15px;
    }

	.pattern_ttl span {
        margin-right: 5px;
    }

	.point_diagram_cnt .pattern:nth-child(2) {
		margin-bottom: 0px;
	}

	.diagram_ttl {
        font-size: 20px;
        line-height: 30px;
    }


	/* solution */

    .solution_body {
        padding: 50px 25px;
    }
    
    .solution_cnt {
        flex-flow: column;
    }

    .solution_cnt_row.-left, .solution_cnt_row.-right {
        width: 100%;
    }

    .solution_cnt_row.-left {
        margin-bottom: 20px;
    }

    .solution_cnt_row.-center {
        margin-top: 0px;
    }

    .solution_cnt_row.-center img {
        position: unset;
        transform: unset;
    }

    .kind_txt span {
        font-size: 77px;
    }

    .solution_cnt_row.-right ul li {
        width: 47%;
    }

    .solution_cnt_row::before {
        content: none;
    }

    .step {
        margin-bottom: 30px;
    }

    .step_ttl {
        font-size: 14px;
        margin-bottom: 20px;
    }

	.btn_close {
		top: -5%;
		right: -17%;
	}

	.btn_close img {
		width: 50%;
	}
}

@media print {
}
