@charset "UTF-8";

/* body::-webkit-scrollbar {
	display: none;
} */

/* タブレット(1081px以上)のみ非表示 */
@media screen and (min-width: 1080.01px) {
	.tab-off {
		display: none !important;
	}
}

/* PC(768px以上)のみ非表示 */
@media screen and (min-width: 767.01px) {
	.pc-off {
		display: none !important;
	}
}

/* スマホのみ非表示 */
@media screen and (max-width: 767px) {
	.sp-off {
		display: none !important;
	}
}

@media screen and (max-width: 767px) {
	a[href^="tel:"] {
		color: var(--default-text-color);
	}
}

@media screen and (min-width: 767.01px) {
	a[href^="tel:"] {
		pointer-events: none;
		text-decoration: none;
	}
}

*,
*:after,
*:before {
	-webkit-appearance: none;
	word-break: break-all;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
	letter-spacing: 0;
	font-family: "Noto Sans JP", sans-serif;
	-webkit-text-size-adjust: none;

	@media screen and (min-width: 767.01px) and (max-width: 1919.99px) {
		font-size: calc(10 / 1919 * 100 * 1vw);
	}

	/* あまりにも文字サイズが小さくなった場合 */
	/* @media screen and (min-width: 767.01px) and (max-width: 1080px) {
		font-size: calc(12 / 1920 * 100 * 1vw);
	} */

	/* スマホ用（デザインサイズが375の場合） */
	@media screen and (max-width: 767px) {
		font-size: calc(10 / 375 * 100 * 1vw);
	}
}

body {
	font-size: 1.6rem;
	line-height: 1;
	overflow-x: clip;

	@media screen and (max-width: 767px) {
		font-size: 1.4rem;
	}
}

picture {
	display: block;
	max-width: 100%;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
	vertical-align: top;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	@media screen and (max-width: 767px) {
		/* スマホ画像長押し禁止対策 */
		/* pointer-events: none; */
	}
}

a {
	text-decoration: none;
	transition: color ease 0.3s, opacity ease 0.3s;
}

a.txt {
	&:hover {
		color: #E900F9;
	}
}

a.btn {
	&:hover {
		opacity: 0.7;
	}
}

section p {
	line-height: 1;
	margin-bottom: 0;
	letter-spacing: 0;
}

.inner {
	position: relative;
	margin: 0 auto;

	@media screen and (max-width: 767px) {
		width: calc(100% - 4rem);
	}
}

.w960 {
	max-width: 96rem;
}

.w1080 {
	max-width: 108rem;
}

.w1200 {
	max-width: 120rem;
}

.w1300 {
	max-width: 130rem;
}

.w1440 {
	max-width: 144rem;
}

/* ------------------------------------------- */
/* 印刷用の設定 */
/* ------------------------------------------- */
@media print {
	.pc-off {
		display: none !important;
	}

	html {
		font-size: calc(10 / 1919 * 100 * 14px);
	}

	body {
		-webkit-print-color-adjust: exact;
		position: relative;
		width: 1400px;
		zoom: 70%;
	}
}

@page {
	size: A4;
	margin: 10mm;
}

@media print {
	[data-aos] {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}

#header {
	display: none;
}

#content_wrap {
	padding-top: 0;
}

#lp-header {
	height: 9.3rem;
	background-color: #fff;
	border-radius: 0 0 2.5rem 2.5rem;
	padding: 0 4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0px 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
	position: fixed;
	z-index: 999;
	width: 100%;
	left: 0;
	top: 0;

	@media screen and (max-width: 767px) {
		height: 6rem;
		padding: 0;
		overflow: hidden;
	}

	@media print {
		position: absolute;
	}

	.left-half {
		display: flex;
		align-items: center;
		gap: 3.3rem;

		@media screen and (max-width: 767px) {
			z-index: 1;
			gap: 1.5rem;
			width: 100%;
			height: 100%;
			background-color: #fff;
			padding: 0 2rem;
		}

		.logo {
			width: 20.5rem;

			@media screen and (max-width: 767px) {
				width: 13.8rem;
			}

			& img {
				width: 100%;
			}
		}

		.page-title {
			font-weight: 700;
			font-size: 2.2rem;

			@media screen and (max-width: 767px) {
				font-size: 1.4rem;
				line-height: 1.8rem;
			}
		}
	}

	.right-half {
		padding-right: 2rem;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 4.2rem;

		@media screen and (max-width: 767px) {
			width: 100%;
			height: 100vh;
			padding-top: 12rem;
			padding-right: 0;
			position: fixed;
			top: 0;
			left: 100%;
			transition: left ease 0.3s;
			flex-direction: column;
			justify-content: flex-start;
			background-color: #57BF6B;
			gap: 3rem;
		}

		.anchor-list {
			& a {
				font-weight: 700;
				font-size: 1.7rem;

				@media screen and (max-width: 767px) {
					color: #fff;
				}
			}
		}
	}

	.menu-btn {
		display: none;

		@media screen and (max-width: 767px) {
			display: block;
			position: absolute;
			top: 1rem;
			right: 1rem;
			width: 4rem;
			height: 4rem;
			padding: 0.8rem;
			z-index: 1000;
			display: flex;
			justify-content: center;
			align-items: center;
			transition: ease 0.3s all;
		}

		& span {
			position: relative;
			display: block;
			width: 100%;
			height: 0.3rem;
			border-radius: 0.15rem;
			background: #000;

			&:before,
			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: 100%;
				height: 0.3rem;
				background: #000;
				border-radius: 0.15rem;
				transition: ease 0.3s all;
			}

			&:before {
				margin-top: -0.7rem;
			}

			&:after {
				margin-top: 0.7rem;
			}
		}
	}
}

.menu-active {

	#lp-header {
		.right-half {
			left: 0;
		}

		.menu-btn {
			& span {
				background-color: transparent;

				&:before {
					margin-top: 0;
					transform: rotate(30deg);
					-webkit-transform: rotate(30deg);
				}

				&:after {
					margin-top: 0;
					transform: rotate(-30deg);
					-webkit-transform: rotate(-30deg);
				}
			}
		}
	}
}

