@charset "UTF-8";

/* ----------------------------------------------------
 FJcloud-V トップページ
------------------------------------------------------ */
.main-contents {
	background: #eee;
}
.breadcrumb-wrapper {
	margin: 16px auto 12px;
}
.section .hdg-d {
	color: #000;
}
.section h2.hdg-d {
	font-size: 3.6rem;
}
.section h2.hdg-d + .lead {
	font-size: 2rem;
} 
.main-contents p a,
.main-contents dd a {
	color: #4e6abb;
	font-weight: 700;
	text-decoration: none;
}
.main-contents p a:hover,
.main-contents dd a:hover {
	text-decoration: underline;
}


/* ボタン */
.lyt-btn-style-a {
	display: flex;
}
.lyt-btn-style-b {
	margin-top: 40px;
	display: flex;
	justify-content: center;
}
.lyt-btn-style-b > *:nth-child(n+2) {
	margin-left: 24px;
}
@media only screen and (max-width: 1000px) {
	.lyt-btn-style-b {
		flex-direction: column;
		align-items: center;
	}
	.lyt-btn-style-b > *:nth-child(n+2) {
		margin-left: 0;
		margin-top: 24px;
	}
}
@media only screen and (max-width: 480px) {
	.lyt-btn-style-a > * {
		width: 100%;
	}
	.lyt-btn-style-b > * {
		width: 100%;
	}
}
.btn-style-1 {
	padding: 0 32px;
	display: flex;
	align-items: center;
	text-decoration: none !important;
	height: 48px;
	background: #fff;
	transition: background .2s;
}
.btn-style-1 .desc {
	margin-right: 24px;
	font-size: 1.7rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	color: #000;
	flex-grow: 1;
}
.btn-style-1:hover {
	background: #1f314e;
}
.btn-style-1:hover .desc {
	color: #fff;
}
.btn-style-1:hover svg path {
	stroke: #fff !important;
}
.btn-style-1.btn-dark {
	background: #1f314e;
	border: 1px solid #1f314e;
}
.btn-style-1.btn-dark .desc {
	font-weight: 400;
	color: #fff;
}
.btn-style-1.btn-dark:hover {
	background: #fff;
}
.btn-style-1.btn-dark:hover .desc {
	color: #1f314e;
}
.btn-style-1.btn-dark svg path {
	stroke: #fff !important;
}
.btn-style-1.btn-dark:hover svg path {
	stroke: #1f314e !important;
}

.btn-style-1.btn-light {
	background: transparent;
	border: 2px solid #fff;
}
.btn-style-1.btn-light .desc {
	font-weight: 400;
	color: #fff;
}
.btn-style-1.btn-light:hover {
	background: #fff;
}
.btn-style-1.btn-light:hover .desc {
	color: #1f314e;
}
.btn-style-1.btn-light svg path {
	stroke: #fff !important;
}
.btn-style-1.btn-light:hover svg path {
	stroke: #1f314e !important;
}

@media only screen and (max-width: 480px) {
	.btn-style-1 .desc {
		margin-right: 0;
		font-size: 1.6rem;
	}
}

