@charset "utf-8";
/* グローバル
------------------------------------- */
.ftt-cloudpartner *,
.ftt-cloudpartner *::before,
.ftt-cloudpartner *::after {
	box-sizing:border-box;
}
.ftt-cloudpartner img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
.ftt-cloudpartner a {
	color: #000;
	text-decoration: underline;
	transition: color .2s;
}
.ftt-cloudpartner a:hover, .ftt-cloudpartner a:active, .ftt-cloudpartner a:focus {
	text-decoration: none;
}
/* mt
---------------------------------------------------- */
.mt-0 {
	margin-top: 0!important;
}
/* 強制改行
---------------------------------------------------- */
.ftt-cloudpartner br.d-pc {
	display: block;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner br.d-pc {
		display: none;
	}
}
@media only screen and (min-width: 768px) {
	.ftt-cloudpartner br.d-sp {
		display: none;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner br.d-sp {
		display: block;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner br.d-none-sp {
		display: none;
	}
}
/* text-align
---------------------------------------------------- */
.ftt-cloudpartner .center {
	text-align: center;
}
.ftt-cloudpartner .right {
	text-align: right;
}
/* ボタン
---------------------------------------------------- */
.ftt-cloudpartner .lyt-btn {
	display: flex;
	justify-content: center;
	margin-top: 80px;
	margin-bottom: -16px;
	margin-left: -16px;
	text-align: center;
	flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .lyt-btn {
		margin-top: 20px;
	}
}
.ftt-cloudpartner .lyt-btn.flex-start {
	justify-content: flex-start;
}
.ftt-cloudpartner .lyt-btn.column {
	flex-direction: column;
	align-items: flex-start;
}
.ftt-cloudpartner .lyt-btn > * {
	padding: 0 0 16px 16px;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .lyt-btn > * {
		width: 100%;
	}
}
.ftt-cloudpartner a.btn {
	position: relative;
	font-size: 1rem;
	text-decoration: none;
	text-align: center;
	min-width: 300px;
	border-radius: 100vh;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 24px;
	min-height: 70px;
	color: #000;
	background: rgba(255, 255, 255, 1);
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner a.btn {
		min-width: auto;
	}
}
.ftt-cloudpartner a.btn > .desc {
	font-weight: 700;
	flex-grow: 1;
}
.ftt-cloudpartner a.btn > .icon {
	position: relative;
	margin-left: 10px;
	display: inline-block;
	width: 40px;
	height: 40px;
	vertical-align: middle;
}
.ftt-cloudpartner a.btn .icon::before {
	position: absolute;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 1px solid #5f5f5f;
	opacity: 0;
	z-index: 0;
}
.ftt-cloudpartner a.btn .icon svg {
	fill: #5f5f5f;
	position: absolute;
	top: 0;
	left: 0;
}
.ftt-cloudpartner a.btn .icon svg .arrow {
	fill: #bcbcbc;
}
.ftt-cloudpartner a.btn .icon svg .circle {
	width: 100%;
	height: 100%;
	transform-origin: center;
	fill: #fff;
	stroke: #bcbcbc;
	stroke-width: 1px;
}
.ftt-cloudpartner a.btn .icon svg .arrow {
	transform: translateX(0);
	transition: -webkit-transform .3s ease-in-out;
	transition: transform .3s ease-in-out;
	transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
}
.ftt-cloudpartner a:hover .btn .icon::before {
	opacity: .1;
}
.ftt-cloudpartner a.btn:hover .icon::before {
	opacity: .1;
	animation: arrow_bg 2s forwards cubic-bezier(.215, .61, .355, 1);
}
.ftt-cloudpartner a.btn:hover .icon svg .arrow {
	animation: arrow 1.5s forwards ease-in-out;
}
.ftt-cloudpartner a.btn:hover .icon svg .circle {
	fill: #fff;
	stroke: #bcbcbc;
	stroke-width: 1;
	animation: circle 2s forwards cubic-bezier(.215, .61, .355, 1);
}
/* パターン グラデーション */
.ftt-cloudpartner a.btn.btn-bgrad {
	color: #fff;
	background-image: linear-gradient(90deg, rgba(36, 69, 187, 1), rgba(110, 227, 236, 1));
}
.ftt-cloudpartner a.btn.btn-bgrad .icon svg .arrow {
	fill: #4732b7;
}
.ftt-cloudpartner a.btn.btn-bgrad .icon svg .circle {
	stroke: #fff;
}
.ftt-cloudpartner a.btn.btn-bgrad:hover .icon svg .circle {
	stroke: #fff;
}
/* パターン 透過 */
.ftt-cloudpartner a.btn.btn-trans {
	color: #fff;
	background: none;
	border: 1px solid #fff;
}
.ftt-cloudpartner a.btn.btn-trans .icon svg .circle {
	stroke: #fff;
}
.ftt-cloudpartner a.btn.btn-trans:hover .icon svg .circle {
	stroke: #fff;
}
@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);
	}
}
/* タイポグラフィ
---------------------------------------------------- */
.ftt-cloudpartner .em-wide {
	letter-spacing: 0.05em;
}
.ftt-cloudpartner .em-wide-b {
	font-weight: 700;
	letter-spacing: 0.05em;
}
.ftt-cloudpartner h2 {
	font-size: 2rem;
	line-height: 1.2;
	margin-bottom: 32px;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner h2 {
		font-size: 1.5rem;
	}
}
.ftt-cloudpartner h3 {
	font-size: 1.625rem;
	line-height: 1.2;
	margin-bottom: 16px;
}
.ftt-cloudpartner p + h3 {
	margin-top: 32px;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner h3 {
		font-size: 1.25rem;
	}
}
.ftt-cloudpartner p {
	font-size: 1rem;
}
.ftt-cloudpartner .hdg-b {
	position: relative;
	margin: 52px 0 26px;
	padding-bottom: 18px;
	line-height: 1.4;
	color: #000;
	display: flex;
}
.ftt-cloudpartner .hdg-b > * {
	position: relative;
	font-weight: 700;
	text-align: center;
}
.ftt-cloudpartner .hdg-b > *::before {
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 100%;
	height: 3px;
	background: #000;
	content: "";
}
.ftt-cloudpartner .hdg-b.diff-center {
	justify-content: center;
}
.ftt-cloudpartner .hdg-d.diff-center {
	text-align: center;
}
.ftt-cloudpartner .diff-color-a {
	color: #790b17;
}
/* セクション
---------------------------------------------------- */
.ftt-cloudpartner .section-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 0 64px;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .section-inner {
		padding: 56px 8px 64px;
	}
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section-inner {
		padding: 56px 16px 64px;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section-inner {
		padding: 40px 16px 48px;
	}
}
.ftt-cloudpartner .section-inner > *:first-child,
.ftt-cloudpartner .section-inner > *.hdg-b-wrapper:first-child > .hdg-b {
	margin-top: 0;
}
.ftt-cloudpartner .section-inner > *:last-child {
	margin-bottom: 0;
}
.ftt-cloudpartner .section-inner > *:last-child {
	margin-bottom: 0;
}
.ftt-cloudpartner .section + .section .section-inner {
	padding-top: 0;
}
.ftt-cloudpartner .section + .section.diff-important .section-inner {
	padding-top: 0;
}
.ftt-cloudpartner .section + .section[class*=diff-bg-] .section-inner {
	padding-top: 56px;
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section + .section[class*=diff-bg-] .section-inner {
		padding-top: 40px;
	}
}
.ftt-cloudpartner .section[class*="diff-bg-"] + .section:not([class*="diff-bg-"]) .section-inner {
	padding-top: 56px;
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section[class*="diff-bg-"] + .section:not([class*="diff-bg-"]) .section-inner {
		padding-top: 40px;
	}
}
.ftt-cloudpartner .section[class*="diff-bg-"] + .section:not([class*="diff-bg-"]).diff-important .section-inner {
	padding-top: 28px;
}
.ftt-cloudpartner .section.diff-bg-a {
	background: #ddd;
}
.ftt-cloudpartner .section.diff-bg-a + .diff-bg-a .section-inner {
	padding-top: 0;
}
.ftt-cloudpartner .section.diff-bg-b {
	background: #fff;
}
.ftt-cloudpartner .section.diff-bg-b + .diff-bg-b .section-inner {
	padding-top: 0;
}
.ftt-cloudpartner .section.diff-bg-c {
	background: #f3f3f3;
}
.ftt-cloudpartner .headline + .section .section-inner {
	padding: 28px 0 64px;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .headline + .section .section-inner {
		padding: 28px 8px 64px;
	}
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .headline + .section .section-inner {
		padding: 28px 16px 64px;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .headline + .section .section-inner {
		padding: 20px 16px 48px;
	}
}
.ftt-cloudpartner .order-here .section-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 56px 0 56px;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .order-here .section-inner {
		padding: 56px 8px 56px !important;
	}
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .order-here .section-inner {
		padding: 56px 16px 56px !important;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .order-here .section-inner {
		padding: 40px 16px 40px !important;
	}
}
/* コンポーネント
------------------------------------- */
/* リンクリスト */
.ftt-cloudpartner .list-link-a {
	position: relative;
	display: flex;
	justify-content: center;
}
.ftt-cloudpartner .list-link-a > li > a {
	position: relative;
	display: inline-block;
	padding: 0 35px;
	text-decoration: none;
	font-size: 1rem;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .list-link-a > li > a {
		padding: 0 16px;
	}
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .list-link-a {
		justify-content: flex-start;
		flex-wrap: wrap;
	}
	.ftt-cloudpartner .list-link-a > li > a {
		padding: 4px 16px;
	}
}
.ftt-cloudpartner .list-link-a > li a:hover, .ftt-cloudpartner .list-link-a > li a:active, .ftt-cloudpartner .list-link-a > li a:focus {
	color: #57564f;
	text-decoration: underline;
}
/* 非順列リスト（装飾） */
.ftt-cloudpartner .list-a {
	padding-left: 20px;
	margin-top: 20px;
}
.ftt-cloudpartner .list-a.diff-indent {
	padding-left: 0;
}
@media only screen and (max-width:767px) {
	.ftt-cloudpartner .list-a {
		padding-left: 0;
	}
}
.ftt-cloudpartner .list-a + *:not([class^="hdg-"]):not([class*=" hdg-"]) {
	margin-top: 34px;
}
@media only screen and (max-width:480px) {
	.ftt-cloudpartner .list-a + *:not([class^="hdg-"]):not([class*=" hdg-"]) {
		margin-top: 28px;
	}
}
.ftt-cloudpartner .list-a + p, .list-a + [class^=list-], .list-a + [class*=" list-"] {
	margin-top: 28px !important;
}
.ftt-cloudpartner .list-a > li + li {
	margin-top: 12px;
}
.ftt-cloudpartner .list-a > li > ul {
	margin-top: 12px !important;
}
.ftt-cloudpartner .list-a > li {
	position: relative;
	padding-left: 17px;
	font-size: 18px;
}
.ftt-cloudpartner .list-a > li:before {
	position: absolute;
	top: .65em;
	left: 0;
	display: block;
	width: 6px;
	height: 6px;
	background: #87867e;
	border-radius: 50%;
	content: "";
}
@media only screen and (max-width:480px) {
	.ftt-cloudpartner .list-a > li:before {
		top: .5em;
	}
}
/* Feature Story タイプB/背景あり カスタマイズ */
.ftt-cloudpartner .hero-area {
	position: relative;
	overflow: hidden;
	min-height: 580px;
	max-height: 580px;
	background: url(/image/ftt-cloudpartner-keyvisual) no-repeat right center /cover;
}
@media only screen and (max-width: 1920px) {
	.ftt-cloudpartner .hero-area {
		background: url(/image/ftt-cloudpartner-keyvisual) no-repeat right 40% center /cover;
	}
}
@media only screen and (max-width: 1024px) {
	.ftt-cloudpartner .hero-area {
		min-height: 420px;
		max-height: 420px;
		background: url(/image/ftt-cloudpartner-keyvisual) no-repeat right 42% center /cover;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .hero-area {
		min-height: auto;
		max-height: none;
		height: 860px;
		background: url(/image/ftt-cloudpartner-keyvisual-sp) no-repeat center bottom /767px;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area {
		height: calc(484vw * 100 / 375);
		background: url(/image/ftt-cloudpartner-keyvisual-sp) no-repeat center bottom /cover;
	}
}
@media only screen and (max-width: 374px) {
	.ftt-cloudpartner .hero-area {
		height: calc(570vw * 100 / 320);
	}
}
.ftt-cloudpartner .hero-area .content {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding-top: 73px;
}
@media only screen and (max-width: 1024px) {
	.ftt-cloudpartner .hero-area .content {
		padding-top: 20px;
	}
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .hero-area .content .content-inner {
		padding: 0 16px;
	}
}
.ftt-cloudpartner .hero-area .content .main-txt {
	margin-bottom: 8px;
}
@media only screen and (max-width: 480px) {
}
.ftt-cloudpartner .hero-area .content .main-txt > * {
	display: inline-block;
	font-weight: 700;
	font-size: 4rem;
	color: #fff;
	line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
	.ftt-cloudpartner .hero-area .content .main-txt > * {
		font-size: 2.375rem;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area .content .main-txt > * {
		font-size: 1.5rem;
	}
}
.ftt-cloudpartner .hero-area .content .sub-txt > * {
	display: inline-block;
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
	line-height: 1.6;
}
@media only screen and (max-width: 1024px) {
	.ftt-cloudpartner .hero-area .content .sub-txt > * {
		font-size: 1.25rem;
		line-height: 1.4;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area .content .sub-txt > * {
		font-size: 1rem;
	}
}
@media only screen and (min-width:768px) and (max-width: 1280px) {
	.ftt-cloudpartner .hero-area .lyt-btn {
		margin-top: 20px;
		flex-direction: column;
		align-items: flex-start;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .hero-area .lyt-btn > * {
		flex-grow: 1;
		width: auto;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area .lyt-btn {
		margin-top: 10px;
	}
	.ftt-cloudpartner .hero-area .lyt-btn > * {
		width: auto;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .hero-area a.btn {
		min-width: auto;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area a.btn {
		padding: 6px 4px 6px 14px;
		min-height: auto;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .hero-area a.btn > .desc {
		font-size: 0.8125rem;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .hero-area a.btn > .desc {
		font-size: 0.75rem;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner a.btn > .icon {
		margin-left: 4px;
		width: 30px;
		height: 30px;
	}
}
/* ページ内リンク */
.ftt-cloudpartner .section.page-link .section-inner {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}
/* FTTクラウドパートナー */
.ftt-cloudpartner .section.diff-bg-c.what-is h2 + p {
	font-size: 1.125rem;
	line-height: 1.6;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * {
	width: 28.9065%;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col {
		flex-wrap: wrap;
	}
	.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * {
		width: 100%;
	}
	.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > *:not(:first-child) {
		margin-top: 30px;
	}
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * .img-wrap {
	position: relative;
	background: #fff;
	border-radius: 100vh;
	padding: 17.2973%;
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * .img-wrap {
		width: 80%;
		margin: 0 auto;
	}
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * .badge {
	position: absolute;
	top: 5.6%;
	left: 5.6%;
	width: 19.459%;
	height: 19.459%;
	background: #1e11a9;
	border-radius: 100vh;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.6rem;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lay-3col > * h3 {
	margin-top: 20px;
	font-size: 1.125rem;
	line-height: 1.5;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lyt-img {
	margin-top: 70px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lyt-img > .img-wrap {
	padding: 32px;
	background: #fff;
}
.ftt-cloudpartner .section.diff-bg-c.what-is .lyt-img > .caption {
	margin-top: 24px;
}
/* FTTクラウドパートナーご紹介までの流れ */
.ftt-cloudpartner .section.flow h2 + p {
	font-size: 1.125rem;
	line-height: 1.6;
}
.ftt-cloudpartner .section.flow .lay-3col {
	margin-top: 70px;
	display: flex;
	justify-content: space-between;
}
.ftt-cloudpartner .section.flow .lay-3col > * {
	width: 29.6875%;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .section.flow .lay-3col > * {
		width: 32%;
	}
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section.flow .lay-3col {
		flex-wrap: wrap;
	}
	.ftt-cloudpartner .section.flow .lay-3col > * {
		width: 100%;
	}
	.ftt-cloudpartner .section.flow .lay-3col > *:not(:first-child) {
		margin-top: 30px;
	}
}
.ftt-cloudpartner .section.flow .lay-3col > * p {
	margin-top: 18px;
}
/* パートナー一覧 */
.ftt-cloudpartner .section.diff-bg-c.partner-list {
	background: url(/image/ftt-cloudpartner-bg) no-repeat center bottom /cover;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group {
	display: flex;
	flex-wrap: wrap;
	margin: 70px 0 0 -28px;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * {
	width: 25%;
	position: relative;
	padding: 0 0 48px 28px;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * {
		width: 33.333%;
	}
}
@media only screen and (max-width: 768px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * {
		width: 50%;
	}
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * {
		width: 100%;
	}
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card {
	padding: 20px 16px 60px;
	background: #fff;
	display: flex;
	flex-direction: column;
	position: relative;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .img-wrap {
	text-align: center;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card a {
	text-decoration: none;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card h3 {
	margin-top: 32px;
	font-size: 1.125rem;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card h3 span {
	padding-right: 15px;
	font-weight: 700;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card h3 .icon {
	margin-left: -12px;
	vertical-align: 0.05em;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card p:last-of-type {
	margin-bottom: 10px;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card .figure {
	margin-top: auto;
	display: flex;
	align-items: center;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card .figure dt {
	flex-shrink: 0;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card .figure dd {
	padding-left: 16px;
	flex-grow: 1;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .card-group > * .card .figure dd small {
	display: block;
	font-size: 0.75rem;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-content {
	position: relative;
	overflow: hidden;
	max-height: 400px;
	display: flex;
	flex-grow: 1;
	transition: 0.5s;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-content {
		max-height: 380px;
	}
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-content::before {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	content: "";
	height: 70px;
	background: #fff;
	z-index: 1;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-label {
	display: inline-block;
	position: relative;
	margin: -40px 0 0 20px;
	z-index: 2;
	color: #555;
	cursor: pointer;
	width: auto;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-label::before {
	content: "詳細を見る";
	margin-left: 30px;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-label::after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 1px;
	left: 0;
	margin: auto;
	width: 26px;
	height: 25px;
	background: url(/image/ftt-cloudpartner-icon-more);
	background-size: cover;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check{
	display: none !important;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check:checked ~ .readmore-label {
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check:checked ~ .readmore-label::before {
	content: "閉じる";
	margin-left: 30px;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check:checked ~ .readmore-label::after {
	display: inline-block;
	content: "";
	position: absolute;
	top: 0;
	bottom: 1px;
	left: 0;
	margin: auto;
	width: 26px;
	height: 25px;
	background: url(/image/ftt-cloudpartner-icon-close);
	background-size: cover;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check:checked ~ .readmore-content {
	max-height: 200vh;
	transition: 0.5s;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .readmore-check:checked ~ .readmore-content::before {
	display: none;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .section-inner > h3 {
	margin: 120px 0 36px;
}
@media only screen and (min-width: 481px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .section-inner > h3 {
		font-size: 2rem;
	}
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box {
	max-width: 1000px;
	margin: 5rem auto 0;
	padding: 0;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box a {
	text-decoration: none;
	display: block;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box h3 {
	line-height: 1.5;
}
@media only screen and (min-width: 481px) {
	.ftt-cloudpartner .section.diff-bg-c.partner-list .box h3 {
		font-size: 1.75rem;
	}
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box .c-btn {
	margin-top: 26px;
	justify-content: center;
	color: #000;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box .c-btn-ico::before {
	border: 1px solid #000;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box .c-btn-ico svg {
	fill: #000;
}
.ftt-cloudpartner .section.diff-bg-c.partner-list .box .c-btn-ico svg .circle {
	stroke: #000;
}
/* 利用者様の声 */
.ftt-cloudpartner .section.reviews .panel-group {
	margin-top: 46px;
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 787px) {
	.ftt-cloudpartner .section.reviews .panel-group {
		flex-direction: column;
	}
}
.ftt-cloudpartner .section.reviews .panel-group > .panel {
	width: 47.3437%;
	border: 2px solid #2400b0;
}
@media only screen and (max-width: 1280px) {
	.ftt-cloudpartner .section.reviews .panel-group > .panel {
		width: 49%;
	}
}
@media only screen and (max-width: 768px) {
	.ftt-cloudpartner .section.reviews .panel-group > .panel {
		width: 100%;
	}
}
.ftt-cloudpartner .section.reviews .panel-group > .panel:nth-child(2) {
	border: 2px solid #008224;
}
@media only screen and (max-width: 768px) {
	.ftt-cloudpartner .section.reviews .panel-group > .panel:nth-child(2) {
		margin-top: 20px;
	}
}
.ftt-cloudpartner .section.reviews .panel-group .panel h3 {
	padding: 10px;
	background: rgba(36, 0, 176, 1);
	color: #fff;
	font-size: 2rem;
	text-align: center;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.reviews .panel-group .panel h3 {
		font-size: 1.25rem;
	}
}
.ftt-cloudpartner .section.reviews .panel-group .panel:nth-child(2) h3 {
	background: rgba(0, 130, 36, 1);
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl {
	padding: 18px 36px 18px 18px;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.reviews .panel-group .panel dl {
		padding: 10px;
	}
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:nth-of-type(2) {
	flex-direction: row-reverse;
}
.ftt-cloudpartner .section.reviews .panel-group .panel dt {
	position: relative;
	flex-shrink: 0;
	text-align: center;
	color: #293477;
	font-size: 0.875rem;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.reviews .panel-group .panel dt {
		width: 100px;
		font-size: 0.75rem;
	}
}
.ftt-cloudpartner .section.reviews .panel-group .panel dt::before {
	position: absolute;
	content: "";
	width: 16px;
	height: 30px;
	top: 0;
	bottom: 0;
	right: 6px;
	margin: auto;
	clip-path: polygon(0 50%, 100% 100%, 100% 0);
	background: #f3f3f3;
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:nth-of-type(2) dt::before {
	right: auto;
	left: -6px;
	transform: rotate(180deg)
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:last-of-type dt::before {
	background: rgba(36, 0, 176, 0.55);
}
.ftt-cloudpartner .section.reviews .panel-group .panel:nth-child(2) dl:last-of-type dt::before {
	background: rgba(0, 130, 36, 0.75);
}
.ftt-cloudpartner .section.reviews .panel-group .panel dt span {
	display: block;
	margin-top: 4px;
}
.ftt-cloudpartner .section.reviews .panel-group .panel dd {
	padding: 20px;
	margin-left: -6px;
	flex-grow: 1;
	background: #f3f3f3;
	border-radius: 16px;
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:nth-of-type(2) dd {
	margin-left: 14px;
	margin-right: 6px;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.reviews .panel-group .panel dl:nth-of-type(2) dd {
		margin-left: 0;
	}
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:last-of-type dd {
	background: rgba(36, 0, 176, 0.55);
}
.ftt-cloudpartner .section.reviews .panel-group .panel:nth-child(2) dl:last-of-type dd {
	background: rgba(0, 130, 36, 0.75);
}
.ftt-cloudpartner .section.reviews .panel-group .panel dl:last-of-type dd p {
	font-size: 1.25rem;
	color: #fff;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.reviews .panel-group .panel dl:last-of-type dd p {
		font-size: 1rem;
	}
}
/* FTTクラウドパートナーに相談する */
.ftt-cloudpartner .section.diff-bg-a.cta {
	background: linear-gradient(90deg, rgb(36, 0, 176), rgb(0, 231, 239));
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta {
		background: linear-gradient(180deg, rgb(36, 0, 176), rgb(0, 231, 239));
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta .section-inner {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta .section-inner {
		padding-top: 20px;
		padding-bottom: 40px;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta .lay-2col {
	display: flex;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta .lay-2col {
		flex-direction: column;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta .img-box {
	position: absolute;
	display: block;
	right: 50%;
	top: 0;
	bottom: 0;
	width: 65%;
	height: auto;
	background: url(/image/ftt-cloudpartner-cta) no-repeat right center /cover;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta .img-box {
		position: relative;
		right: 0;
		width: 100%;
		height: 270px;
		background: url(/image/ftt-cloudpartner-cta-sp) no-repeat center center /contain;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta .text-box {
	max-width: 100%;
	margin-left: auto;
	z-index: 1;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta .text-box {
		margin-top: 20px;
		width: 100%;
		max-width: 100%;
		margin-left: auto;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta h2,
.ftt-cloudpartner .section.diff-bg-a.cta p {
	color: #fff;
}
@media only screen and (min-width: 768px) {
	.ftt-cloudpartner .section.diff-bg-a.cta h2 {
		font-size: 2.5rem;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta h2 + p {
	font-size: 1.125rem;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.diff-bg-a.cta p {
		text-align: left !important;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta .lyt-btn {
	margin-top: 36px;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-a.cta .lyt-btn {
		margin-top: 20px;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta a.btn {
	min-width: 370px;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.diff-bg-a.cta a.btn {
		min-width: auto;
	}
}
.ftt-cloudpartner .section.diff-bg-a.cta a.btn .desc {
	font-size: 1.25rem;
}
.ftt-cloudpartner .section.diff-bg-a.cta .lyt-btn + p {
	margin-top: 16px;
}










/* こちらもお勧め */
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn {
	margin: 40px 0 0;
	justify-content: center;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn {
		flex-direction: column;
	}
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * {
	width: 48.4375%;
	padding: 0;
}
@media only screen and (max-width: 1000px) {
	.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * {
		width: 100%;
	}
	.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > *:not(:first-child) {
		margin-top: 20px;
	}
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * a {
	padding: 26px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	background: linear-gradient(90deg, rgb(255, 128, 0), rgb(255, 231, 0));
}
@media only screen and (max-width: 767px) {
	.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * a {
		padding: 20px;
	}
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * a + p {
	margin-top: 8px;
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > *:not(:first-child) a {
	background: linear-gradient(90deg, rgb(0, 130, 36), rgb(97, 214, 0));
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > * a > p {
	margin-bottom: 10px;
	font-size: 1.125rem;
}
.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn {
	font-size: 1.375rem;
	font-weight: 700;
	color: #000;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn {
		font-size: calc(22vw*100 / 375);
	}
	.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn > .desc {
		width: 9.3em;
	}
}
.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn-ico {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
}
@media only screen and (max-width: 480px) {
	.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn-ico {
		width: 26px;
		height: 26px;
	}
}
.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn-ico-white svg {
	stroke-width: 1;
}
.ftt-cloudpartner .section.diff-bg-c.recommend .c-btn-ico-white svg .circle {
	stroke-width: 1;
}
.ftt-cloudpartner .section.diff-bg-c.recommend a:hover .c-btn .c-btn-ico.c-btn-ico-white svg .circle {
	stroke: #fff;
}
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > *:not(:first-child) a p,
.ftt-cloudpartner .section.diff-bg-c.recommend .lyt-btn > *:not(:first-child) a .c-btn {
	color: #fff !important;
}