.consult {
	box-shadow: -0.4rem 0.4rem 0.4rem rgba(0, 0, 0, 0.25);
	width: 10rem;
	height: 37.1rem;
	background-color: #ff951c;
	border-radius: 2rem 0 0 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 1.3rem;
	position: fixed;
	z-index: 998;
	right: 0;
	top: 25.1rem;

	@media screen and (max-width: 767px) {
		box-shadow: 0 -0.3rem 0.3rem rgba(0, 0, 0, 0.25);
		width: 100%;
		height: 4.9rem;
		border-radius: 0;
		flex-direction: row;
		gap: 1rem;
		top: initial;
		bottom: 0;
	}

	@media print {
		position: absolute;
	}

	& img {
		width: 3.7rem;

		@media screen and (max-width: 767px) {
			width: 3rem;
		}
	}

	.hint {
		writing-mode: vertical-lr;
		font-weight: 700;
		font-size: 2.7rem;
		text-align: center;
		color: #FFFFFF;
		text-shadow: 0.3rem 0.3rem 0.4rem rgba(0, 0, 0, 0.3);

		@media screen and (max-width: 767px) {
			writing-mode: initial;
			font-size: 2rem;
			text-shadow: 0.2rem 0.2rem 0.3rem rgba(0, 0, 0, 0.3);
		}
	}
}

#fv {
	padding-top: 13.5rem;

	/* display: grid;
	grid-template-columns: 1fr 1.8fr 1fr;
	column-gap: 5.2rem;
	row-gap: 2rem;

	.mid {
		grid-column: 2;
		grid-row: 1 / span 2;
	} */
	@media screen and (max-width: 767px) {
		padding-top: 7rem;
	}
}

.sp-bubble {
	background-color: #3E8C4E;
	padding: 0.8rem 1.5rem;
	border-radius: 1.1rem;
	width: fit-content;
	font-weight: 800;
	font-size: 1.7rem;
	line-height: 2.2rem;
	color: #FFFFFF;
	position: relative;
	margin: 2rem auto 0;
	z-index: 2;

	&::after {
		content: "";
		position: absolute;
		left: 50%;
		bottom: 0;
		transform: translate(-50%, 100%);
		width: 0;
		height: 0;
		border: 1.1rem solid transparent;
		border-top: 2.2rem solid #3E8C4E;
	}
}

.sp-hint {
	margin-top: 1rem;
	font-weight: 500;
	font-size: 1.4rem;
	text-align: center;
}

#summary {
	padding-top: 1.5rem;

	@media screen and (max-width: 767px) {
		padding-top: 1rem;
	}

	.orange-txt {
		font-weight: 900;
		font-size: 3.8rem;
		line-height: 1.5;
		text-align: center;
		color: #FF951C;

		@media screen and (max-width: 767px) {
			font-size: 2.3rem;
			line-height: 3rem;
		}
	}

	.mixed-title {
		width: 84rem;
		margin: 1.6rem auto 0;

		@media screen and (max-width: 767px) {
			width: 31.2rem;
			margin: 3rem auto 0;
		}
	}

	.areas {
		margin: 3.8rem auto 0;
		width: 100%;

		@media screen and (max-width: 767px) {
			margin: 2rem auto 0;
		}
	}

	.workers {
		padding-top: 8.1rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 7.5rem;

		@media screen and (max-width: 767px) {
			padding-top: 4rem;
			row-gap: 4rem;
		}

		.black-title {
			font-weight: 500;
			font-size: 3.3rem;
			text-indent: -0.7em;

			@media screen and (max-width: 767px) {
				font-size: 2rem;
			}
		}

		.talking {
			margin-top: 2rem;
			width: fit-content;
			display: grid;
			grid-template-columns: auto 1fr;
			align-items: center;
			gap: 4rem;

			@media screen and (max-width: 767px) {
				margin-top: 1rem;
				gap: 1.6rem;
				width: 100%;
			}

			.icon {
				width: 18.2rem;

				@media screen and (max-width: 767px) {
					width: 10.3rem;
				}
			}

			.sentence {
				border-radius: 2rem;
				width: 36.5rem;
				height: fit-content;
				padding: 1.6rem 2.4rem;
				background-color: #57BF6B;
				font-weight: 800;
				font-size: 2.4rem;
				/* line-height: 3.1rem; */
				line-height: 1.5;
				color: #FFFFFF;
				position: relative;

				&::after {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translate(-100%, -50%);
					width: 0;
					height: 0;
					border: 1.3rem solid transparent;
					border-right: 2.5rem solid #57BF6B;
				}

				@media screen and (max-width: 767px) {
					border-radius: 1.1rem;
					width: 100%;
					padding: 1rem;
					font-size: 1.6rem;

					&::after {
						border: 0.7rem solid transparent;
						border-right: 1.4rem solid #57BF6B;
					}
				}

				& span {
					font-weight: 500;
				}
			}
		}
	}
}

