@media (min-width: 641px) {
	.SP {
		display: none !important;
	}
}

@media (max-width: 640px) {
	.PC {
		display: none !important;
	}
}

.fadeIn {
	opacity: 0;
}

.fadeIn.show {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0s;
	animation-name: fadeIn;
}

.fadeInUp {
	opacity: 0;
}

.fadeInUp.show {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0s;
	animation-name: fadeInUp;
}

.fadeInDown {
	opacity: 0;
}

.fadeInDown.show {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0s;
	animation-name: fadeInDown;
}

.fadeInRight {
	opacity: 0;
}

.fadeInRight.show {
	animation-fill-mode: both;
	animation-duration: 0.8s;
	animation-delay: 0.3s;
	animation-name: fadeInRight;
}

.fadeInLeft {
	opacity: 0;
}

.fadeInLeft.show {
	animation-fill-mode: both;
	animation-duration: 0.8s;
	animation-delay: 0.3s;
	animation-name: fadeInLeft;
}

.bound {
	opacity: 0;
	transform-origin: bottom center;
}

.bound.show {
	opacity: 1;
	animation: bounding 0.7s forwards 0s 1 ease-out;
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp_L {
	0% {
		opacity: 0;
		transform: translateY(80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(-80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(80px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInZoom {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes bounding {
	0% {
		opacity: 0;
		transform: translateY(0) scale(0.7, 0.7);
	}
	1% {
		opacity: 1;
	}
	25% {
		transform: translateY(-30%) scale(1.5, 1.5);
	}
	50% {
		transform: translateY(0) scale(0.9, 1.1);
	}
	75% {
		transform: translateY(0) scale(1.1, 0.9);
	}
	100% {
		transform: translateY(0) scale(1, 1);
		opacity: 1;
	}
}

@media (max-width: 640px) {
	body.freeze, html.freeze {
		pointer-events: none;
	}
}

#freeContent {
	position: relative;
	z-index: 1;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt";
	color: #786E64;
	font-size: 15px;
	font-weight: 500;
	line-height: 2;
	background: #FAFAF5;
}

@media (min-width: 641px) {
	#freeContent {
		min-width: 1100px;
	}
}

@media (max-width: 640px) {
	#freeContent {
		position: static;
	}
}

@media (max-width: 640px) {
	#freeContent {
		font-size: 13px;
		font-size: 3.46667vw;
		line-height: 2;
	}
}

#freeContent h1, #freeContent h2, #freeContent h3 {
	overflow: visible;
}

#freeContent * {
	box-sizing: border-box;
}

#freeContent ul {
	padding: 0;
}

#freeContent li {
	margin: 0;
}

#freeContent img {
	display: inline;
	vertical-align: bottom;
}

#freeContent .tpl-inner {
	width: 1006px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 640px) {
	#freeContent .tpl-inner {
		width: 100%;
		padding: 0 6%;
	}
}

#freeContent .tpl-casebtn .casebtn-txt {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #CF122E;
	line-height: calc(26/18);
	margin-top: 3em;
}

@media (max-width: 640px) {
	#freeContent .tpl-casebtn .casebtn-txt {
		font-size: 4.8vw;
		margin-top: 2em;
	}
}

#freeContent .tpl-casebtn .casebtn-txt span {
	font-size: 1.33em;
}

#freeContent .tpl-casebtn .casebtn-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 483px;
	height: 80px;
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	color: #fff;
	background: #283250;
	font-size: 20px;
	font-weight: bold;
}

@media (max-width: 640px) {
	#freeContent .tpl-casebtn .casebtn-btn {
		width: 100%;
		height: 18.66667vw;
		border-radius: 2.13333vw;
		margin-top: 2em;
		font-size: 4vw;
	}
}

#freeContent .tpl-casebtn .casebtn-btn:after {
	position: absolute;
	right: 16px;
	top: calc(50% - 10px);
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .tpl-casebtn .casebtn-btn:after {
		right: 4.26667vw;
		top: calc(50% - 2.66667vw);
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .tpl-casebtn .casebtn-btn {
		transition: opacity 0.2s;
	}
	#freeContent .tpl-casebtn .casebtn-btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-mv {
	position: relative;
	background: #CF122E;
	padding-top: 56px;
	height: 698px;
}

@media (min-width: 641px) {
	#freeContent .sec-mv {
		overflow: hidden;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-mv {
		padding-top: 13.33333vw;
		height: 170.93333vw;
	}
}

#freeContent .sec-mv:after {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-top.png") 0 0 no-repeat;
	background-size: 100% 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-mv:after {
		bottom: -0.13333vw;
		min-width: initial;
		background-image: url("../img/bg-top_sp.png");
		height: 5.86667vw;
	}
}

#freeContent .sec-mv .inner {
	position: relative;
	width: 1126px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 641px) {
	#freeContent .sec-mv .inner {
		height: 515px;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-mv .inner {
		width: 100%;
	}
}

#freeContent .sec-mv .mv-ttl {
	position: relative;
	z-index: 99;
	top: 78px;
	width: 500px;
	overflow: visible;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-ttl {
		top: 0;
		width: 87.2vw;
		margin-left: auto;
		margin-right: auto;
		height: 54.13333vw;
		margin-bottom: 8vw;
	}
}

#freeContent .sec-mv .mv-ttl .mv-sou1 {
	position: absolute;
	left: 0;
	top: 12px;
	display: block;
	width: 265px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-ttl .mv-sou1 {
		width: 46.208vw;
		top: 2.13333vw;
	}
}

#freeContent .sec-mv .mv-ttl .mv-sou2 {
	position: absolute;
	left: 244px;
	top: 0;
	display: block;
	width: 256px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-ttl .mv-sou2 {
		width: 44.72267vw;
		left: 42.66667vw;
	}
}

#freeContent .sec-mv .mv-ttl .mv-logo {
	position: absolute;
	left: 0;
	top: 142px;
	display: block;
	width: 493px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-ttl .mv-logo {
		width: 86.08267vw;
		left: 0.8vw;
		top: 24.8vw;
	}
}

#freeContent .sec-mv .mv-ttl .mv-txt {
	position: absolute;
	left: 60px;
	top: 230px;
	display: block;
	width: 382px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-ttl .mv-txt {
		width: 66.70667vw;
		top: 40.26667vw;
		left: 10.4vw;
	}
}

#freeContent .sec-mv .inner {
	position: relative;
	opacity: 0;
	transition: opacity 0.3s;
}

#freeContent .sec-mv.show .inner {
	opacity: 1;
}

#freeContent .sec-mv .mv-sou1 {
	opacity: 0;
	transform-origin: bottom center;
}

#freeContent .sec-mv .mv-sou2 {
	opacity: 0;
	transform-origin: bottom center;
}

#freeContent .sec-mv.show .mv-sou1 {
	animation: bounding 0.7s forwards 0s 1 ease-out;
}

#freeContent .sec-mv.show .mv-sou2 {
	animation: bounding 0.7s forwards 0.2s 1 ease-out;
}

#freeContent .sec-mv .mv-slide {
	position: absolute;
	width: 100vw;
	right: -54px;
	top: 0;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide {
		position: relative;
		right: 0;
		width: 100%;
	}
}

#freeContent .sec-mv .mv-slide .mv-slide-item {
	text-align: right;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide .mv-slide-item {
		overflow: hidden;
		text-align: left;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide .mv-slide-item img {
		position: relative;
	}
}

