#mainvisual {
	.page__title {
		width: 100%;
		max-width: 1180px;
		margin-left: auto;
		margin-right: auto;
	}

	@media (max-width:767px) {
		.page__title {
			background: rgba(255, 255, 255, 0.7);
		}
	}
}

/* =============================
  cloud
=================================*/
#cloud {
	background: var(--colorWhite);
	padding-block: 8rem;

	.inner {
		.cloud__container {
			display: grid;
			gap: 4rem;
			margin-top: 4rem;

			.cloud__content {
				&:nth-last-child(1) {
					li {
						&:nth-last-child(1) {
							.cloud__listbox {
							dd {
								margin-top: 0;
								@media (max-width:767px) {
									margin-top: 0.5rem;
								}
							}
						}
						}
						.cloud__listbox {
							min-height: 20.7rem;
							@media (max-width:767px)  {
								min-height: unset;
							}
							dt {
								min-height: 7rem;
							}
						}
					}
				}
				.cloud__title {
					font-size: var(--fontSize28);
					font-family: var(--fontBIZUDPGothic);
					line-height: 1.53;
					color: var(--colorWhite);
					letter-spacing: 0.065em;
					background: var(--colorGreen);
					padding-block: 1.8rem;
					text-align: center;
					border-radius: 4rem 4rem 0 0;
				}

				.cloud__textarea {
					background: var(--colorWhite);
					padding: 4rem 8rem;
					border-radius: 0 0 4rem 4rem;

					.cloud__text {
						font-size: var(--fontSize16);
						line-height: 1.875;
					}

					.cloud__img {
						margin-top: 4rem;
					}

					.cloudNotes {
						font-size: var(--fontSize13);
						font-family: var(--fontBIZUDPGothic);
						letter-spacing: 0.045em;
						line-height: 1.615;
						padding: 2rem 4rem;
						margin-top: 4rem;
						background: var(--colorGray);
						border-radius: 2rem;
					}
				}
			}
		}
	}

	@media (max-width:767px) {
		.inner {
			.cloud__container {
				margin-top: 2.0rem;

				.cloud__content {
					.cloud__title {
						border-radius: 2rem 2rem 0 0;
					}

					.cloud__textarea {
						padding-inline: 2rem;
						border-radius: 0 0 2rem 2rem;

						.cloudNotes {
							padding-inline: 2rem;
						}
					}
				}
			}
		}
	}
}

@media (max-width:767px) {
	#cloud {
		padding-block: 4.0rem;
	}
}

#service-list {
	.inner {
		width: 1180px;
	}
}

.cloud__list {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	li {
		padding: 0 1rem;
		width: calc(100% / 3);

		a {
			.cloud__listbox {
				background: #fff url("../img/icon_arrow_link.png") right 0.5rem bottom 0.5rem no-repeat;
			}

			.pdf {
				background: #fff;

				&::after {
					content: "";
					position: absolute;
					right: 0.5rem;
					bottom: 0.5rem;
					content: "PDF";
					font-size: var(--fontSize13);
					font-family: var(--fontPrompt);
					color: var(--colorGreen);
					border-radius: 2rem;
					padding: 0.5rem 1rem;
					border: 1px solid var(--colorGreen);
				}
			}
			&:hover {
				background: #f4faec;
				opacity: 1;
				filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.3));
				.cloud__listbox {
					background: #f4faec url("../img/icon_arrow_link_hover.png") right 0.5rem bottom 0.5rem no-repeat;
				}
				.pdf {
					background: #f4faec;
					&::after {
						color: var(--colorWhite);
						border: 1px solid var(--colorGreen);
						background: var(--colorGreen);
					}
				}
			}
		}

		.cloud__listbox {
			background: var(--colorWhite);
			border-radius: 2rem;
			font-family: var(--fontBIZUDPGothic);
			margin-bottom: 2rem;
			padding: 2rem 2.5rem 1.5rem;
			position: relative;
			min-height: 18.3rem;

			dt {
				align-items: center;
				display: flex;
				justify-content: space-between;

				.cloud__list_title {
					font-size: 2.0rem;
					line-height: 1.4;
					width: calc(100% - 8.0rem);

					.cloud__list_sub {
						font-size: var(--fontSize13);
						height: 4.16rem;
					}
				}

				.cloud__list_sub {
					display: block;
				}

				.cloud__list_img {
					align-items: center;
					display: flex;
					height: 66px;
					position: absolute;
					top: 1.5rem;
					right: 2.0rem;
					width: 8.0rem;

					img {
						display: block;
						margin-left: auto;
						margin-right: 0;
					}
				}

				@media (max-width:1200px) {
					.cloud__list_img {
						width: 6.0rem;
					}
				}

				@media (max-width:767px) {
					.cloud__list_img {
						width: 5.0rem;
					}
				}
			}

			dd {
				margin-top: 0.5rem;
			}
		}
	}
}

@media (max-width:767px) {
	.cloud__list {
		flex-direction: column;

		li {
			padding-left: 0;
			padding-right: 0;
			width: 100%;
		}
	}
}