#strength {
	padding: 12.9rem 0 10.6rem;

	@media screen and (max-width: 767px) {
		padding: 4rem 0;
	}

	.strength1 {}

	.conversations {
		padding-top: 2rem;

		@media screen and (max-width: 767px) {
			padding-top: 1rem;
		}

		.operator {
			margin: 4rem auto 0 0;
			width: fit-content;
			display: grid;
			grid-template-columns: auto 1fr;
			gap: 4.8rem;

			@media screen and (max-width: 767px) {
				margin: 2rem auto 0 0;
				gap: 2.2rem;
			}

			& img {
				width: 14.3rem;

				@media screen and (max-width: 767px) {
					width: 7.2rem;
				}
			}

			.message {
				border-radius: 2rem;
				width: fit-content;
				height: fit-content;
				padding: 2.4rem 3.2rem;
				background-color: #57BF6B;
				font-weight: 800;
				font-size: 2.4rem;
				line-height: 1.5;
				color: #FFFFFF;
				position: relative;

				&::after {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translate(-100%, -50%);
					width: 0;
					height: 0;
					border: 1.3rem solid transparent;
					border-right: 2.5rem solid #57BF6B;
				}

				@media screen and (max-width: 767px) {
					width: 100%;
					border-radius: 1.1rem;
					padding: 1rem;
					font-size: 1.6rem;

					&::after {
						border: 0.7rem solid transparent;
						border-right: 1.4rem solid #57BF6B;
					}
				}

				& span {
					color: #FFEC3E;
				}
			}
		}

		.operator.special {
			margin: -6.4rem auto -10.7rem 0;
			align-items: center;

			@media screen and (max-width: 767px) {
				margin: 0 auto 0 0;
			}

			& img {
				width: 30rem;

				@media screen and (max-width: 767px) {
					width: 11.6rem;
				}
			}

			.message {}
		}

		.customer {
			margin: 4rem 0 0 auto;
			width: fit-content;
			display: grid;
			grid-template-columns: 1fr auto;
			gap: 4.8rem;

			@media screen and (max-width: 767px) {
				margin: 2rem 0 0 auto;
				gap: 2.2rem;
			}

			.message {
				border-radius: 2rem;
				width: fit-content;
				height: fit-content;
				padding: 2.4rem 3.2rem;
				background-color: #F2ED71;
				font-weight: 600;
				font-size: 2.4rem;
				line-height: 1.5;
				position: relative;

				&::after {
					content: "";
					position: absolute;
					right: 0;
					top: 50%;
					transform: translate(100%, -50%);
					width: 0;
					height: 0;
					border: 1.3rem solid transparent;
					border-left: 2.5rem solid #F2ED71;
				}

				@media screen and (max-width: 767px) {
					width: 100%;
					border-radius: 1rem;
					padding: 1rem;
					font-size: 1.6rem;

					&::after {
						border: 0.7rem solid transparent;
						border-left: 1.4rem solid #F2ED71;
					}
				}
			}

			& img {
				width: 14.6rem;

				@media screen and (max-width: 767px) {
					width: 7.2rem;
				}
			}
		}
	}

	.explain {
		width: 40rem;
		margin-top: -5rem;

		@media screen and (max-width: 767px) {
			width: 22.4rem;
			margin: 3rem auto 0;
		}
	}

	.strength2 {
		margin-top: 3rem;

		@media screen and (max-width: 767px) {
			margin-top: 1.5rem;
		}
	}

	.strength3 {
		margin-top: 6rem;

		@media screen and (max-width: 767px) {
			margin-top: 3rem;
		}
	}
}