.btn-style-2 {
	padding: 0 32px;
	display: flex;
	align-items: center;
	text-decoration: none !important;
	height: 94px;
	min-width: 474px;
	background: linear-gradient(135deg, #e50018 10%, #d70083 100%);
}
.btn-style-2 .desc {
	font-size: 2rem;
	line-height: 1.2;
	color: #fff;
	flex-grow: 1;
}
.btn-style-2 .desc strong {
	display: block;
	margin-top: 8px;
}
.btn-style-2.btn-dark {
	background: #1f314e;
}
.btn-style-2.btn-dark .desc {
	text-align: center;
	font-size: 2.4rem;
}
@media only screen and (max-width: 480px) {
	.btn-style-2 {
		padding: 12px 16px;
		min-height: auto;
		min-width: auto;
		width: 100%;
	}
	.btn-style-2 .desc {
		font-size: calc(16vw*100/375);
	}
	.btn-style-2.btn-dark .desc {
		font-size: calc(20vw*100/375);
	}
}
.btn-style-2 > .icon {
	position: relative;
	margin-left: 4px;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}
@media only screen and (max-width: 480px) {
	.btn-style-2 > .icon {
		width: 48px;
		height: 48px;
	}
}
.btn-style-2 .icon svg {
	fill: #fff;
	position: absolute;
	top: 0;
	left:0
}
.btn-style-2 .icon svg .circle {
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin:center
}
.btn-style-2 .icon svg .arrow {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform .3s ease-in-out;
	transition: -webkit-transform .3s ease-in-out;
	-o-transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition:transform .3s ease-in-out, -webkit-transform .3s ease-in-out
}
a.btn-style-2:hover .icon::before {
	opacity:.1
}
a.btn-style-2:hover .icon svg .arrow {
	-webkit-animation: arrow 1.5s forwards ease-in-out;
	animation:arrow 1.5s forwards ease-in-out
}
a.btn-style-2:hover .icon svg.circle {
	fill: transparent;
	-webkit-animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation:circle 2s forwards cubic-bezier(.215, .61, .355, 1)
}
a.btn-style-2:hover .icon::before {
	opacity: .1;
	-webkit-animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation:arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1)
}
a.btn-style-2:hover .icon svg .arrow {
	-webkit-animation: arrow 1.5s forwards ease-in-out;
	animation:arrow 1.5s forwards ease-in-out
}
a.btn-style-2:hover .icon svg .circle {
	fill: transparent;
	-webkit-animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
	animation:circle 2s forwards cubic-bezier(.215, .61, .355, 1)
}
@keyframes arrow_bg {
	0% {
		opacity:.1
	}

	100% {
		opacity:0
	}
}
@keyframes arrow {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform:translateX(0)
	}
	10% {
		opacity: 0;
		-webkit-transform: translateX(50%);
		transform:translateX(50%)
	}
	25% {
		opacity: 0;
		-webkit-transform: translateX(-50%);
		transform:translateX(-50%)
	}
	40% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform:translateX(0)
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform:translateX(0)
	}
}
@keyframes circle {
	0% {
		stroke-dasharray: 0 300;
		-webkit-transform: rotate(0);
		transform:rotate(0)
	}
	10% {
		stroke-dasharray:50 100
	}
	20% {
		stroke-dasharray:100 200
	}
	30% {
		stroke-dasharray:150 300
	}
	40% {
		stroke-dasharray:200 300
	}
	60% {
		stroke-dasharray: 300 300;
		-webkit-transform: rotate(360deg);
		transform:rotate(360deg)
	}
}