#freeContent .sec-mv .mv-slide .mv-slide-item img.mv1 {
	width: 608px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide .mv-slide-item img.mv1 {
		width: 93.6vw;
		left: 3.2vw;
	}
}

#freeContent .sec-mv .mv-slide .mv-slide-item img.mv2 {
	width: 703px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide .mv-slide-item img.mv2 {
		width: 108vw;
		left: -5.33333vw;
	}
}

#freeContent .sec-mv .mv-slide .mv-slide-item img.mv3 {
	width: 742px;
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide .mv-slide-item img.mv3 {
		width: 114.13333vw;
		left: -15.2vw;
	}
}

#freeContent .sec-mv .mv-slide-play {
	position: absolute;
	bottom: 0;
	z-index: 11;
	background: 0 0 no-repeat;
	background-image: url("../img/icon-play.svg");
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

@media (min-width: 641px) {
	#freeContent .sec-mv .mv-slide-play {
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
		transform: translateX(50px);
	}
}

@media (max-width: 640px) {
	#freeContent .sec-mv .mv-slide-play {
		bottom: 0px;
		left: 16px;
	}
}

#freeContent .sec-mv .mv-slide-play.is_play {
	background-image: url("../img/icon-stop.svg");
}

@media (min-width: 641px) {
	#freeContent .sec-mv .mv-slide-play {
		transition: opacity 0.2s;
	}
	#freeContent .sec-mv .mv-slide-play:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-mv .swiper-pagination {
	position: absolute;
}

@media (min-width: 641px) {
	#freeContent .sec-mv .swiper-pagination {
		bottom: 0;
		right: 0;
		left: 0;
		margin: auto;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-mv .swiper-pagination {
		bottom: 0px;
		left: 0;
		padding-left: 50px;
		text-align: left;
	}
}

#freeContent .sec-mv .swiper-pagination .swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	opacity: 1;
	border: 1px solid #fff;
	background: none;
	margin: 0 6px;
}

#freeContent .sec-mv .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
}

#freeContent .sec-message {
	position: relative;
	padding-top: 72px;
	padding-bottom: 236px;
	background: #EBEBE6;
}

@media (max-width: 640px) {
	#freeContent .sec-message {
		padding-top: 22.93333vw;
		padding-bottom: 56vw;
	}
}

#freeContent .sec-message:after {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-bottom.png") 0 0 no-repeat;
	background-size: 100% 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-message:after {
		bottom: -5.73333vw;
		min-width: initial;
		background-image: url("../img/bg-bottom_sp.png");
		height: 5.86667vw;
	}
}

#freeContent .sec-message .message-waku {
	position: relative;
	width: 846px;
	margin-left: auto;
	margin-right: auto;
	height: 600px;
	background: url("../img/message-waku.svg") 0 0 no-repeat;
	background-size: 100% auto;
	padding-top: 65px;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-waku {
		width: 100%;
		height: 109.33333vw;
		background-image: url("../img/message-waku_sp.svg");
		padding: 0;
		padding-top: 2.7em;
	}
}

#freeContent .sec-message .message-waku .message-ttl {
	position: absolute;
	top: -30px;
	left: calc(50% - 100px);
	width: 200px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-waku .message-ttl {
		left: calc(50% - 18.66667vw);
		top: -5.86667vw;
		width: 37.33333vw;
	}
}

#freeContent .sec-message .message-waku > p {
	text-align: center;
	font-size: 30px;
	line-height: calc(60/30);
	font-weight: bold;
	color: #CF122E;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-waku > p {
		font-size: 4.26667vw;
		line-height: calc(66/30);
	}
}

#freeContent .sec-message .message-waku .message-waku-note {
	margin-top: 0.8em;
	text-align: center;
	font-size: 11px;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-waku .message-waku-note {
		font-size: 2.93333vw;
	}
}

#freeContent .sec-message .message-list {
	display: grid;
	gap: 64px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 104px;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list {
		gap: 52.26667vw;
		grid-template-columns: 1fr;
		margin-top: 23.46667vw;
	}
}

#freeContent .sec-message .message-list > li {
	position: relative;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list > li {
		width: 65.86667vw;
		margin-left: auto;
		margin-right: auto;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-message .message-list > li > a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-message .message-list > li > a:hover {
		opacity: 0.9;
	}
}

#freeContent .sec-message .message-list > li .ttl {
	position: absolute;
	left: -16px;
	top: -36px;
	width: 100px;
}

#freeContent .sec-message .message-list > li .ttl img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list > li .ttl {
		left: -10.66667vw;
		top: -9.6vw;
		width: 26.66667vw;
	}
}

#freeContent .sec-message .message-list > li .ph img {
	width: 100%;
}

#freeContent .sec-message .message-list > li .txt {
	position: absolute;
	right: -40px;
	bottom: -140px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	line-height: calc(32/20);
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list > li .txt {
		right: -10.66667vw;
		bottom: -41.6vw;
		width: 58.66667vw;
		height: 58.66667vw;
		font-size: 5.33333vw;
	}
}

#freeContent .sec-message .message-list > li .txt .txt-sub {
	margin-top: 0.5em;
	font-size: 15px;
	line-height: calc(24/15);
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list > li .txt .txt-sub {
		font-size: 4vw;
	}
}

#freeContent .sec-message .message-list > li .txt:after {
	position: absolute;
	left: calc(50% - 10px);
	bottom: 16px;
	display: block;
	content: '';
	background: url("../img/icon-arrow-down.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-top: 0.5em;
}

@media (max-width: 640px) {
	#freeContent .sec-message .message-list > li .txt:after {
		left: calc(50% - 2.66667vw);
		bottom: 7.46667vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

#freeContent .sec-message .message-list > li:nth-child(1) .txt {
	background: #6E96D2;
}

#freeContent .sec-message .message-list > li:nth-child(2) .txt {
	background: #F5BE1E;
}

#freeContent .sec-message .message-list > li:nth-child(3) .txt {
	background: #50C3AA;
}

#freeContent .sec-message .message-list > li:nth-child(1) .ttl {
	opacity: 0;
	transform-origin: bottom center;
}

#freeContent .sec-message .message-list > li:nth-child(2) .ttl {
	opacity: 0;
	transform-origin: bottom center;
}

#freeContent .sec-message .message-list > li:nth-child(3) .ttl {
	opacity: 0;
	transform-origin: bottom center;
}

#freeContent .sec-message .message-list.show > li:nth-child(1) .ttl {
	animation: bounding 0.7s forwards 0s 1 ease-out;
}

#freeContent .sec-message .message-list.show > li:nth-child(2) .ttl {
	animation: bounding 0.7s forwards 0.2s 1 ease-out;
}

#freeContent .sec-message .message-list.show > li:nth-child(3) .ttl {
	animation: bounding 0.7s forwards 0.4s 1 ease-out;
}

#freeContent .tpl-ttl .tpl-ttl-txt {
	text-align: center;
	color: #CF122E;
	font-weight: bold;
	font-size: 40px;
	line-height: calc(64/40);
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .tpl-ttl .tpl-ttl-txt {
		font-size: 8vw;
		line-height: calc(48/30);
	}
}

#freeContent .tpl-ttl .tpl-ttl-txt > span {
	background-image: linear-gradient(transparent 70%, #EBEBE6 0%);
}

#freeContent .tpl-ttl .tpl-ttl-txt.inverse > span {
	background-image: linear-gradient(transparent 70%, #FAFAF5 0%);
}