#voice {
	.section-title {
		width: 100%;
		background-color: #3E8C4E;
		height: 9.6rem;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 3.5rem;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			height: 4.9rem;
			font-size: 2.3rem;
		}
	}

	.items-swiper {
		padding: 6.2rem 0 11.5rem;
		overflow: initial;

		@media screen and (max-width: 767px) {
			padding: 3rem 0 6rem;
		}

		.items {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 4rem;

			@media screen and (max-width: 767px) {
				display: flex;
				gap: initial;
			}

			.item {
				.up {
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					padding: 3.6rem 0;
					background-color: #57BF6B;
					border-radius: 2rem;
					position: relative;

					&::after {
						content: "";
						position: absolute;
						left: 50%;
						bottom: 0;
						transform: translate(-50%, 100%);
						width: 0;
						height: 0;
						border: 1.6rem solid transparent;
						border-top: 2.8rem solid #57BF6B;
					}

					@media screen and (max-width: 767px) {
						padding: 2.7rem 0;
						border-radius: 1.6rem;

						&::after {
							border: 1.1rem solid transparent;
							border-top: 2rem solid #57BF6B;
						}
					}

					& img {
						height: 8.2rem;

						@media screen and (max-width: 767px) {
							height: 6.7rem;
						}
					}

					.big {
						margin-top: 2.1rem;
						font-weight: 900;
						font-size: 3.1rem;
						text-align: center;
						color: #FFFFFF;

						@media screen and (max-width: 767px) {
							margin-top: 2rem;
							font-size: 2.5rem;
						}
					}

					.small {
						margin-top: 2rem;
						font-weight: 600;
						font-size: 2.4rem;
						line-height: 3.1rem;
						text-align: center;
						color: #FFFFFF;

						@media screen and (max-width: 767px) {
							margin-top: 1rem;
							font-size: 1.8rem;
							line-height: 2.5rem;
						}
					}
				}

				.down {
					height: 25.2rem;
					margin-top: 4.4rem;
					border: 0.1rem solid #A2A2A2;
					padding: 2.9rem;

					@media screen and (max-width: 767px) {
						height: auto;
						margin-top: 2.5rem;
						padding: 2rem;
					}

					.thin {
						font-weight: 400;
						font-size: 1.7rem;

						@media screen and (max-width: 767px) {
							font-size: 1.6rem;
						}
					}

					.fat {
						margin-top: 2.2rem;
						font-weight: 700;
						font-size: 2rem;
						line-height: 1.6;

						@media screen and (max-width: 767px) {
							margin-top: 1.1rem;
							font-size: 1.6rem;
						}
					}
				}
			}
		}

		.swiper-pagination {
			bottom: 3rem;

			.swiper-pagination-bullet {
				margin: 0 0.4rem;
				width: 1.3rem;
				height: 1.3rem;
				border: 0.1rem solid #6F6F6F;
				background-color: #fff;
			}

			.swiper-pagination-bullet-active {
				border: initial;
				background-color: #959595;
			}
		}

		.swiper-button-prev,
		.swiper-button-next {
			background-color: initial;
			top: 30%;
			width: 3.9rem;
			height: 3.9rem;
			margin-top: 0;
			filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
		}

		.swiper-button-prev {
			left: -1rem;
			background-image: url(../../img/logistics-service/prev.png);
			background-size: cover;
			background-repeat: no-repeat;
		}

		.swiper-button-next {
			right: -1rem;
			background-image: url(../../img/logistics-service/next.png);
			background-size: cover;
			background-repeat: no-repeat;
		}
	}

	.strong-point {
		background-color: #E0FEE4;
		padding-bottom: 9.4rem;

		@media screen and (max-width: 767px) {
			padding-bottom: 4rem;
		}

		.title-district {
			height: 16rem;
			background-color: #3E8C4E;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 2.4rem;

			@media screen and (max-width: 767px) {
				height: 4.9rem;
				gap: 1.2rem;
			}

			.txt1 {
				font-weight: 600;
				font-size: 4.5rem;
				color: #FFFFFF;
				padding-right: 5.5rem;

				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
					padding-right: 1rem;
				}
			}

			.icon {
				height: 8rem;

				@media screen and (max-width: 767px) {
					height: 2.8rem;
				}
			}

			.txt2 {
				font-weight: 700;
				font-size: 7rem;
				color: #FFFFFF;

				@media screen and (max-width: 767px) {
					font-size: 2.3rem;
				}
			}
		}

		.talking-district {
			margin-top: 5rem;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 6.3rem;

			@media screen and (max-width: 767px) {
				margin-top: 2.5rem;
				gap: 1.8rem;
			}

			.icon {
				width: 21.6rem;

				@media screen and (max-width: 767px) {
					width: 9rem;
				}
			}

			.bubble {
				background-color: #3E8C4E;
				border-radius: 2.5rem;
				position: relative;
				padding: 2.3rem 4.5rem;
				width: fit-content;
				height: fit-content;
				display: flex;
				justify-content: center;
				align-items: center;
				font-weight: 700;
				font-size: 3.6rem;
				line-height: 1.36;
				color: #FFFFFF;

				&::after {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translate(-100%, -50%);
					width: 0;
					height: 0;
					border: 1.6rem solid transparent;
					border-right: 3.3rem solid #3E8C4E;
				}

				@media screen and (max-width: 767px) {
					border-radius: 1.1rem;
					padding: 1rem;
					font-size: 1.7rem;

					&::after {
						border: 0.7rem solid transparent;
						border-right: 1.4rem solid #3E8C4E;
					}
				}
			}
		}

		.situations {
			margin-top: 5rem;
			display: grid;
			grid-template-columns: 1fr 1fr;
			column-gap: 3.2rem;
			row-gap: 1.2rem;

			@media screen and (max-width: 767px) {
				margin-top: 2.5rem;
				grid-template-columns: 1fr;
				row-gap: 0.8rem;
			}

			.situation {
				border: 0.1rem solid #A2A2A2;
				background-color: #fff;
				padding-left: 2.4rem;
				display: flex;
				align-items: center;
				gap: 2.1rem;
				height: 7.7rem;

				@media screen and (max-width: 767px) {
					padding-left: 1.8rem;
					gap: 2rem;
					height: 6.8rem;
				}

				.cross {
					width: 3.3rem;

					@media screen and (max-width: 767px) {
						width: 3.8rem;
					}
				}

				.case {
					font-weight: 700;
					font-size: 2.6rem;
					white-space: nowrap;

					@media screen and (max-width: 767px) {
						font-size: 1.8rem;
					}
				}
			}
		}

		.triangle {
			margin: 3rem auto 0;
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 4.2rem 5rem 0 5rem;
			border-color: #3E8C4E transparent transparent transparent;
			transform: rotate(0deg);

			@media screen and (max-width: 767px) {
				margin: 1.5rem auto 0;
				border-width: 2.5rem 2.5rem 0 2.5rem;
			}
		}

		.box {
			margin-top: 2.6rem;
			background-color: #fff;
			border: 0.2rem solid #3E8C4E;
			padding: 3.2rem;

			@media screen and (max-width: 767px) {
				margin-top: 1.3rem;
				padding: 2rem;
			}

			.title {
				margin-top: 0.7rem;
				font-weight: 800;
				font-size: 3.3rem;
				line-height: 1.5;
				text-align: center;

				@media screen and (max-width: 767px) {
					margin-top: 0.4rem;
					font-size: 2rem;
				}
			}

			.sub-title {
				font-weight: 400;
				font-size: 2.5rem;
				line-height: 1.6;
				text-align: center;

				@media screen and (max-width: 767px) {
					font-size: 1.4rem;
				}
			}

			.icons {
				margin: 1.5rem auto 2.6rem;
				width: 28.7rem;

				@media screen and (max-width: 767px) {
					margin: 1rem auto 1.5rem;
					width: 16.3rem;
				}
			}

			.screenshots {
				display: grid;
				grid-template-columns: 1fr 1fr;
				gap: 3.3rem;

				@media screen and (max-width: 767px) {
					grid-template-columns: 1fr;
					gap: 2.1rem;
				}

				.screenshot {}
			}
		}

		.addition {
			padding: 3.7rem 0 2.7rem;
			font-weight: 500;
			font-size: 2.4rem;
			line-height: 1.5;
			text-align: center;

			@media screen and (max-width: 767px) {
				padding: 1.1rem 0;
				font-size: 1.4rem;
				text-align: left;
			}
		}

		.instance {
			margin-top: 12.3rem;
			background-color: #fff;
			padding: 5.5rem 6.7rem;
			border: 0.1rem solid #000;
			position: relative;
			display: flex;
			justify-content: space-between;

			@media screen and (max-width: 767px) {
				margin-top: 6rem;
				padding: 4rem 2rem 2rem;
				gap: 1.5rem;
			}

			.title {
				position: absolute;
				top: -2.5rem;
				width: 25rem;
				height: 4.7rem;
				border-radius: 2rem;
				background-color: #3E8C4E;
				display: flex;
				justify-content: center;
				align-items: center;
				font-weight: 700;
				font-size: 2rem;
				text-align: center;
				color: #FFFFFF;

				&::after {
					content: "";
					position: absolute;
					left: 50%;
					bottom: 0;
					transform: translate(-50%, 100%);
					width: 0;
					height: 0;
					border: 1rem solid transparent;
					border-top: 1.7rem solid #3E8C4E;
				}

				@media screen and (max-width: 767px) {
					top: -1.5rem;
					width: 20.5rem;
					height: 3.4rem;
					border-radius: 1.7rem;
					font-size: 1.7rem;

					&::after {
						border: 0.7rem solid transparent;
						border-top: 1.2rem solid #3E8C4E;
					}
				}
			}

			.texts {
				width: 63.8rem;

				@media screen and (max-width: 767px) {
					width: 100%;
				}

				.txt1 {
					font-weight: 800;
					font-size: 3.7rem;
					line-height: 1.5;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						font-size: 2.2rem;
					}
				}

				.txt2 {
					margin-top: 3rem;
					font-weight: 800;
					font-size: 2.8rem;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						margin-top: 1.5rem;
						font-size: 2rem;
					}
				}

				.txt3 {
					margin-top: 2rem;
					font-weight: 400;
					font-size: 2rem;
					line-height: 1.6;
					color: #000000;

					@media screen and (max-width: 767px) {
						margin-top: 1rem;
						font-size: 1.6rem;
					}
				}
			}

			.image {
				width: 43rem;

				@media screen and (max-width: 767px) {
					width: 100%;
				}
			}
		}

		.instance:nth-child(odd) {
			margin-left: 4rem;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				margin-left: 0;
			}

			.title {
				left: -4rem;

				@media screen and (max-width: 767px) {
					left: 0;
				}
			}
		}

		.instance:nth-child(even) {
			margin-right: 4rem;
			flex-direction: row-reverse;

			@media screen and (max-width: 767px) {
				flex-direction: column;
				margin-right: 0;
			}

			.title {
				right: -4rem;

				@media screen and (max-width: 767px) {
					right: 0;
				}
			}
		}
	}
}