/* ローカルナビ
----------------------------------------------- */
/* ショートカットナビゲーション PC */
.nav-a::before {
	display: none;
}
.nav-a {
	background: #1f314e;
	z-index: 201;
}
.nav-a > .nav-a-inner > ul {
	position: relative;
	margin-left: auto;
	width: auto;
}
.nav-a > .nav-a-inner > ul > li > a {
	padding: 21px 21px;
	position: relative;
	color: #fff;
}
.nav-a > .nav-a-inner > ul > li:hover > a {
	color: #61a7f8;
}
.nav-a > .nav-a-inner > ul > li > a span {
	position: relative;
	vertical-align: baseline;
}
.nav-a > .nav-a-inner > ul > li:not(:last-child):hover > a span::before {
	display: block;
	position: absolute;
	content: "";
	bottom: -2px;
	margin: auto;
	height: 2px;
	width: 100%;
	background: #61a7f8;
}
.nav-a > .nav-a-inner > ul > li::before,
.nav-a > .nav-a-inner > ul > li::after {
	display: none;
}
.nav-a > .nav-a-inner > ul > li > a::after {
	display: block;
	position: absolute;
	content: "";
	top: 50%;
	right: -1px;
	width: 1px;
	height: 20px;
	margin-top: -10px;
	background: #fff;
}
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) > a::after,
.nav-a > .nav-a-inner > ul > li:nth-last-child(2) > a::after {
	display: none;
}
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) > a {
	padding: 11px 0 11px;
	box-sizing: border-box;
}
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) > a > span {
	padding: 17px 29px 14px;
	color: #1f314e;
	font-size: 1.7rem;
	font-weight: 700;
	line-height: 1;
	background-color: #fff;
	transition: .2s;
}
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) > a:hover > span {
	color: #61a7f8;
	background-color: #fff;
}
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) a:hover, 
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) a:active,
.nav-a > .nav-a-inner > ul > li:nth-last-child(1) a:focus {
	color: inherit;
	background-color: inherit;
}
.nav-a > .nav-a-inner > ul > li.is-current a {
	font-weight: inherit;
}
.nav-a > .nav-a-inner > ul > li > ul {
	display: none;
	width: auto;
	position: absolute;
	padding: 8px 16px;
	top: 80%;
	left: 21px;
	background: #fff;
	border-radius: 6px;
	z-index: 202;
}
.nav-a > .nav-a-inner > ul > li:hover > ul {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	animation-name: show;
	animation-duration: 0.2s;
}
.nav-a > .nav-a-inner > ul > li > ul > li {
	width: 100%;
	text-align: left;
	white-space: nowrap;
}
.nav-a > .nav-a-inner > ul > li > ul > li::before,
.nav-a > .nav-a-inner > ul > li > ul > li::after {
	display: none;
}
.nav-a > .nav-a-inner > ul > li > ul > li:first-child {
	margin-bottom: 8px;
	font-size: 1.3rem;
	color: #4f5e70;
}
.nav-a > .nav-a-inner > ul > li > ul > li > a {
	padding: 0;
	color: #000;
}
.nav-a > .nav-a-inner > ul > li > ul > li > a:hover {
	color: #61a7f8;
}
.nav-a > .nav-a-inner > ul > li > ul > li:nth-child(n+3) {
	position: relative;
	padding-top: 16px;
}
.nav-a > .nav-a-inner > ul > li > ul > li:nth-child(n+3)::before {
	display: block;
	position: absolute;
	content: "";
	top: 8px;
	left: 0;
	margin: auto;
	height: 1px;
	width: 100%;
	background: rgba(79, 94, 112, 0.48);
}
.nav-a > .nav-a-inner > ul > li > ul > li > a:hover {
	background: #fff !important;
}
@keyframes show{
	from{
		opacity: 0;
		transform: translateY(-50px);
	}
	to{
		opacity: 1;
		transform: translateY(0);
	}
}