#freeContent .tpl-ttl .tpl-ttl-txt .sm {
	font-size: 30px;
}

@media (max-width: 640px) {
	#freeContent .tpl-ttl .tpl-ttl-txt .sm {
		font-size: 6.4vw;
	}
}

#freeContent .tpl-ttl .tpl-ttl-num {
	width: 160px;
	margin-left: auto;
	margin-right: auto;
}

#freeContent .tpl-ttl .tpl-ttl-num img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .tpl-ttl .tpl-ttl-num {
		width: 37.33333vw;
	}
}

#freeContent .tpl-lead {
	margin-top: 2em;
	text-align: center;
	font-size: 15px;
	line-height: calc(30/15);
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .tpl-lead {
		text-align: left;
		font-size: 4vw;
	}
}

#freeContent .tpl-midasi {
	text-align: center;
	margin-top: 80px;
}

@media (max-width: 640px) {
	#freeContent .tpl-midasi {
		margin-top: 17.06667vw;
	}
}

#freeContent .tpl-midasi .tpl-midasi-num {
	font-family: "Poppins", sans-serif !important;
	font-weight: bold;
	color: #CF122E;
	font-size: 20px;
}

@media (max-width: 640px) {
	#freeContent .tpl-midasi .tpl-midasi-num {
		font-size: 5.33333vw;
	}
}

#freeContent .tpl-midasi .tpl-midasi-txt {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #CF122E;
	color: #fff;
	padding: 0 0.8em;
	font-weight: bold;
	border-radius: 8px;
	height: 40px;
	font-size: 20px;
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .tpl-midasi .tpl-midasi-txt {
		height: auto;
		min-height: 9.86667vw;
		border-radius: 2.13333vw;
		font-size: 4.8vw;
		line-height: calc(25/18);
		padding: 0.4em 0.8em;
	}
}

#freeContent .tpl-midasi .tpl-midasi-txt:after {
	position: absolute;
	display: block;
	content: '';
	background: url("../img/fukidasi.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: -12px;
}

@media (max-width: 640px) {
	#freeContent .tpl-midasi .tpl-midasi-txt:after {
		width: 3.2vw;
		height: 3.2vw;
		left: calc(50% - 1.6vw);
		bottom: -3.06667vw;
	}
}

#freeContent .sec-service {
	position: relative;
	padding-top: 160px;
	padding-bottom: 240px;
}

@media (max-width: 640px) {
	#freeContent .sec-service {
		padding-top: 23.2vw;
		padding-bottom: 28vw;
	}
}

#freeContent .sec-service:before {
	top: 0;
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-bottom.png") 0 0 no-repeat;
	background-size: 100% 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-service:before {
		bottom: -5.73333vw;
		min-width: initial;
		background-image: url("../img/bg-bottom_sp.png");
		height: 5.86667vw;
	}
}

#freeContent .sec-service:after {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-top.png") 0 0 no-repeat;
	background-size: 100% 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-service:after {
		bottom: -0.13333vw;
		min-width: initial;
		background-image: url("../img/bg-top_sp.png");
		height: 5.86667vw;
	}
}

#freeContent .sec-service .service-main {
	position: relative;
	margin-top: 40px;
	width: 1006px;
	margin-left: auto;
	margin-right: auto;
	height: 590px;
}

@media (min-width: 641px) {
	#freeContent .sec-service .service-main {
		overflow: hidden !important;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-main {
		margin-top: 6.4vw;
		width: 100%;
		padding-left: 6%;
		overflow-x: scroll;
		overflow-y: hidden !important;
		height: 141.33333vw;
	}
}

#freeContent .sec-service .service-main img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-main img {
		width: 195.2vw;
	}
}

#freeContent .sec-service .service-main .service-main-circle {
	position: relative;
	top: -160px;
	text-align: center;
	background: #6E96D2;
	border-radius: 50%;
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: #fff;
	line-height: calc(21/15);
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-main .service-main-circle {
		top: -24vw;
		width: 53.33333vw;
		height: 53.33333vw;
		font-size: 4vw;
	}
}

#freeContent .sec-service .service-main .service-main-circle .q {
	margin-top: 0.2em;
}

#freeContent .sec-service .service-main .service-main-circle .num {
	font-family: "Poppins", sans-serif !important;
	font-size: 48px;
	line-height: 1;
	margin-top: 0.1em;
}

#freeContent .sec-service .service-main .service-main-circle .service-main-circle-note {
	font-size: 10px;
	margin-top: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-main .service-main-circle .service-main-circle-note {
		font-size: 2.66667vw;
	}
}

#freeContent .sec-service .service-case .case-head {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #6E96D2;
	color: #fff;
	padding: 0 0.8em;
	font-weight: bold;
	border-radius: 8px;
	height: 40px;
	font-size: 20px;
	letter-spacing: 0.1em;
}

#freeContent .sec-service .service-case .case-list {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	margin-top: 44px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list {
		grid-template-columns: 1fr;
		gap: 10.66667vw;
	}
}

#freeContent .sec-service .service-case .case-list > li {
	position: relative;
	padding-top: 133px;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(1) .case-list-head {
	background: #B4D7FA;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(1) .case-list-head .case-list-head-img {
	top: -20px;
	left: calc(50% - 31px);
}

#freeContent .sec-service .service-case .case-list > li:nth-child(1) .case-list-head .case-list-head-img img {
	width: 62px;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(2) .case-list-head {
	background: #CDE6FA;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(2) .case-list-head .case-list-head-img {
	top: -16px;
	left: calc(50% - 70px);
}

#freeContent .sec-service .service-case .case-list > li:nth-child(2) .case-list-head .case-list-head-img img {
	width: 140px;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(3) .case-list-head {
	background: #E6F5FF;
}

#freeContent .sec-service .service-case .case-list > li:nth-child(3) .case-list-head .case-list-head-img {
	top: 10px;
	left: calc(50% - 126.5px);
}

#freeContent .sec-service .service-case .case-list > li:nth-child(3) .case-list-head .case-list-head-img img {
	width: 253px;
}

#freeContent .sec-service .service-case .case-list > li a {
	color: currentColor;
}

@media (min-width: 641px) {
	#freeContent .sec-service .service-case .case-list > li a .case-list-ph {
		transition: opacity 0.2s;
	}
	#freeContent .sec-service .service-case .case-list > li a:hover .case-list-ph {
		opacity: 0.8;
	}
	#freeContent .sec-service .service-case .case-list > li a:hover .case-list-ttl {
		color: #CF122E;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-head {
	position: absolute;
	top: 0;
	left: calc(50% - 90px);
	width: 180px;
	height: 180px;
	border-radius: 50%;
	display: flex;
	align-items: flex-end;
	padding-bottom: 60px;
}

#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-img {
	position: absolute;
}

#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-scene {
	width: 100%;
	display: flex;
	justify-content: center;
}

#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-scene > span {
	position: relative;
	display: inline-block;
	color: #6E96D2;
	font-weight: bold;
	font-size: 24px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-scene > span {
		font-size: 4.8vw;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-scene > span:before {
	content: '';
	display: block;
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 100%;
	height: 8px;
	background: #fff;
}

#freeContent .sec-service .service-case .case-list .case-list-head .case-list-head-scene > span > span {
	position: relative;
}

#freeContent .sec-service .service-case .case-list .case-list-ph {
	position: relative;
}