.contact {

	.text1 {
		font-weight: 800;
		font-size: 3.3rem;
		line-height: 1.5;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 2.2rem;
		}
	}

	.text2 {
		margin-top: 1.3rem;
		font-weight: 500;
		font-size: 2.4rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			margin-top: 0.8rem;
			font-size: 1.7rem;
		}
	}

	.button {
		display: block;
		margin: 2.8rem auto 0;
		position: relative;
		width: 57.5rem;
		height: 8.8rem;
		background-color: #3E8C4E;
		display: flex;
		padding-left: 6.1rem;
		align-items: center;
		font-weight: 800;
		font-size: 2.8rem;
		line-height: 1.2;
		text-align: center;
		color: #FFFFFF;

		&::after {
			content: "";
			position: absolute;
			right: 4rem;
			top: 50%;
			width: 2.2rem;
			height: 2.2rem;
			border-top: 0.4rem solid #fff;
			border-right: 0.4rem solid #fff;
			transform: translate(0, -50%) rotate(45deg);
		}

		@media screen and (max-width: 767px) {
			margin: 2rem auto 0;
			width: 33.5rem;
			height: 7.4rem;
			padding-left: 2.5rem;
			font-size: 2rem;

			&::after {
				right: 3rem;
				border-top: 0.3rem solid #fff;
				border-right: 0.3rem solid #fff;
			}
		}
	}

	.phone {
		display: block;
		margin: 1.9rem auto 0;
		font-family: 'Akshar';
		font-weight: 700;
		font-size: 4rem;
		text-align: center;
		color: #3E8C4E;

		@media screen and (max-width: 767px) {
			margin: 1.5rem auto 0;
			font-size: 3.3rem;
		}
	}

	.time {
		margin-top: 2rem;
		font-weight: 400;
		font-size: 2rem;
		text-align: center;
		color: #000000;

		@media screen and (max-width: 767px) {
			margin-top: 1rem;
			font-size: 1.6rem;
		}
	}
}

.contact1 {
	padding: 10rem 0;

	@media screen and (max-width: 767px) {
		padding: 5rem 0;
	}
}

.contact2 {
	padding: 10rem 0 0;

	@media screen and (max-width: 767px) {
		padding: 5rem 0 0;
	}
}