/* ストラクチャーナビゲーション TB SP */
.nav-structure-a > .menu-btn {
	color: #fff !important;
	background: #23304c;
	border: 1px solid #23304c;
}
.nav-structure-a.is-close > .menu-btn::before {
	background: linear-gradient(#fff,#fff 2px,transparent 2px,transparent 6px,#fff 6px,#fff 8px,transparent 8px,transparent 12px,#fff 12px);
}
.nav-structure-a > .menu-btn:hover, 
.nav-structure-a > .menu-btn:active,
.nav-structure-a > .menu-btn:focus {
	color: #61a7f8 !important;
	background: #23304c;
}
.nav-structure-a.is-open > .menu-btn::before,
.nav-structure-a.is-open > .menu-btn::after {
	background: #fff;
}
.nav-structure-a > ul > li a {
	border-bottom: 1px solid #c6c6c0;
	background: #fff;
}
.nav-structure-a > ul > li a::before {
	border-top: 2px solid #23304c;
	border-right: 2px solid #23304c;
}
.nav-structure-a > ul > li.is-open > a {
	background: #23304c;
}

@media only screen and (min-width: 1001px) {
	.section.pc-none {
		display: none !important;
	}
}
@media only screen and (max-width: 1000px) {
	.section.pc-none .section-inner {
		padding: 0 16px 10px !important;
		background: #fff;
	}
}
@media only screen and (max-width: 767px) {
	.section.pc-none .section-inner {
		padding: 0 !important;
	}
	.nav-structure-a {
		padding: 0;
	}
	.nav-structure-a > ul {
		margin-top: 0;
	}
	.nav-structure-a > .menu-btn {
		padding: 11px 46px 11px 16px;
	}
}

/* ヒーローエリア
----------------------------------------------- */
/* GIG5.1 Image Banner コンポーネント */
.lf-hero-a {
	display: flex;
	max-height: 450px;
	position: relative;
	overflow: hidden;
}
.lf-hero-a::after {
	content: "";
	display: block;
	width: 440px;
	height: 350px;
	margin-left: -200px;
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translateY(50%);
	font-size: 0vw;
}
.lf-hero-contents {
	display: flex;
	width: 50%;
	color: #fff;
	align-items: center;
	justify-content: flex-end;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: left bottom;
}
.lf-hero-visual {
	width: 50%;
	height: 450px;
	position: relative;
	overflow: hidden;
}
.lf-hero-visual img {
	width: 100%;
	height: auto;
	min-width: 100%;
	max-width: none;
	max-width: initial;
	min-height: 100%;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.lf-hero-contents-inner {
	width: 365px;
	margin-right: 275px;
}
.lf-hero-hdg {
	-webkit-font-feature-settings: "palt";
	font-feature-settings: "palt";
	font-size: 4.5rem;
	/* font-family: FujitsuInfinityPro-Bold,Arial,Verdana,Lucida Grande,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","ヒラギノ角ゴ Pro W3",sans-serif; */
	line-height: 1.3;
	font-weight: 700;
	min-height: 0vw;
	width: 100%;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.lf-hero-sub {
	font-weight: 700;
}
.lf-hero-sub + .lf-hero-hdg {
	margin-top: 10px !important;
}
.lf-hero-desc {
	margin-top: 10px;
	font-size: 1.6rem;
}
.lf-hero-btns {
	margin-top: 1em !important;
}
.lf-hero-btns a {
	display: inline-block;
	padding: .8125em .8125em .8125em 3.75em;
	color: inherit;
	text-decoration: none;
	position: relative;
	line-height: 1.5;
}
.lf-hero-btns a::before,
.lf-hero-btns a::after {
	content: "";
	display: block;
	position: absolute;
}
.lf-hero-btns a::before {
	width: 50px;
	height: 50px;
	border: 1px solid;
	border-radius: 50%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.lf-hero-btns a::after {
	width: 16px;
	height: 16px;
	border-top: 1px solid;
	border-right: 1px solid;
	left: 12px;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.lf-hero-badge {
	position: absolute;
	right: calc((100% - 1264px)/2);
	bottom: 16px;
	padding: 4px 8px;
	background: rgba(0,0,0,.7);
	color: #fff;
	font-weight: 700;
}
.lf-hero-badge.lf-diff-black {
	background: rgba(255,255,255,.8);
	color: #000;
}
.breadcrumb-wrapper + #main .lf-hero-a {
	margin-top: 16px;
}

/* for global custom css */
.lf-hero-hdg,
.lf-hero-btns a {
	color: inherit !important;
}

/* symbol pattern */
.lf-hero-a.lf-bl-cy::after {
	background-image: url(/solutions/cloud/fjcloud/-v/images/top/lf-blue.png);
}

/* background pattern */
.lf-hero-a.lf-bl-cy .lf-hero-contents {
	background-image: url(/solutions/cloud/fjcloud/-v/images/top/lf-bgg-bl-cy.png);
}

@media only screen and (max-width:1600px) {
	.lf-hero-visual img {
		width: auto;
		right: 50%;
		transform: translateX(50%) translateY(-50%);
	}
}
@media only screen and (max-width:1280px) {
	.lf-hero-a::after {
		width: calc(440vw*100/1280);
		height: calc(350vw*100/1280);
		margin-left: calc(-200vw*100/1280);
	}
	.lf-hero-visual img {
		height: 100%;
	}
	.lf-hero-contents-inner {
		width: 100%;
		margin-right: calc(275vw*100/1280);
		padding-left: 8px;
	}
	.lf-hero-hdg {
		font-size: calc(45vw*100/1280);
	}
	.lf-hero-sub,
	.lf-hero-desc {
		font-size: 1.4rem;
	}
	.lf-hero-btns a::before {
		width: 42px;
		height: 42px;
	}
	.lf-hero-btns a::after {
		width: 12px;
		height: 12px;
		left: 12px;
	}
	.lf-hero-badge {
		right: 8px;
	}
}
@media only screen and (max-width:1000px) {
	.lf-hero-a {
		max-height: calc(450vw*100/1000);
	}
	.lf-hero-contents-inner {
		padding-left: 16px;
	}
	.lf-hero-visual {
		height: calc(450vw*100/1000);
	}
}
@media only screen and (max-width:767px) {
	.lf-hero-a {
		flex-direction: column;
		max-height: none;
		max-height: initial;
	}
	.lf-hero-a::after {
		width: calc(336vw*100/767);
		height: calc(266vw*100/767);
		margin-left: calc(-144vw*100/767);
		bottom: calc(83vw*100/767);
		z-index: 1;
		transform: none;
	}
	.lf-hero-contents {
		display: block;
		width: 100%;
	}
	.lf-hero-visual {
		width: 100%;
		height: 0;
		padding-top: 56.25%;
	}
	.lf-hero-visual::before {
		content: "";
		display: block;
		width: 50%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: rgba(0,0,0,.5);
		z-index: 1;
	}
	.lf-hero-visual img {
		top: 0;
		right: 50%;
		transform: translateX(50%);
	}
	.lf-hero-contents-inner {
		margin-right: 0;
		padding: 20px 16px;
	}
	.lf-hero-hdg {
		font-size: 3.5rem;
	}
	.lf-hero-badge {
		right: 16px;
	}
}

/* カスタマイズ */
.breadcrumb-wrapper + #main .lf-hero-a {
	margin-top: 0;
}
.lf-hero-contents-inner {
	margin-right: 0;
}

.lf-hero-hdg {
	font-size: 7rem;
	line-height: 1.4;
}
.lf-hero-desc {
	margin-top: 0;
	margin-bottom: 24px;
	font-size: 3rem;
	line-height: 1.333;
	font-weight: 700;
}
.lf-hero-a {
	position: relative;
	max-height: inherit;
	z-index: 0;
}
.lf-hero-visual {
	padding-top: calc(486 / 1280 * 100%);
}
.lf-hero-hdg + .lyt-btn-style-a {
	margin-top: 90px;
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
	.lf-hero-hdg + .lyt-btn-style-a {
		margin-top: 30px;
	}
}
.lf-hero-hdg + .lyt-btn-style-a > * span {
	display: block;
	margin-bottom: 10px;
	font-size: 2.3rem;
	font-weight: 700;
}
@media only screen and (min-width: 1281px) {
	.lf-hero-contents-inner {
		width: 640px;
	}
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
	.lf-hero-hdg {
		font-size: calc(70vw*100/1280);
	}
	.lf-hero-desc {
		font-size: calc(30vw*100/1280);
	}
	.lf-hero-hdg + .lyt-btn-style-a > * span {
		font-size: calc(23vw*100/1000);
	}
}
@media only screen and (max-width: 1600px) {
	.lf-hero-visual img {
		height: 120%;
	}
}
@media only screen and (max-width: 767px) {
	.lf-hero-hdg {
		font-size: 6rem;
	}
	.lf-hero-desc {
		margin-bottom: 0;
		font-size: 2.6rem;
	}
	.lf-hero-hdg + .lyt-btn-style-a > * span {
		font-size: 2rem;
	}
	.lf-hero-hdg + .lyt-btn-style-a {
		margin-top: 24px;
	}
	.lf-hero-visual {
		padding-top: 56.25%;
	}
	.lf-hero-visual img {
		height: 142%;
		transform: translateX(50%) translateY(-5%);
	}
}
@media only screen and (max-width: 480px) {
	.lf-hero-hdg {
		font-size: calc(40vw*100/375);
	}
	.lf-hero-desc {
		font-size: calc(21vw*100/375);
	}
	.lf-hero-hdg + .lyt-btn-style-a > * span {
		font-size: calc(18vw*100/375);
	}
	.lf-hero-hdg + .lyt-btn-style-a {
		margin-top: 24px;
	}
}


/* Fjcloud-vの価値
----------------------------------------------- */
.section#value {
	position: relative;
}
.section#value .panel-group {
	margin-top: -130px;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}
.section#value .panel-group > * {
	padding: 20px 20px 110px;
	width: 23.5%;
	display: flex;
	flex-direction: column;
	background: #fff;
}
.section#value .panel-group > * > h2 {
	font-size: 3rem;
}
.section#value .panel-group > * > .title {
	margin-bottom: 46px;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
}
.section#value .panel-group > * > h2,
.section#value .panel-group > * > .title {
	color: #fd6400;
}
.section#value .panel-group > *:nth-child(2) > h2,
.section#value .panel-group > *:nth-child(2) > .title {
	color: #E4017B;
}
.section#value .panel-group > *:nth-child(3) > h2,
.section#value .panel-group > *:nth-child(3) > .title {
	color: #4E6ABB;
}
.section#value .panel-group > *:nth-child(4) > h2,
.section#value .panel-group > *:nth-child(4) > .title {
	color: #009C51;
}
.section#value .panel-group > * > .desc {
	line-height: 1.6;
}
.section#value .panel-group > * > .visual {
	padding: 0 16px;
	margin: 24px 0 40px;
	min-height: 0%;
}
@media only screen and (max-width: 1280px) {
	.section#value .panel-group {
		margin-top: auto;
	}
}
@media only screen and (max-width: 1000px) {
	.section#value .panel-group {
		flex-wrap: wrap;
	}
	.section#value .panel-group > * {
		padding: 20px 20px 20px;
		width: calc(50% - 12px);
	}
	.section#value .panel-group > *:nth-child(n+3) {
		margin-top: 24px;
	}
}
@media only screen and (max-width: 480px) {
	.section#value .panel-group > * {
		width: 100%;
	}
	.section#value .panel-group > *:nth-child(n+2) {
		margin-top: 24px;
	}
}