#freeContent .sec-service .service-case .case-list .case-list-ph:after {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: block;
	content: '';
	background: url("../img/icon-arrow_red.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-ph:after {
		right: 3.2vw;
		bottom: 3.2vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-ph img {
	width: 100%;
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-ph img {
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-ttl {
	color: #283250;
	font-weight: bold;
	line-height: calc(29/18);
	font-size: 18px;
	margin-top: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-ttl {
		font-size: 4.8vw;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-ttl span {
	font-size: 13px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-ttl span {
		font-size: 3.46667vw;
	}
}

#freeContent .sec-service .service-case .case-list .case-list-txt {
	margin-top: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-case .case-list .case-list-txt {
		font-size: 4vw;
	}
}

#freeContent .sec-service .service-kind-img {
	margin-top: 3em;
	margin-bottom: 4em;
	text-align: center;
	width: 1006px;
	margin-left: auto;
	margin-right: auto;
}

#freeContent .sec-service .service-kind-img img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-kind-img {
		position: relative;
		width: 89.6vw;
		left: -1.33333vw;
	}
}

#freeContent .sec-service .service-kind-note {
	margin-top: 4em;
	font-size: 11px;
	line-height: 2;
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-kind-note {
		font-size: 2.93333vw;
		text-align: left;
	}
}

#freeContent .sec-service .service-list {
	margin-top: 52px;
	display: grid;
	gap: 39px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list {
		margin-top: 13.86667vw;
		gap: 16vw;
		grid-template-columns: 1fr;
	}
}

#freeContent .sec-service .service-list > li a {
	display: block;
}

@media (min-width: 641px) {
	#freeContent .sec-service .service-list > li a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-service .service-list > li a:hover {
		opacity: 0.8;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li a {
		width: 65.86667vw;
		margin-left: auto;
		margin-right: auto;
	}
}

#freeContent .sec-service .service-list > li .ph img {
	width: 100%;
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li .ph img {
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-service .service-list > li .ttl {
	height: 66px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li .ttl {
		height: 18.66667vw;
	}
}

#freeContent .sec-service .service-list > li .ttl .ttl-inner {
	text-align: center;
	color: #6E96D2;
	font-weight: bold;
	font-size: 20px;
	line-height: 1.3;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li .ttl .ttl-inner {
		font-size: 5.33333vw;
	}
}

#freeContent .sec-service .service-list > li .ttl .ttl-inner .small {
	font-size: 0.75em;
}

#freeContent .sec-service .service-list > li .ttl:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 0.5em;
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li .ttl:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-service .service-list > li .txt {
		font-size: 4vw;
	}
}

#freeContent .sec-service .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #786E64;
	width: 415px;
	height: 60px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}

@media (max-width: 640px) {
	#freeContent .sec-service .btn {
		width: 100%;
		height: 21.33333vw;
		border-radius: 10.66667vw;
		margin-top: 2em;
	}
}

#freeContent .sec-service .btn > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-service .btn > div {
		font-size: 4vw;
	}
}

#freeContent .sec-service .btn > div:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-service .btn > div:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-service .btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-service .btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-service .btn__pg > div:after {
	transform: rotate(90deg);
}

#freeContent .sec-solution {
	position: relative;
	background: #EBEBE6;
	padding-top: 40px;
	padding-bottom: 80px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution {
		padding-top: 15.46667vw;
		padding-bottom: 15.46667vw;
	}
}

#freeContent .sec-solution .solution-list {
	margin-top: 50px;
	display: grid;
	gap: 63px;
	grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution-list {
		margin-top: 13.33333vw;
		gap: 26.66667vw;
		grid-template-columns: 1fr;
	}
}

#freeContent .sec-solution .solution-list > li {
	position: relative;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution-list > li {
		width: 65.86667vw;
		margin-left: auto;
		margin-right: auto;
	}
}

#freeContent .sec-solution .solution-list > li + li:before {
	display: block;
	content: '';
	background: url("../img/arrow-right.svg") 0 0 no-repeat;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 131px;
	left: -47px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution-list > li + li:before {
		width: 8.53333vw;
		height: 8.53333vw;
		background-image: url("../img/arrow-down.svg");
		left: calc(50% - 4.26667vw);
		top: -17.6vw;
	}
}

#freeContent .sec-solution .solution-list > li .ph img {
	width: 100%;
}

#freeContent .sec-solution .solution-list > li .txt {
	position: absolute;
	right: -24px;
	bottom: -60px;
	width: 140px;
	height: 140px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
	background: #F5BE1E;
	border-radius: 50%;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution-list > li .txt {
		right: -10.66667vw;
		bottom: -18.66667vw;
		width: 37.33333vw;
		height: 37.33333vw;
		font-size: 4vw;
	}
}

#freeContent .sec-solution .solution-list > li:nth-child(1) {
	opacity: 0;
}

#freeContent .sec-solution .solution-list > li:nth-child(2) {
	opacity: 0;
}

#freeContent .sec-solution .solution-list > li:nth-child(3) {
	opacity: 0;
}

#freeContent .sec-solution .solution-list.show > li:nth-child(1) {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0s;
	animation-name: fadeInUp;
}

#freeContent .sec-solution .solution-list.show > li:nth-child(2) {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0.2s;
	animation-name: fadeInUp;
}

#freeContent .sec-solution .solution-list.show > li:nth-child(3) {
	animation-fill-mode: both;
	animation-duration: 0.5s;
	animation-delay: 0.4s;
	animation-name: fadeInUp;
}