#example {
	.section-title {
		height: 10rem;
		width: 100%;
		background-color: #3E8C4E;
		display: flex;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		font-size: 4.5rem;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			height: 4.9rem;
			font-size: 2.3rem;
		}
	}

	.boxes-swiper {
		padding: 6.4rem 0 8rem;
		overflow: initial;

		@media screen and (max-width: 767px) {
			padding: 3rem 0 4rem;
		}

		.boxes {
			display: grid;
			grid-template-columns: repeat(3, 1fr);
			gap: 3.3rem;

			@media screen and (max-width: 767px) {
				display: flex;
				gap: initial;
			}

			.box {
				@media screen and (max-width: 767px) {
					padding-bottom: 2rem;
				}

				& img {}

				.category {
					margin-top: 2.4rem;
					font-weight: 600;
					font-size: 2rem;
					line-height: 1.5;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						margin-top: 1.5rem;
						font-size: 1.6rem;
					}
				}

				.title {
					margin-top: 1.3rem;
					font-weight: 800;
					font-size: 2.8rem;
					line-height: 4.1rem;

					@media screen and (max-width: 767px) {
						margin-top: 0.8rem;
						font-size: 2.2rem;
						line-height: 1.5;
					}
				}
			}
		}

		.swiper-pagination {
			bottom: 3rem;

			.swiper-pagination-bullet {
				margin: 0 0.4rem;
				width: 1.3rem;
				height: 1.3rem;
				border: 0.1rem solid #6F6F6F;
				background-color: #fff;
			}

			.swiper-pagination-bullet-active {
				border: initial;
				background-color: #959595;
			}
		}

		.swiper-button-prev,
		.swiper-button-next {
			background-color: initial;
			top: 30%;
			width: 3.9rem;
			height: 3.9rem;
			margin-top: 0;
			filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.25));
		}

		.swiper-button-prev {
			left: -1rem;
			background-image: url(../../img/logistics-service/prev.png);
			background-size: cover;
			background-repeat: no-repeat;
		}

		.swiper-button-next {
			right: -1rem;
			background-image: url(../../img/logistics-service/next.png);
			background-size: cover;
			background-repeat: no-repeat;
		}
	}

	.strong-point {
		background-color: #E0FEE4;
		padding-bottom: 10.4rem;

		@media screen and (max-width: 767px) {
			padding-bottom: 4rem;
		}

		.title-district {
			height: 16rem;
			background-color: #3E8C4E;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 2.4rem;

			@media screen and (max-width: 767px) {
				height: 4.9rem;
				gap: 1.2rem;
			}

			.txt1 {
				font-weight: 600;
				font-size: 4.5rem;
				color: #FFFFFF;
				padding-right: 5.5rem;

				@media screen and (max-width: 767px) {
					font-size: 1.5rem;
					padding-right: 1rem;
				}
			}

			.icon {
				height: 8rem;

				@media screen and (max-width: 767px) {
					display: none;
				}
			}

			.txt2 {
				font-weight: 700;
				font-size: 7rem;
				color: #FFFFFF;

				@media screen and (max-width: 767px) {
					font-size: 2rem;
				}
			}
		}

		.talking-district {
			margin-top: 5rem;
			display: flex;
			justify-content: center;
			align-items: center;
			gap: 6.3rem;

			@media screen and (max-width: 767px) {
				margin-top: 2.5rem;
				gap: 1.8rem;
			}

			& img {
				width: 18.2rem;

				@media screen and (max-width: 767px) {
					width: 9rem;
				}
			}

			.bubble {
				background-color: #3E8C4E;
				border-radius: 2.5rem;
				position: relative;
				padding: 2.3rem 4.5rem;
				width: fit-content;
				height: fit-content;
				display: flex;
				justify-content: center;
				align-items: center;
				font-weight: 700;
				font-size: 3.6rem;
				line-height: 1.36;
				color: #FFFFFF;

				&::after {
					content: "";
					position: absolute;
					left: 0;
					top: 50%;
					transform: translate(-100%, -50%);
					width: 0;
					height: 0;
					border: 1.5rem solid transparent;
					border-right: 3.1rem solid #3E8C4E;
				}

				@media screen and (max-width: 767px) {
					border-radius: 1.1rem;
					padding: 1rem;
					font-size: 1.7rem;

					&::after {
						border: 0.7rem solid transparent;
						border-right: 1.4rem solid #3E8C4E;
					}
				}
			}
		}

		.pattern {
			margin-top: 9.1rem;
			display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 8.7rem;

			@media screen and (max-width: 767px) {
				margin-top: 3rem;
				grid-template-columns: 1fr;
				gap: 2rem;
			}

			.left {}

			.right {
				.green {
					font-weight: 800;
					font-size: 2.8rem;
					line-height: 4.1rem;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						font-size: 2.2rem;
						line-height: 1.5;
					}
				}

				.black {
					margin-top: 3.2rem;
					font-weight: 400;
					font-size: 2rem;
					line-height: 1.6;

					@media screen and (max-width: 767px) {
						margin-top: 1.2rem;
						font-size: 1.6rem;
					}
				}
			}
		}

	}
}

#available {
	background-color: #3E8C4E;
	padding: 8.2rem 0 10.6rem;
	position: relative;

	@media screen and (max-width: 767px) {
		padding: 6rem 0;
	}

	.bg1 {
		position: absolute;
		left: -0.3rem;
		top: 2.1rem;
		width: 32.6rem;

		@media screen and (max-width: 767px) {
			left: -0.2rem;
			top: 1.5rem;
			width: 10rem;
		}
	}

	.bg2 {
		position: absolute;
		right: 4.6rem;
		bottom: 5.3rem;
		width: 38rem;

		@media screen and (max-width: 767px) {
			right: 1.6rem;
			bottom: 2.1rem;
			width: 9rem;
		}
	}

	.section-title {
		font-weight: 800;
		font-size: 3.7rem;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			font-size: 2.3rem;
		}
	}

	.sub-title {
		margin-top: 2.9rem;
		font-weight: 400;
		font-size: 2.4rem;
		line-height: 1.5;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			margin-top: 1rem;
			font-size: 1.6rem;
		}
	}

	.items {
		margin-top: 4.9rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 3.4rem;
		row-gap: 4.8rem;

		@media screen and (max-width: 767px) {
			margin-top: 2.4rem;
			grid-template-columns: 1fr;
			row-gap: 1.8rem;
		}

		.item {
			padding: 2.2rem 2.8rem;
			background-color: #fff;

			@media screen and (max-width: 767px) {
				padding: 2rem;
			}

			.caption1 {
				margin-top: 2.5rem;
				font-weight: 800;
				font-size: 2.7rem;
				text-align: center;
				color: #3E8C4E;

				@media screen and (max-width: 767px) {
					margin-top: 1rem;
					font-size: 2rem;
				}
			}

			.caption2 {
				margin-top: 1.3rem;
				font-weight: 400;
				font-size: 1.7rem;
				line-height: 1.76;

				@media screen and (max-width: 767px) {
					margin-top: 1rem;
					font-size: 1.6rem;
					line-height: 1.5;
				}
			}
		}
	}

	.other {
		margin-top: 5rem;
		font-weight: 500;
		font-size: 2.8rem;
		line-height: 3.4rem;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			margin-top: 2.3rem;
			font-size: 1.6rem;
			line-height: 1.5;
		}
	}
}