/*スタートガイド
----------------------------------------------- */
.section.start-guide .section-inner {
	padding-top: 84px !important;
	padding-bottom: 20px !important;
}
.section.start-guide + .section {
	background: url(/solutions/cloud/fjcloud/-v/images/top/fj_grad_e4b_rgb.png) no-repeat center center /cover;
}
.section.start-guide + .section .section-inner {
	padding-top: 56px !important;
	padding-bottom: 70px !important;
}
.section.start-guide + .section .lay2col {
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.section.start-guide + .section .lay2col > * {
	width: 38%;
}
.section.start-guide + .section .lay2col .visual {
	text-align: center;
}
.section.start-guide + .section .lay2col .text {
	color: #fff;
}
.section.start-guide + .section .lay2col .text h3 {
	margin-bottom: 20px;
	font-size: 2.6rem;
}
.section.start-guide + .section .lay2col .text .list-a {
	font-size: 2rem;
}
.section.start-guide + .section .lay2col .text .list-a>  li:before {
	background: #fff;
}
@media only screen and (max-width: 1000px) {
	.section.start-guide + .section .lay2col {
		justify-content: space-between;
	}
	.section.start-guide + .section .lay2col > * {
		width: 48%;
	}
}
@media only screen and (max-width: 767px) {
	.section.start-guide .section-inner {
		padding-top: 40px !important;
	}
	.section.start-guide + .section .lay2col {
		flex-direction: column;
	}
	.section.start-guide + .section .lay2col > * {
		width: 100%;
	}
	.section.start-guide + .section .lay2col .text {
		margin-top: 20px;
	}
}
@media only screen and (max-width: 480px) {
	.section.start-guide + .section {
		background: url(/solutions/cloud/fjcloud/-v/images/top/fj_grad_e4b_rgb.png) no-repeat right bottom /cover;
	}
	.section.start-guide + .section .section-inner {
		padding-top: 30px !important;
		padding-bottom: 30px !important;
	}
	.section.start-guide + .section .lay2col .text h3 {
		font-size: calc(24vw*100/375);
	}
}


/*よくある質問
----------------------------------------------- */
.section.faq .section-inner {
	padding-top: 156px !important;
	padding-bottom: 150px !important;
}
.section.faq .box-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}
.section.faq dl {
	width: calc(50% - 11px);
	padding: 34px;
	background: #fff;
	display: flex;
	flex-direction: column;
}
.section.faq dl:first-child {
	width: 100%;
}
.section.faq dl:nth-child(n+2) {
	margin-top: 22px;
}
.section.faq dt {
	margin-bottom: 30px;
	font-size: 2.5rem;
	font-weight: 700;
}
.section.faq dd {
	font-size: 1.5rem;
}
@media only screen and (max-width: 1280px) {
	.section.faq dt br {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.section.faq .section-inner {
		padding-top: 60px !important;
		padding-bottom: 48px !important;
	}
	.section.faq dl {
		width: 100%;
		padding: 24px;
	}
	.section.faq dl .dn-sp {
		display: none;
	}
}
@media only screen and (max-width: 480px) {
	.section.faq dt {
		font-size: calc(20vw*100/375);
	}
}


/* トライアル
----------------------------------------------- */
.section.trial {
	margin-bottom: 150px !important;
}

.section.trial .section-inner {
	padding-top: 80px !important;
	background: #fff;
}
.section.trial .narrow {
	max-width: 1000px;
	margin: 80px auto 0;

}
.section.trial .lay2col {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.section.trial .lay2col .text {
	width: 60%;
}
.section.trial .lay2col .text h3 {
	margin-top: 0;
	font-size: 2.8rem;
}
.section.trial .lay2col .visual {
	width: 37.4%;
}
.section.trial .lyt-btn-style-b {
	flex-wrap: wrap;
	justify-content: flex-start;
}
.section.trial .lyt-btn-style-b > *:nth-child(n+2) {
	margin-left: 0;
	margin-top: 36px;
}
.section.trial .diff-color {
	margin-bottom: 20px;
	font-size: 1.7rem;
	color: #ea0000;
}
.section.trial .mute {
	margin: 40px 0 100px;
	font-size: 2rem;
	color: #707070;
}
.section.trial .lyt-movie-a {
	max-width: none;
	width: 100%;
	position: relative;
	padding-top: 56.25%;
}
.section.trial .lyt-movie-a iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100% !important;
	border: 0;
}
@media only screen and (max-width: 1000px) {
	.section.trial .narrow {
		margin: 40px auto 0;
	}
	.section.trial .lay2col {
		flex-direction: column-reverse;
	}
	.section.trial .lay2col .text {
		width: 100%;
	}
	.section.trial .lay2col .visual {
		margin-bottom: 30px;
		width: 100%;
		text-align: center;
	}
}
@media only screen and (max-width: 767px) {
	.section.trial {
		margin-bottom: 60px !important;
	}
	.section.trial .section-inner {
		padding-top: 60px !important;
	}
}
@media only screen and (max-width: 480px) {
	.section.trial .narrow {
		margin: 20px auto 0;
	}
	.section.trial .diff-color {
		font-size: 1.6rem;
	}
	.section.trial .lay2col .text h3 {
		font-size: calc(20vw*100/375);
	}
	.section.trial .mute {
		margin: 20px 0 60px;
		font-size: calc(16vw*100/375);
	}
	.section.trial .lyt-btn-style-b > *:nth-child(n+2) {
		margin-top: 20px;
	}
}


/* 導入事例
----------------------------------------------- */
.home-section-case .lyt-btn-style-b {
	margin-top: 60px;
}
@media only screen and (max-width: 480px) {
	.home-section-case .lyt-btn-style-b {
		padding: 0 16px;
	}
}

/* お知らせ・キャンペーン
----------------------------------------------- */
.section#info {
	margin-top: 60px;
}
.section#info .section-inner {
	padding: 60px 90px 54px;
	background: #fff;
}
.section#info h2.hdg-b {
	font-size: 3.6rem;
	padding-bottom: 0;
}
.section#info h2.hdg-b::before{
	display: none;
}
.list-news-a .news-content  {
	font-size: 2rem;
}
.section#info .icon-ctg-a {
	background: #1f314e;
	min-width: 112px;
	border-radius: 100vh;
}