#freeContent .sec-solution .solution2 .solution2-cont {
	margin-top: 52px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont {
		margin-top: 9.6vw;
		display: block;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img {
	position: relative;
	width: 646px;
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img {
		width: 100%;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt {
	position: absolute;
	top: 20px;
	left: calc(50% - 211px);
	width: 422px;
	height: 84px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt {
		top: 5.33333vw;
		width: 62.4vw;
		height: 38.66667vw;
		justify-content: center;
		flex-direction: column;
		left: calc(50% - 31.2vw);
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-name {
	font-size: 20px;
	font-weight: bold;
	line-height: calc(32/20);
	letter-spacing: 0.2em;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-name {
		font-size: 5.33333vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q {
	display: flex;
	align-items: center;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q {
		line-height: 1;
		margin-top: 2.66667vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q .t {
	font-size: 20px;
	font-weight: bold;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q .t {
		font-size: 5.33333vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q .num {
	font-family: "Poppins", sans-serif !important;
	font-weight: bold;
	font-size: 60px;
	margin: 0 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-q .num {
		font-size: 16vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-note {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: 10px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-img .solution2-img-txt .solution2-img-txt-note {
		position: static;
		width: 100%;
		text-align: right;
		font-size: 2.66667vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt {
	width: 320px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt {
		width: 100%;
		margin-top: 10.66667vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .ttl {
	height: 32px;
	background: #fff;
	font-weight: bold;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .ttl {
		height: 8.53333vw;
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .list {
	height: calc(100% - 32px);
	display: grid;
	grid-template-columns: 1fr;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .list {
		display: block;
		height: calc(100% - 8.53333vw);
	}
}

#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .list > li {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-bottom: 1px solid #D2D2BE;
	font-size: 13px;
	font-weight: bold;
	line-height: calc(21/13);
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .list > li {
		padding: 1em 0;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-cont .solution2-txt .list > li {
		font-size: 3.46667vw;
	}
}

#freeContent .sec-solution .solution2 .solution2-note {
	font-size: 11px;
	line-height: 2;
	margin-top: 3em;
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution2 .solution2-note {
		text-align: left;
		font-size: 2.93333vw;
	}
}

#freeContent .sec-solution .solution3-cont {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 52px;
	background: #fff;
	border-radius: 8px;
	padding: 0 65px;
	padding-top: 55px;
	padding-bottom: 40px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont {
		display: block;
		margin-top: 9.6vw;
		border-radius: 2.13333vw;
		padding: 0 4.26667vw;
		padding-top: 18.13333vw;
		padding-bottom: 10.66667vw;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-head {
	position: absolute;
	width: 100%;
	left: 0;
	top: -1em;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	color: #6E96D2;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-head {
		font-size: 4.8vw;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-img img {
	width: 343px;
	height: 271px;
	border-radius: 16px;
	object-fit: cover;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-img img {
		width: 100%;
		border-radius: 4.26667vw;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-txt {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 495px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt {
		width: 100%;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-txt p {
	letter-spacing: 0.1em;
	font-size: 15px;
	line-height: 2;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt p {
		margin-top: 1.5em;
		font-size: 4vw;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #786E64;
	height: 60px;
	border-radius: 30px;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn {
		height: 21.33333vw;
		border-radius: 10.66667vw;
		margin-top: 2em;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn > div {
		font-size: 4vw;
	}
}

#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn > div:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn > div:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-solution .solution3-cont .solution3-cont-txt .btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-support {
	position: relative;
	padding-top: 160px;
	padding-bottom: 90px;
}

@media (max-width: 640px) {
	#freeContent .sec-support {
		padding-bottom: 25.06667vw;
	}
}

#freeContent .sec-support:before {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-bottom.png") 0 0 no-repeat;
	background-size: 100% 100%;
	top: 0;
}

@media (max-width: 640px) {
	#freeContent .sec-support:before {
		bottom: -5.73333vw;
		min-width: initial;
		background-image: url("../img/bg-bottom_sp.png");
		height: 5.86667vw;
	}
}

#freeContent .sec-support .support1-list {
	margin-top: 50px;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-list {
		margin-top: 13.33333vw;
		gap: 26.66667vw;
		grid-template-columns: 1fr;
	}
}

#freeContent .sec-support .support1-list > li {
	position: relative;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-list > li {
		width: 65.86667vw;
		margin-left: auto;
		margin-right: auto;
	}
}

#freeContent .sec-support .support1-list > li .ph img {
	width: 100%;
}

#freeContent .sec-support .support1-list > li .txt {
	position: absolute;
	right: -24px;
	bottom: -76px;
	width: 140px;
	height: 140px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
	background: #50C3AA;
	border-radius: 50%;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-list > li .txt {
		right: -10.66667vw;
		bottom: -18.66667vw;
		width: 37.33333vw;
		height: 37.33333vw;
		font-size: 4vw;
	}
}

#freeContent .sec-support .support1-aside {
	display: flex;
	flex-wrap: wrap;
	margin-top: 116px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside {
		margin-top: 26.66667vw;
	}
}

#freeContent .sec-support .support1-aside > div {
	position: relative;
	padding-left: 80px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div {
		padding-left: 0;
		display: flex;
		flex-wrap: wrap;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div + div {
		margin-top: 10.66667vw;
	}
}

#freeContent .sec-support .support1-aside > div + div:before {
	position: absolute;
	left: -40px;
	top: 10px;
	display: block;
	content: '';
	width: 2px;
	height: 116px;
	background: #EBEBE6;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div + div:before {
		display: none;
	}
}

#freeContent .sec-support .support1-aside > div.support1-aside1 {
	width: 603px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div.support1-aside1 {
		width: 100%;
	}
}

#freeContent .sec-support .support1-aside > div.support1-aside1 .txt, #freeContent .sec-support .support1-aside > div.support1-aside1 .head-txt {
	width: 419px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div.support1-aside1 .txt, #freeContent .sec-support .support1-aside > div.support1-aside1 .head-txt {
		width: 100%;
	}
}

#freeContent .sec-support .support1-aside > div.support1-aside2 {
	width: calc(100% - 603px);
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div.support1-aside2 {
		width: 100%;
	}
}

#freeContent .sec-support .support1-aside > div.support1-aside2 .txt, #freeContent .sec-support .support1-aside > div.support1-aside2 .head-txt {
	width: 299px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div.support1-aside2 .txt, #freeContent .sec-support .support1-aside > div.support1-aside2 .head-txt {
		width: 100%;
	}
}

#freeContent .sec-support .support1-aside > div .head-icon {
	position: absolute;
	left: 0;
	top: 18px;
	width: 80px;
	height: 80px;
}

#freeContent .sec-support .support1-aside > div .head-icon img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div .head-icon {
		position: static;
		width: 17.06667vw;
		height: 17.06667vw;
	}
}

#freeContent .sec-support .support1-aside > div .head-txt {
	font-weight: bold;
	color: #50C3AA;
	font-size: 20px;
	margin-left: 24px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div .head-txt {
		display: flex;
		align-items: center;
		width: calc(100% - 17.06667vw) !important;
		font-size: 5.33333vw;
		margin-left: 0;
		padding-left: 0.8em;
	}
}

#freeContent .sec-support .support1-aside > div .txt {
	width: 419px;
	margin-top: 1em;
	font-size: 13px;
	margin-left: 24px;
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support1-aside > div .txt {
		margin-left: 0;
		width: 100%;
		font-size: 3.46667vw;
	}
}

#freeContent .sec-support .support2 .support2-cont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin-top: 52px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-cont {
		margin-top: 17.33333vw;
	}
}

#freeContent .sec-support .support2 .support2-list {
	display: grid;
	gap: 40px 40px;
	grid-template-columns: 1fr 1fr 1fr;
	width: 728px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list {
		width: 100%;
		gap: 16px 7px;
		grid-template-columns: 1fr 1fr;
	}
}

#freeContent .sec-support .support2 .support2-list > li {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 216px;
	height: 216px;
	background: #50C3AA;
	border-radius: 50%;
	color: #fff;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li {
		width: 42.66667vw;
		height: 42.66667vw;
	}
}

#freeContent .sec-support .support2 .support2-list > li .ttl {
	position: relative;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li .ttl {
		font-size: 3.46667vw;
	}
}

#freeContent .sec-support .support2 .support2-list > li .ttl:after {
	display: block;
	content: '';
	background: #fff;
	width: 24px;
	height: 1px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.6em;
	margin-bottom: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li .ttl:after {
		width: 4.26667vw;
	}
}

#freeContent .sec-support .support2 .support2-list > li .txt {
	font-weight: bold;
	line-height: 1;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li .txt {
		font-size: 3.46667vw;
	}
}

#freeContent .sec-support .support2 .support2-list > li .txt .num {
	font-weight: bold;
	font-family: "Poppins", sans-serif !important;
	font-size: 40px;
	margin: 0 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li .txt .num {
		font-size: 7.46667vw;
	}
}

#freeContent .sec-support .support2 .support2-list > li .time {
	text-align: center;
	font-size: 10px;
	margin-top: 0.7em;
	line-height: 1.2;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-list > li .time {
		font-size: 2.66667vw;
	}
}