#price {
	padding: 10.2rem 0 10.8rem;

	@media screen and (max-width: 767px) {
		padding: 6rem 0;
	}

	.section-title {
		font-weight: 800;
		font-size: 3.7rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 2.3rem;
		}
	}

	.fees {
		margin-top: 12rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 11.4rem;

		@media screen and (max-width: 767px) {
			margin-top: 9.4rem;
			grid-template-columns: 1fr;
			gap: 14.9rem;
		}

		.fee {
			position: relative;

			.gray-area {
				background-color: #EFEFEF;
				position: relative;
				height: 40.8rem;
				padding-top: 9.8rem;

				@media screen and (max-width: 767px) {
					height: auto;
					padding-top: 7.7rem;
					padding-bottom: 3.5rem;
				}

				.round-title {
					width: 16rem;
					height: 16rem;
					border-radius: 50%;
					background-color: #3E8C4E;
					display: flex;
					justify-content: center;
					align-items: center;
					font-weight: 800;
					font-size: 2.4rem;
					text-align: center;
					color: #FFFFFF;
					position: absolute;
					left: 50%;
					top: 0;
					transform: translate(-50%, -50%);

					@media screen and (max-width: 767px) {
						width: 13.5rem;
						height: 13.5rem;
						font-size: 2rem;
					}
				}

				.tiny {
					width: 100%;
					height: 5rem;
					display: flex;
					justify-content: center;
					align-items: center;
					font-weight: 400;
					font-size: 1.5rem;
					line-height: 1.47;
					text-align: center;

					@media screen and (max-width: 767px) {
						height: auto;
						font-size: 1.4rem;
					}
				}

				.container {
					height: 20.9rem;
					display: flex;
					justify-content: center;
					align-items: center;
					flex-direction: column;

					@media screen and (max-width: 767px) {
						height: auto;
					}

					.bold {
						padding: 2rem 0;
						font-weight: 800;
						font-size: 2.5rem;
						text-align: center;

						@media screen and (max-width: 767px) {
							font-size: 2.2rem;
						}
					}

					.price-eg {
						font-family: 'Akshar';
						font-weight: 700;
						font-size: 4.5rem;
						line-height: 0.7;
						text-align: center;
						color: #3E8C4E;

						@media screen and (max-width: 767px) {
							font-size: 4.2rem;
						}

						.unit {
							font-family: 'Noto Sans JP';
							font-weight: 800;
							font-size: 2rem;

							@media screen and (max-width: 767px) {
								font-size: 1.8rem;
							}
						}

						.tilde {
							font-family: 'Noto Sans JP';
							font-weight: 500;
							font-size: 4rem;
							writing-mode: sideways-lr;
							margin: 1rem 0;

							@media screen and (max-width: 767px) {
								font-size: 3.7rem;
								margin: 0.5rem 0;
							}
						}

						.special {
							font-family: 'Noto Sans JP';
							font-weight: 500;
							font-size: 1.7rem;

							@media screen and (max-width: 767px) {
								font-size: 1.6rem;
							}
						}
					}
				}
			}

			.note {
				margin-top: 1rem;
				font-weight: 400;
				font-size: 1.7rem;
				line-height: 1.47;
				padding-left: 1em;
				text-indent: -1em;

				@media screen and (max-width: 767px) {
					margin-top: 0.7rem;
					font-size: 1.4rem;
				}
			}
		}

		.fee.plus {
			&::after {
				content: "";
				width: 4.2rem;
				height: 4.2rem;
				background-image: url(../../img/logistics-service/icon_plus.png);
				background-size: contain;
				background-repeat: no-repeat;
				position: absolute;
				right: -5.6rem;
				top: 19.5rem;
				transform: translate(50%, 0);
			}

			@media screen and (max-width: 767px) {
				&::after {
					right: 50%;
					top: initial;
					bottom: -2.2rem;
					transform: translate(50%, 100%);
				}
			}
		}
	}

	.green-banner {
		margin-top: 3.6rem;
		height: 20rem;
		background-color: #3E8C4E;
		padding: 2.8rem 0;
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 7.5rem;

		@media screen and (max-width: 767px) {
			margin-top: 4rem;
			height: auto;
			padding: 3rem 0;
			flex-direction: column;
			gap: 1rem;
		}

		.left-txt {
			width: 14.4rem;
			height: 14.4rem;
			border-radius: 50%;
			background-color: #EFEFEF;
			font-weight: 700;
			font-size: 2.4rem;
			text-align: center;
			color: #3E8C4E;
			display: flex;
			justify-content: center;
			align-items: center;

			@media screen and (max-width: 767px) {
				width: 12rem;
				height: 12rem;
				font-size: 2rem;
			}
		}

		.right-txt {
			font-weight: 800;
			font-size: 2.9rem;
			line-height: 1.5;
			color: #FFFFFF;

			@media screen and (max-width: 767px) {
				font-size: 2.3rem;
				text-align: center;
			}

			.price {
				font-family: 'Akshar';
				font-weight: 700;
				font-size: 5.2rem;
				padding-left: 0.2em;
				padding-right: 0.2em;

				@media screen and (max-width: 767px) {
					font-size: 4.5rem;
					padding-left: 0;
				}
			}

			.unit {
				font-weight: 800;
				font-size: 2.3rem;

				@media screen and (max-width: 767px) {
					font-size: 1.8rem;
				}
			}

			.thin {
				font-weight: 400;
				font-size: 2.5rem;

				@media screen and (max-width: 767px) {
					font-size: 1.7rem;
				}
			}

			.micro {
				font-weight: 400;
				font-size: 2rem;

				@media screen and (max-width: 767px) {
					font-size: 1.6rem;
				}
			}
		}
	}

	.supplement {
		margin-top: 1rem;
		font-weight: 400;
		font-size: 1.7rem;
		line-height: 2.5rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			margin-top: 0.7rem;
			font-size: 1.4rem;
			line-height: 1.5;
		}
	}

	.other-option {
		margin-top: 10rem;
		font-weight: 800;
		font-size: 3rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			margin-top: 4rem;
			font-size: 2rem;
		}
	}

	.squares {
		margin-top: 3.7rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		column-gap: 3.8rem;
		row-gap: 2.4rem;

		@media screen and (max-width: 767px) {
			margin-top: 1.7rem;
			grid-template-columns: 1fr;
			row-gap: 1.1rem;
		}

		.square {
			height: 12.8rem;
			padding: 2rem 2.8rem;
			border: 0.2rem solid #3E8C4E;
			display: flex;
			justify-content: space-between;
			align-items: center;

			@media screen and (max-width: 767px) {
				height: auto;
				padding: 2rem;
			}

			.text {
				font-weight: 800;
				font-size: 2.1rem;
				line-height: 1.5;
				color: #3E8C4E;

				@media screen and (max-width: 767px) {
					font-size: 1.8rem;
				}
			}

			& img {
				width: 2.9rem;

				@media screen and (max-width: 767px) {
					width: 2.5rem;
				}
			}
		}
	}
}