.section#info .lyt-btn-a {
	display: none;
}
.section#info + .section .section-inner {
	padding-top: 0 !important;
	padding-bottom: 40px !important;
	background: #fff;
}
@media only screen and (max-width: 1000px) {
	.section#info .section-inner {
		padding: 60px 16px 54px;
	}
}

@media only screen and (max-width: 767px) {
	.section#info {
		margin-top: 0;
	}
	.section#info .list-news-a .news-content {
		font-size: 1.6rem;
	}
}
@media only screen and (max-width: 480px) {
	.section#info h2.hdg-b {
		font-size: 2.4rem;
	}
}


/* お問い合わせ
----------------------------------------------- */
.section.contact {
	margin-top: 150px;
	background: #1f314e;
}
.section.contact .section-inner {
	padding-top: 50px !important;
	padding-bottom: 50px !important;
}
.section.contact h2.hdg-d {
	margin-bottom: 46px;
	font-size: 3rem;
	color: #fff;
}
.section.contact .lyt-contact {
	display: flex;
	justify-content: space-between;
}
.section.contact .lyt-contact > * {
	width: calc(50% - 20px);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section.contact .lyt-contact > * a {
	width: 100%;
	padding: 40px 16px;
	margin-bottom: 20px;
	background: #fff;
	color: #1f314e;
	font-size: 2.8rem;
	font-weight: 700;
	text-decoration: none;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	transition: 0.2s;
}
.section.contact .lyt-contact > * a:hover {
	color: #61a7f8;
}
.section.contact .lyt-contact > * a h3 {
	margin-bottom: 10px;
	font-size: 2.8rem;
}
.section.contact .lyt-contact > * a .contact-inner {
	display: flex;
	align-items: center;
}
.section.contact .lyt-contact > * a .contact-inner span {
	margin-left: 10px;
	font-size: 4.6rem;
	line-height: 1;
}
.section.contact .lyt-contact > * a .contact-inner span small {
	font-size: 2rem;
}
.section.contact .lyt-contact .notes {
	font-weight: 700;
}
@media only screen and (max-width: 1280px) {
	.section.contact .lyt-contact .notes {
		font-size: 1.4rem;
		font-weight: 400;
		height: 3em;
	}
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
	.section.contact .lyt-contact > * a {
		font-size: calc(24vw*100/768);
	}
	.section.contact .lyt-contact > * a h3 {
		font-size: calc(18vw*100/768);
	}
	.section.contact .lyt-contact > * a .contact-inner {
		align-items: flex-start;
	}
	.section.contact .lyt-contact > * a .contact-inner span {
		font-size: calc(36vw*100/768);
	}
	.section.contact .lyt-contact > * a .contact-inner span small {
		margin-top: 10px;
		display: block;
		font-size: 1.6rem;
	}
}
@media only screen and (max-width: 767px) {
	.section.contact h2.hdg-d {
		margin-bottom: 46px;
		font-size: 2rem;
	}
	.section.contact .lyt-contact {
		flex-direction: column;
	}
	.section.contact .lyt-contact > * {
		width: 100%;
	}
	.section.contact .lyt-contact > *:last-child {
		margin-top: 20px;
	}
	.section.contact .lyt-contact > * a {
		margin-bottom: 8px;
		font-size: 2.4rem;
	}
	.section.contact .lyt-contact > * a h3 {
		font-size: 1.8rem;
	}
	.section.contact .lyt-contact > * a .contact-inner span {
		font-size: 3.6rem;
	}
	.section.contact .lyt-contact > * a .contact-inner span small {
		font-size: 1.6rem;
	}
	.section.contact .lyt-contact .notes {
		height: auto;
	}
}
@media only screen and (max-width: 480px) {
	.section.contact .lyt-contact > * a {
		padding: 20px 16px;
		font-size: calc(24vw*100/375);
	}
	.section.contact .lyt-contact > * a h3 {
		font-size: calc(17vw*100/375);
	}
	.section.contact .lyt-contact > * a .contact-inner {
		align-items: flex-start;
	}
	.section.contact .lyt-contact > * a .contact-inner svg {
		width: 20px;
	}
	.section.contact .lyt-contact > * a .contact-inner span {
		padding-top: 1px;
		margin-left: 4px;
		font-size: calc(36vw*100/375);
	}
	.section.contact .lyt-contact > * a .contact-inner span small {
		margin-top: 10px;
		display: block;
		font-size: 1.4rem;
	}
	.section.contact .lyt-contact .notes {
		font-size: 1.3rem;
	}
}


