#freeContent .sec-support .support2 .support2-aside {
	background: #fff;
	width: 216px;
	padding: 8px;
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-aside {
		margin-top: 10.66667vw;
		width: 100%;
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-support .support2 .support2-aside p {
	padding: 2em 1em;
	font-size: 13px;
	line-height: 2;
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-aside p {
		font-size: 3.46667vw;
	}
}

#freeContent .sec-support .support2 .support2-aside .support2-aside-movie {
	position: relative;
}

#freeContent .sec-support .support2 .support2-aside .support2-aside-movie:before {
	display: block;
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
}

#freeContent .sec-support .support2 .support2-aside .support2-aside-movie:after {
	position: absolute;
	left: calc(50% - 20px);
	top: calc(50% - 20px);
	display: block;
	content: '';
	background: url("../img/icon-movie.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 40px;
	height: 40px;
}

#freeContent .sec-support .support2 .support2-aside .support2-aside-movie img {
	border-radius: 4px;
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-support .support2 .support2-aside .support2-aside-movie img {
		border-radius: 1.06667vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-support .support2 .support2-aside .support2-aside-movie {
		transition: opacity 0.2s;
	}
	#freeContent .sec-support .support2 .support2-aside .support2-aside-movie:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-support .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #786E64;
	width: 415px;
	height: 60px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
}

@media (max-width: 640px) {
	#freeContent .sec-support .btn {
		width: 100%;
		height: 21.33333vw;
		border-radius: 10.66667vw;
		margin-top: 2em;
	}
}

#freeContent .sec-support .btn > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-support .btn > div {
		font-size: 4vw;
	}
}

#freeContent .sec-support .btn > div:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-support .btn > div:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-support .btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-support .btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-sdgs {
	position: relative;
	background-color: #DCEFEB;
	padding: 160px 0 125px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs {
		padding: 21.33333vw 0 32vw;
	}
}