#qa {
	padding: 9.5rem 0 11.4rem;
	background-color: #E0FEE4;

	@media screen and (max-width: 767px) {
		padding: 6rem 0;
	}

	.section-title {
		font-weight: 800;
		font-size: 3.7rem;
		text-align: center;

		@media screen and (max-width: 767px) {
			font-size: 2.3rem;
		}
	}

	.conversations {
		margin-top: 5.9rem;

		@media screen and (max-width: 767px) {
			margin-top: 2rem;
		}

		.conversation {
			padding: 2.8rem 1.4rem;

			@media screen and (max-width: 767px) {
				padding: 1.6rem;
			}

			.question {
				display: grid;
				grid-template-columns: 4.5rem 1fr;

				@media screen and (max-width: 767px) {
					grid-template-columns: 3rem 1fr;
				}

				.txt1 {
					font-weight: 800;
					font-size: 2.4rem;
					line-height: 1.5;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						font-size: 2rem;
					}
				}

				.txt2 {
					font-weight: 800;
					font-size: 2.6rem;
					line-height: 3.8rem;
					color: #3E8C4E;

					@media screen and (max-width: 767px) {
						font-size: 1.8rem;
						line-height: 1.5;
					}
				}
			}

			.answer {
				margin-top: 1.9rem;
				display: grid;
				grid-template-columns: 4.5rem 1fr;

				@media screen and (max-width: 767px) {
					margin-top: 1rem;
					grid-template-columns: 3rem 1fr;
				}

				.txt1 {
					font-weight: 800;
					font-size: 2.4rem;
					line-height: 1.5;

					@media screen and (max-width: 767px) {
						font-size: 2rem;
					}
				}

				.txt2 {
					font-weight: 400;
					font-size: 2.1rem;
					line-height: 3.6rem;

					@media screen and (max-width: 767px) {
						font-size: 1.6rem;
						line-height: 1.5;
					}
				}
			}
		}

		.conversation:nth-child(odd) {
			background-color: #f0fff2;
			border-top: 0.1rem solid #3E8C4E;
			border-bottom: 0.1rem solid #3E8C4E;
		}
	}
}

#flow {
	padding: 9.5rem 0 13.6rem;
	background: #3E8C4E;
	position: relative;

	@media screen and (max-width: 767px) {
		padding: 6rem 0;
	}

	.bg3 {
		position: absolute;
		left: 4.2rem;
		top: 1.2rem;
		width: 43.6rem;

		@media screen and (max-width: 767px) {
			left: 1.8rem;
			top: 1.4rem;
			width: 7rem;
		}
	}

	.bg4 {
		position: absolute;
		right: 2rem;
		bottom: 2rem;
		width: 38.2rem;

		@media screen and (max-width: 767px) {
			right: 1.5rem;
			bottom: initial;
			top: 0.7rem;
			width: 7rem;
		}
	}

	.section-title {
		font-weight: 800;
		font-size: 3.7rem;
		text-align: center;
		color: #FFFFFF;

		@media screen and (max-width: 767px) {
			font-size: 2.3rem;
		}
	}

	.steps {
		margin-top: 5.4rem;

		@media screen and (max-width: 767px) {
			margin-top: 3.4rem;
		}

		.step {
			position: relative;
			background-color: #fff;
			padding: 1.2rem 2.5rem;
			display: grid;
			align-items: center;
			grid-template-columns: auto 1fr 4.4fr;
			height: 10.2rem;

			@media screen and (max-width: 767px) {
				padding: 2rem;
				grid-template-columns: auto 1fr;
				height: auto;
				row-gap: 3rem;
			}

			.number {
				font-family: 'Akshar';
				font-weight: 400;
				font-size: 7rem;
				text-align: center;
				color: #3E8C4E;

				@media screen and (max-width: 767px) {
					font-size: 4rem;
					transform: translateX(2rem);
				}
			}

			.bold {
				font-weight: 800;
				font-size: 2.2rem;
				text-align: center;

				@media screen and (max-width: 767px) {
					font-size: 2rem;
				}
			}

			.normal {
				height: 100%;
				padding-left: 2.8rem;
				border-left: 0.1rem solid #A2A2A2;
				font-weight: 400;
				font-size: 1.8rem;
				line-height: 1.67;
				color: #000000;
				display: flex;
				align-items: center;

				@media screen and (max-width: 767px) {
					padding-left: 0;
					border-left: initial;
					font-size: 1.6rem;
					grid-column: 1 / span 2;
					position: relative;

					&::after {
						content: "";
						width: calc(100vw - 8rem);
						height: 0.1rem;
						background-color: #A2A2A2;
						position: absolute;
						top: 0;
						left: 0;
						transform: translate(0, -1.5rem);
					}
				}
			}

			.normal.shorten {
				max-width: 78rem;

				@media screen and (max-width: 767px) {
					max-width: 18rem;
				}
			}

			.orange {
				position: absolute;
				right: 1.2rem;
				top: 50%;
				transform: translate(0, -50%);
				width: 15.6rem;
				height: 15.6rem;
				border-radius: 50%;
				background-color: #FF951C;
				display: flex;
				justify-content: center;
				align-items: center;
				font-weight: 800;
				font-size: 2rem;
				line-height: 1.5;
				text-align: center;
				color: #FFFFFF;

				@media screen and (max-width: 767px) {
					top: calc(3.5rem + 50%);
					right: 2rem;
					width: 10rem;
					height: 10rem;
					font-size: 1.4rem;
				}
			}
		}

		.triangle {
			margin: 1.5rem auto;
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 3.7rem 4rem 0 4rem;
			border-color: #57bf6b transparent transparent transparent;
			transform: rotate(0deg);

			@media screen and (max-width: 767px) {
				border-width: 2.6rem 2rem 0 2rem;
			}
		}
	}
}

.corporate-footer-button {
	width: 248px !important;

	@media screen and (max-width: 767px) {
		width: 192px !important;
	}
}

.copyright {
	@media screen and (max-width: 767px) {
		word-break: break-word;
		padding-bottom: 6rem;
	}
}

.top_box_overflow {
	@media screen and (max-width: 767px) {
		height: 6rem;
	}
}