#freeContent .sec-sdgs:before {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-bottom.png") 0 0 no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-top.png") 0 0 no-repeat;
	background-size: 100% 100%;
	background-image: url("../img/bg-bottom-w.webp");
	top: 0;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs:before {
		bottom: -5.73333vw;
		min-width: initial;
		background-image: url("../img/bg-bottom_sp.png");
		height: 5.86667vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs:before {
		bottom: -0.13333vw;
		min-width: initial;
		background-image: url("../img/bg-top_sp.png");
		height: 5.86667vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs:before {
		background-image: url("../img/bg-bottom-w_sp.webp");
	}
}

#freeContent .sec-sdgs:after {
	position: absolute;
	bottom: 0;
	left: 0;
	min-width: 1006px;
	width: 100%;
	height: 80px;
	display: block;
	content: '';
	background: url("../img/bg-top.png") 0 0 no-repeat;
	background-size: 100% 100%;
	background-image: url("../img/bg-top-w.webp");
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs:after {
		bottom: -0.13333vw;
		min-width: initial;
		background-image: url("../img/bg-top_sp.png");
		height: 5.86667vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs:after {
		background-image: url("../img/bg-top-w_sp.webp");
	}
}

#freeContent .sec-sdgs .tpl-ttl .tpl-ttl-num {
	width: 258px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .tpl-ttl .tpl-ttl-num {
		width: 42.66667vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .tpl-ttl-txt {
		letter-spacing: 0.05em;
	}
}

#freeContent .sec-sdgs .tpl-ttl-txt > span {
	background-image: linear-gradient(transparent 70%, #bae2d9 0%);
}

#freeContent .sec-sdgs .swiper-container {
	position: relative;
	overflow: hidden;
	padding-left: 15vw;
	padding-top: 70px;
	padding-bottom: 100px;
	mask-image: linear-gradient(to right, transparent 0%, black 10%, black 50%, black 90%, transparent 100%);
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container {
		padding-left: 6.66667vw;
		padding-bottom: 13.33333vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper {
	overflow: visible;
	margin-right: 15vw;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper {
		margin-right: 6.66667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-wrapper {
	height: auto;
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide {
	background-color: white;
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
	border-radius: 16px;
	flex-grow: 1;
	height: auto;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide {
		width: 109.33333vw;
		border-radius: 4.26667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .card {
		width: 100%;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .card::after {
	display: block;
	content: '';
	background: url(../img/icon-arrow-red.svg) 0 0 no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .card::after {
		width: 6.4vw;
		height: 6.4vw;
		right: 2.66667vw;
		bottom: 2.66667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .image {
	height: 300px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .image {
		height: auto;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .image img {
	object-fit: cover;
	width: 100%;
	height: 300px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .image img {
		width: 100%;
		height: auto;
		border-top-left-radius: 4.26667vw;
		border-top-right-radius: 4.26667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .content {
	padding: 17px 16px 21px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .content {
		padding: 3.2vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .cap {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #CF122E;
	color: #fff;
	padding: 0 0.8em;
	font-weight: 500;
	border-radius: 8px;
	width: 100%;
	height: 60px;
	font-size: 16px;
	line-height: 1.4;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .cap {
		height: auto;
		min-height: 9.86667vw;
		border-radius: 2.13333vw;
		font-size: 3.33333vw;
		line-height: calc(19/13);
		padding: 0.4em 0.4em;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .cap:after {
	position: absolute;
	display: block;
	content: '';
	background: url("../img/fukidasi.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: -12px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide .cap:after {
		width: 3.2vw;
		height: 3.2vw;
		left: calc(50% - 1.6vw);
		bottom: -3.06667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide dl {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide dl dt {
	color: #CF122E;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	padding-top: 25px;
	padding-bottom: 16px;
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide dl dt {
		font-size: 4.8vw;
		padding-top: 6.66667vw;
		padding-bottom: 4.26667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide dl dd {
	font-size: 15px;
	line-height: calc(24/15);
	margin-left: 0;
	font-weight: 500;
	letter-spacing: 0.05em;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide dl dd {
		font-size: 3.46667vw;
		line-height: calc(24/13);
	}
}

#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide a {
	height: 100%;
	color: #786E64;
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-sdgs .swiper-container .swiper .swiper-slide a:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper-button-prev,
#freeContent .sec-sdgs .swiper-container .swiper-button-next {
	width: 50px;
	height: 50px;
	transition: all 0.3s;
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .swiper-container .swiper-button-prev:hover,
	#freeContent .sec-sdgs .swiper-container .swiper-button-next:hover {
		opacity: .6;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper-button-prev,
	#freeContent .sec-sdgs .swiper-container .swiper-button-next {
		width: 10.66667vw;
		height: 10.66667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper-button-prev {
	left: calc(50% - 504px);
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper-button-prev {
		left: 2.66667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper-button-next {
	right: calc(50% - 504px);
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .swiper-container .swiper-button-next {
		right: 2.66667vw;
	}
}

#freeContent .sec-sdgs .swiper-container .swiper-button-next::after,
#freeContent .sec-sdgs .swiper-container .swiper-button-prev::after {
	content: "";
	width: 100%;
	height: 100%;
}

#freeContent .sec-sdgs .swiper-container .swiper-button-next::after {
	background-image: url("../img/icon-arrow-white-red.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

#freeContent .sec-sdgs .swiper-container .swiper-button-prev::after {
	background-image: url("../img/icon-arrow-white-red.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(180deg);
}

#freeContent .sec-sdgs .swiper-container .swiper-button-disabled {
	opacity: 0;
}

#freeContent .sec-sdgs .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #786E64;
	width: 415px;
	height: 60px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .btn {
		width: 100%;
		height: 21.33333vw;
		border-radius: 10.66667vw;
	}
}

#freeContent .sec-sdgs .btn > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .btn > div {
		font-size: 4vw;
	}
}

#freeContent .sec-sdgs .btn > div:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .btn > div:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-sdgs .btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-sdgs .sdgs-title {
	margin-top: 60px;
	padding-bottom: 0.3em;
	font-size: 23px;
	line-height: calc(35/23);
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.07em;
	border-bottom: 3px solid #CF122E;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-title {
		margin-top: 16vw;
		font-size: 6.13333vw;
		border-bottom: 0.8vw solid #CF122E;
	}
}

#freeContent .sec-sdgs .sdgs-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
	margin-top: 20px;
	margin-bottom: 80px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list {
		gap: 4.26667vw;
		margin-top: 10.66667vw;
		margin-bottom: 9.6vw;
	}
}

#freeContent .sec-sdgs .sdgs-list > li {
	width: 325px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li {
		width: 100%;
	}
}

#freeContent .sec-sdgs .sdgs-list > li > a {
	position: relative;
	display: block;
	color: currentColor;
	border-radius: 16px;
	background: #fff;
	height: 100%;
	padding: 16px;
	padding-bottom: 40px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li > a {
		width: 100%;
		border-radius: 4.26667vw;
		padding: 4.26667vw;
		padding-bottom: 10.66667vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .sdgs-list > li > a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-sdgs .sdgs-list > li > a:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-sdgs .sdgs-list > li > a .ph img {
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li > a .ph img {
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-sdgs .sdgs-list > li > a .ttl {
	text-align: center;
	color: #CE122E;
	font-weight: bold;
	font-size: 22px;
	line-height: calc(28/22);
}

@media (min-width: 641px) {
	#freeContent .sec-sdgs .sdgs-list > li > a .ttl {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 60px;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li > a .ttl {
		font-size: 5.86667vw;
		margin-top: 0.8em;
		margin-bottom: 0.4em;
	}
}

#freeContent .sec-sdgs .sdgs-list > li > a .txt {
	padding: 0 0.5em;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li > a .txt {
		font-size: 4vw;
	}
}

#freeContent .sec-sdgs .sdgs-list > li > a:after {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: block;
	content: '';
	background: url(../img/icon-arrow_red.svg) 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
}

@media (max-width: 640px) {
	#freeContent .sec-sdgs .sdgs-list > li > a:after {
		right: 3.2vw;
		bottom: 3.2vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

#freeContent .sec-pickup {
	padding: 95px 0 125px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup {
		padding: 21.33333vw 0 32vw;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .tpl-ttl-txt {
		letter-spacing: 0.05em;
	}
}

#freeContent .sec-pickup .swiper-container {
	position: relative;
	overflow: hidden;
	padding-left: 15vw;
	padding-top: 70px;
	padding-bottom: 100px;
	mask-image: linear-gradient(to right, transparent 0%, black 10%, black 50%, black 90%, transparent 100%);
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container {
		padding-left: 6.66667vw;
		padding-bottom: 13.33333vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper {
	overflow: visible;
	margin-right: 15vw;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper {
		margin-right: 6.66667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-wrapper {
	height: auto;
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide {
	background-color: white;
	box-sizing: border-box;
	width: 100%;
	max-width: 300px;
	border-radius: 16px;
	flex-grow: 1;
	height: auto;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide {
		width: 109.33333vw;
		border-radius: 4.26667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .card {
		width: 100%;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .card::after {
	display: block;
	content: '';
	background: url(../img/icon-arrow-red.svg) 0 0 no-repeat;
	background-size: 100% auto;
	width: 24px;
	height: 24px;
	position: absolute;
	right: 10px;
	bottom: 10px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .card::after {
		width: 6.4vw;
		height: 6.4vw;
		right: 2.66667vw;
		bottom: 2.66667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .image {
	height: 300px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .image {
		height: auto;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .image img {
	object-fit: cover;
	width: 100%;
	height: 300px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .image img {
		width: 100%;
		height: auto;
		border-top-left-radius: 4.26667vw;
		border-top-right-radius: 4.26667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .content {
	padding: 17px 16px 21px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .content {
		padding: 3.2vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .cap {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background: #CF122E;
	color: #fff;
	padding: 0 0.8em;
	font-weight: 500;
	border-radius: 8px;
	width: 100%;
	height: 60px;
	font-size: 16px;
	line-height: 1.4;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .cap {
		height: auto;
		min-height: 9.86667vw;
		border-radius: 2.13333vw;
		font-size: 3.33333vw;
		line-height: calc(19/13);
		padding: 0.4em 0.4em;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .cap:after {
	position: absolute;
	display: block;
	content: '';
	background: url("../img/fukidasi.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	bottom: -12px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide .cap:after {
		width: 3.2vw;
		height: 3.2vw;
		left: calc(50% - 1.6vw);
		bottom: -3.06667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide dl {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide dl dt {
	color: #CF122E;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.4;
	padding-top: 25px;
	padding-bottom: 16px;
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide dl dt {
		font-size: 4.8vw;
		padding-top: 6.66667vw;
		padding-bottom: 4.26667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide dl dd {
	font-size: 15px;
	line-height: calc(24/15);
	margin-left: 0;
	font-weight: 500;
	letter-spacing: 0.05em;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide dl dd {
		font-size: 3.46667vw;
		line-height: calc(24/13);
	}
}

#freeContent .sec-pickup .swiper-container .swiper .swiper-slide a {
	height: 100%;
	color: #786E64;
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-pickup .swiper-container .swiper .swiper-slide a:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-pickup .swiper-container .swiper-button-prev,
#freeContent .sec-pickup .swiper-container .swiper-button-next {
	width: 50px;
	height: 50px;
	transition: all 0.3s;
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .swiper-container .swiper-button-prev:hover,
	#freeContent .sec-pickup .swiper-container .swiper-button-next:hover {
		opacity: .6;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper-button-prev,
	#freeContent .sec-pickup .swiper-container .swiper-button-next {
		width: 10.66667vw;
		height: 10.66667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper-button-prev {
	left: calc(50% - 504px);
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper-button-prev {
		left: 2.66667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper-button-next {
	right: calc(50% - 504px);
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .swiper-container .swiper-button-next {
		right: 2.66667vw;
	}
}

#freeContent .sec-pickup .swiper-container .swiper-button-next::after,
#freeContent .sec-pickup .swiper-container .swiper-button-prev::after {
	content: "";
	width: 100%;
	height: 100%;
}

#freeContent .sec-pickup .swiper-container .swiper-button-next::after {
	background-image: url("../img/icon-arrow-white-red.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

#freeContent .sec-pickup .swiper-container .swiper-button-prev::after {
	background-image: url("../img/icon-arrow-white-red.svg");
	background-repeat: no-repeat;
	background-size: contain;
	transform: rotate(180deg);
}

#freeContent .sec-pickup .swiper-container .swiper-button-disabled {
	opacity: 0;
}

#freeContent .sec-pickup .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #786E64;
	width: 415px;
	height: 60px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .btn {
		width: 100%;
		height: 21.33333vw;
		border-radius: 10.66667vw;
	}
}

#freeContent .sec-pickup .btn > div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	color: #fff;
	font-weight: bold;
	line-height: calc(24/15);
	text-align: center;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .btn > div {
		font-size: 4vw;
	}
}

#freeContent .sec-pickup .btn > div:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .btn > div:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-pickup .btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-pickup .pickup-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 15px;
	margin-top: 64px;
	margin-bottom: 80px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list {
		gap: 4.26667vw;
		margin-top: 10.66667vw;
		margin-bottom: 9.6vw;
	}
}

#freeContent .sec-pickup .pickup-list > li {
	width: 325px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li {
		width: 100%;
	}
}

#freeContent .sec-pickup .pickup-list > li > a {
	position: relative;
	display: block;
	color: currentColor;
	border-radius: 16px;
	background: #fff;
	height: 100%;
	padding: 16px;
	padding-bottom: 40px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li > a {
		width: 100%;
		border-radius: 4.26667vw;
		padding: 4.26667vw;
		padding-bottom: 10.66667vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .pickup-list > li > a {
		transition: opacity 0.2s;
	}
	#freeContent .sec-pickup .pickup-list > li > a:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-pickup .pickup-list > li > a .ph img {
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li > a .ph img {
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-pickup .pickup-list > li > a .ttl {
	text-align: center;
	color: #CE122E;
	font-weight: bold;
	font-size: 22px;
	line-height: calc(28/22);
}

@media (min-width: 641px) {
	#freeContent .sec-pickup .pickup-list > li > a .ttl {
		display: flex;
		justify-content: center;
		align-items: center;
		min-height: 60px;
	}
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li > a .ttl {
		font-size: 5.86667vw;
		margin-top: 0.8em;
		margin-bottom: 0.4em;
	}
}

#freeContent .sec-pickup .pickup-list > li > a .txt {
	padding: 0 0.5em;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li > a .txt {
		font-size: 4vw;
	}
}

#freeContent .sec-pickup .pickup-list > li > a:after {
	position: absolute;
	right: 12px;
	bottom: 12px;
	display: block;
	content: '';
	background: url(../img/icon-arrow_red.svg) 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
}

@media (max-width: 640px) {
	#freeContent .sec-pickup .pickup-list > li > a:after {
		right: 3.2vw;
		bottom: 3.2vw;
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

#freeContent .float-button {
	display: none;
	width: 148px;
	height: 166px;
	position: fixed;
	bottom: 60px;
	right: 25px;
	z-index: 30;
}

@media (max-width: 640px) {
	#freeContent .float-button {
		width: 30.66667vw;
		height: 34.13333vw;
		bottom: 60px;
		right: 3.2vw;
	}
}

#freeContent .float-button a {
	display: block;
}

@media (min-width: 641px) {
	#freeContent .float-button a {
		transition: opacity 0.2s;
	}
	#freeContent .float-button a:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-rdps {
	background: #CF122E;
	padding-top: 94px;
	padding-bottom: 80px;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps {
		padding-top: 19.2vw;
		padding-bottom: 17.06667vw;
	}
}

#freeContent .sec-rdps .rdps-ttl {
	margin-bottom: 50px;
}

#freeContent .sec-rdps .rdps-ttl img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-ttl {
		margin-bottom: 10.66667vw;
	}
}

#freeContent .sec-rdps .rdps-inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row-reverse;
}

#freeContent .sec-rdps .rdps-img {
	width: 490px;
	margin-right: 50px;
}

#freeContent .sec-rdps .rdps-img img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-img {
		width: 100%;
	}
}

#freeContent .sec-rdps .rdps-cont {
	width: 360px;
	color: #fff;
	font-size: 18px;
	line-height: calc(32/18);
	font-weight: bold;
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-cont {
		margin-top: 8vw;
		width: 100%;
		font-size: 4vw;
		line-height: calc(27/15);
	}
}

#freeContent .sec-rdps .rdps-cont p {
	font-size: 18px;
	line-height: calc(32/18);
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-cont p {
		font-size: 4vw;
		line-height: calc(27/15);
	}
}

#freeContent .sec-rdps .rdps-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #000;
	color: #fff;
	font-weight: bold;
	font-size: 15px;
	width: 240px;
	height: 60px;
	border-radius: 30px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5em;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-btn {
		width: 64vw;
		height: 16vw;
		font-size: 4vw;
		border-radius: 8vw;
	}
}

#freeContent .sec-rdps .rdps-btn:after {
	display: block;
	content: '';
	background: url("../img/icon-arrow.svg") 0 0 no-repeat;
	background-size: 100% auto;
	width: 20px;
	height: 20px;
	margin-left: 1em;
}

@media (max-width: 640px) {
	#freeContent .sec-rdps .rdps-btn:after {
		width: 5.33333vw;
		height: 5.33333vw;
	}
}

@media (min-width: 641px) {
	#freeContent .sec-rdps .rdps-btn {
		transition: opacity 0.2s;
	}
	#freeContent .sec-rdps .rdps-btn:hover {
		opacity: 0.8;
	}
}

#freeContent .sec-movie {
	background-color: #EBEBE6;
	padding: 80px 0;
}

@media (max-width: 640px) {
	#freeContent .sec-movie {
		padding: 17.06667vw 0;
	}
}

#freeContent .sec-movie .movie-ttl {
	margin-bottom: 0.5em;
}

#freeContent .sec-movie .movie-ttl > div {
	text-align: center;
}

#freeContent .sec-movie .movie-ttl > div > span {
	font-weight: bold;
	color: #CF122E;
	font-size: 40px;
	letter-spacing: 0.1em;
}

@media (max-width: 640px) {
	#freeContent .sec-movie .movie-ttl > div > span {
		font-size: 8vw;
	}
}

#freeContent .sec-movie .movie-movie {
	position: relative;
	display: block;
	width: 846px;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	border-radius: 8px;
}

@media (max-width: 640px) {
	#freeContent .sec-movie .movie-movie {
		width: 100%;
		border-radius: 2.13333vw;
	}
}

#freeContent .sec-movie .movie-movie .movie-movie-txt {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

#freeContent .sec-movie .movie-movie .movie-movie-txt .movie-movie-icon {
	width: 120px;
}

#freeContent .sec-movie .movie-movie .movie-movie-txt .movie-movie-icon img {
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-movie .movie-movie .movie-movie-txt .movie-movie-icon {
		width: 12.26667vw;
	}
}

#freeContent .sec-movie .movie-movie .movie-movie-txt p {
	margin-top: 0.5em;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

@media (max-width: 640px) {
	#freeContent .sec-movie .movie-movie .movie-movie-txt p {
		font-size: 3.46667vw;
		margin-top: 0;
	}
}

#freeContent .sec-movie .movie-movie:before {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	content: '';
	background: rgba(0, 0, 0, 0.4);
	width: 100%;
	height: 100%;
}

@media (min-width: 641px) {
	#freeContent .sec-movie .movie-movie:before, #freeContent .sec-movie .movie-movie .movie-movie-txt {
		transition: opacity 0.2s;
	}
	#freeContent .sec-movie .movie-movie:hover:before, #freeContent .sec-movie .movie-movie:hover .movie-movie-txt {
		opacity: 0;
	}
}

#freeContent .sec-movie .movie-movie img {
	border-radius: 8px;
	width: 100%;
}

@media (max-width: 640px) {
	#freeContent .sec-movie .movie-movie img {
		border-radius: 2.13333vw;
	}
}

.c-section:not(.c-section--relation) {
	padding: 0 !important;
}

.c-margin-b:not(.c-margin-b--large) .c-margin-b__inner {
	margin: 0 !important;
	width: 100% !important;
}

.c-margin-b {
	max-width: initial !important;
}


