@charset "UTF-8";
/* ---------------------------------------
  トップページ
-----------------------------------------*/
/* アニメーション
--------------------------------*/
@keyframes barAnime {
	0% {
		transform: translateY(-150%);
	}
	100% {
		transform: translateY(200%);
	}
}
@keyframes zoomOut {
	0% {
		transform: scale(1.08);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes decoAnime {
	0% {
		transform: scale(0.5);
	}
	70% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes blinkingAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes shineAnime {
	0% {
		transform: scale(0) rotate(45deg);
		opacity: 0;
	}
	80% {
		transform: scale(0) rotate(45deg);
		opacity: 0.5;
	}
	81% {
		transform: scale(4) rotate(45deg);
		opacity: 1;
	}
	100% {
		transform: scale(50) rotate(45deg);
		opacity: 0;
	}
}
@keyframes scrollAnime {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(2.8rem);
	}
	50% {
		transform: translateX(0);
	}
	75% {
		transform: translateX(-2.8rem);
	}
	100% {
		transform: translateX(0);
	}
}
/* common
--------------------------------*/
/*sec_head*/
.sec_head {
	padding-bottom: 3.9rem;
	border-bottom: 1px solid #188060;
	position: relative;
}
.sec_head::after {
	content: "";
	width: 5.5rem;
	height: 2.1rem;
	background: #ffffff url(../img/index/secttl_line.svg) no-repeat center bottom/cover;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2.1rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	.sec_head::after {
		width: 6.6rem;
		height: 2.2rem;
		background: #ffffff url(../img/index/secttl_line_sp.svg) no-repeat center bottom/cover;
		bottom: -2.2rem;
	}
}
.sec_head .sec_ttl {
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.6875;
}

.sec_head_s {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 10rem;
}
@media screen and (max-width: 767px) {
	.sec_head_s {
		display: block;
		margin-top: 8.3rem;
	}
	.sec_head_s .link_txt {
		margin-top: 1.9rem;
	}
}

.sub_ttl {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.4545454545;
	padding-bottom: 0.5em;
	position: relative;
}
@media screen and (max-width: 767px) {
	.sub_ttl {
		font-size: 3.6rem;
		line-height: 1.5;
	}
}
.sub_ttl::after {
	content: "";
	width: 6rem;
	height: 1px;
	background-color: #188060;
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (max-width: 767px) {
	.sub_ttl::after {
		width: 6rem;
		height: 0.2rem;
	}
}

/*link_txt*/
.link_txt a {
	display: inline-block;
	color: #000000;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.875;
	padding-right: 3.5rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.link_txt a {
		font-size: 2.8rem;
		padding-right: 5.4rem;
	}
}
.link_txt a::before {
	content: "";
	width: calc(100% - 3.5rem);
	height: 1px;
	background-color: #188060;
	position: absolute;
	left: 0;
	bottom: 0;
	transform: scale(0);
	transition: transform 0.3s ease;
	transform-origin: left bottom;
}
.link_txt a::after {
	content: "";
	width: 2.3rem;
	height: 2.3rem;
	background: url(../img/common/ico_arw_white.svg) no-repeat 58% center/0.8rem auto;
	background-color: #1E4E40;
	border-radius: 50%;
	position: absolute;
	right: 0;
	top: 0.4rem;
	transform: translateX(0);
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.link_txt a::after {
		width: 3.8rem;
		height: 3.8rem;
		top: 0.6rem;
		background-size: 1.5rem auto;
	}
}
@media (any-hover: hover) {
	.link_txt a:hover::before {
		transform: scale(1);
	}
	.link_txt a:hover::after {
		background-color: #188060;
		transform: translateX(0.5rem);
	}
}

/* sec_mv
--------------------------------*/
#sec_mv .wrap {
	display: flex;
	width: 100%;
	max-width: inherit;
	padding: 0;
}
#sec_mv .mv_side {
	flex: 0 0 auto;
	width: 13.2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}
#sec_mv .mv_side .copyright {
	writing-mode: vertical-rl;
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: 0.2em;
	transform: rotate(180deg);
}
#sec_mv .mv_side .scroll {
	margin-top: 16rem;
}
#sec_mv .mv_side .scroll .txt {
	writing-mode: vertical-rl;
	font-size: 1.1rem;
	line-height: 1;
	letter-spacing: 0.2em;
	transform: rotate(180deg);
}
#sec_mv .mv_side .scroll .bar {
	display: block;
	width: 1px;
	height: 8.5rem;
	background-color: #333333;
	margin: 2rem auto 0;
	position: relative;
	overflow: hidden;
}
#sec_mv .mv_side .scroll .bar::before {
	content: "";
	width: 1px;
	height: 50%;
	background-color: #ffffff;
	position: absolute;
	left: 0;
	top: 0;
	animation: barAnime 2.4s ease-out 0s infinite normal none running;
	z-index: 1;
}
#sec_mv .mv_main {
	flex: 1;
	width: calc(100% - 13.2rem);
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main {
		width: 100%;
	}
}
#sec_mv .mv_main .mv_slider {
	overflow: hidden;
}
#sec_mv .mv_main .mv_slider .img {
	aspect-ratio: 1408/761;
	max-height: calc(100vh - 12.5rem);
	min-height: 76.1rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .mv_slider .img {
		aspect-ratio: unset;
		max-height: inherit;
		height: 61.8rem;
		min-height: inherit;
	}
}
#sec_mv .mv_main .mv_slider .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#sec_mv .mv_main .mv_slider .img img.is-active {
	animation: zoomOut 10s linear 0s normal both;
}
#sec_mv .mv_main .txt_wrap {
	display: flex;
	align-items: center;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap {
		display: block;
		position: relative;
		padding-bottom: 8rem;
		margin-top: -26.8rem;
	}
}
#sec_mv .mv_main .txt_wrap .box {
	width: 58.8rem;
	padding: 6.6rem 5rem 6.5rem 0;
	background-color: #ffffff;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .box {
		width: 70.8rem;
		padding: 5.8rem 7rem 0 4rem;
	}
}
#sec_mv .mv_main .txt_wrap .box .ttl {
	width: 46.3rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .box .ttl {
		width: 58.3rem;
	}
}
#sec_mv .mv_main .txt_wrap .box .txt {
	font-weight: 500;
	font-size: 1.362rem;
	line-height: 2.268722467;
	margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .box .txt {
		font-size: 2.6rem;
		line-height: 1.7692307692;
		margin-top: 3.5rem;
	}
}
#sec_mv .mv_main .txt_wrap .list {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list {
		padding: 0 4rem;
		gap: 0.95rem;
		margin-top: 3.7rem;
	}
}
#sec_mv .mv_main .txt_wrap .list .item {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20.2rem;
	aspect-ratio: 1/1;
	background-color: #ffffff;
	border-radius: 50%;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item {
		width: 21.7rem;
		background-color: #F0F0F0;
	}
}
#sec_mv .mv_main .txt_wrap .list .item .txt {
	text-align: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5714285714;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item .txt {
		font-size: 1.8rem;
		line-height: 1.6666666667;
	}
}
#sec_mv .mv_main .txt_wrap .list .item .txt + .txt {
	margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item .txt + .txt {
		margin-top: 1rem;
	}
}
#sec_mv .mv_main .txt_wrap .list .item .txt .green.en {
	font-size: 3.078rem;
	line-height: 1.0623781676;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item .txt .green.en {
		font-size: 3.4rem;
		line-height: 1.0294117647;
	}
}
#sec_mv .mv_main .txt_wrap .list .item .txt .green.large {
	display: inline-block;
	font-weight: 900;
	font-size: 2.2rem;
	line-height: 1.3636363636;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item .txt .green.large {
		font-size: 2.8rem;
		line-height: 1.3571428571;
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	#sec_mv .mv_main .txt_wrap .list .item:nth-child(1) .txt + .txt {
		line-height: 1.3111111111;
	}
}

/* sec_intro
--------------------------------*/
#sec_intro {
	padding: 12.2rem 0 13rem;
	background-color: #F7FCF9;
}
@media screen and (max-width: 767px) {
	#sec_intro {
		padding: 7.4rem 0 26.5rem;
	}
}
#sec_intro .lead {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.1111111111;
}
@media screen and (max-width: 767px) {
	#sec_intro .lead {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_intro .lead .large {
	font-weight: 700;
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_intro .lead .large {
		font-size: 3.2rem;
		line-height: 1.6875;
	}
}
#sec_intro .txt {
	line-height: 2.125;
}
@media screen and (max-width: 767px) {
	#sec_intro .txt {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_intro .txt .large {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.7;
}
@media screen and (max-width: 767px) {
	#sec_intro .txt .large {
		font-size: 3rem;
		line-height: 1.1333333333;
	}
}
#sec_intro .txt .green {
	font-size: 3.4rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	#sec_intro .txt .green {
		font-size: 4rem;
	}
}
#sec_intro hr {
	width: 48.5rem;
	height: 1px;
	border: none;
	background-image: linear-gradient(to right, #AAA9A7 0.2rem, transparent 0.2rem);
	background-repeat: repeat-x;
	background-size: 0.4rem 1px;
	margin: 5rem 0;
}
@media screen and (max-width: 767px) {
	#sec_intro hr {
		margin: 5rem 0 7rem;
	}
}
#sec_intro .illust {
	width: 42.6rem;
	position: absolute;
	right: -2rem;
	bottom: -14.5rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_intro .illust {
		width: 31.2rem;
		right: 10.4rem;
		bottom: -35rem;
	}
}
#sec_intro .illust .illust_txt {
	width: 26.6rem;
	position: absolute;
	right: 2.8rem;
	top: -6.8rem;
	transform: scale(0.5);
}
@media screen and (max-width: 767px) {
	#sec_intro .illust .illust_txt {
		width: 19.5rem;
		right: 2rem;
		top: -4.8rem;
	}
}
#sec_intro .illust.is-show .illust_txt {
	animation: decoAnime 0.5s ease forwards;
	animation-delay: 0.8s;
}

/* sec_aboutus
--------------------------------*/
#sec_aboutus .slider_wrap {
	position: relative;
	overflow: hidden;
}
#sec_aboutus .slider_wrap .aboutus_slider .img {
	height: 45.1rem;
}
#sec_aboutus .slider_wrap .aboutus_slider .img img {
	width: auto;
	height: 100%;
	object-fit: cover;
}
#sec_aboutus .slider_wrap .box {
	width: 53.3rem;
	padding: 3.7rem 4rem 4.5rem;
	background-color: rgba(255, 255, 255, 0.9);
	border: 1px solid #188060;
	border-radius: 0.5rem;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .slider_wrap .box {
		width: 67rem;
		padding: 4rem 4rem 4.6rem;
		border-radius: 0.6rem;
	}
}
#sec_aboutus .slider_wrap .box .txt {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .slider_wrap .box .txt {
		font-size: 2.6rem;
		line-height: 1.3461538462;
	}
}
#sec_aboutus .slider_wrap .box .btn {
	margin-top: 1.8rem;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .slider_wrap .box .btn {
		margin-top: 2.7rem;
	}
}
#sec_aboutus .slider_wrap .box .btn a {
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .slider_wrap .box .btn a {
		min-height: 9rem;
		font-size: 2.8rem;
	}
}
#sec_aboutus .txt_wrap {
	padding: 8rem 0 19rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .txt_wrap {
		padding: 7.2rem 0 29.6rem;
	}
}
#sec_aboutus .txt_wrap .txt {
	color: #000000;
	font-size: 1.8rem;
	line-height: 2.5;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .txt_wrap .txt {
		text-align: left;
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_aboutus .txt_wrap .txt .large {
	font-size: 2.2rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .txt_wrap .txt .large {
		font-size: 3.2rem;
	}
}
#sec_aboutus .txt_wrap .illust {
	width: 36.5rem;
	position: absolute;
	right: -6.4rem;
	bottom: -19rem;
	z-index: 1;
	translate: 0 102%;
	transition: translate 0.5s ease;
}
@media screen and (max-width: 767px) {
	#sec_aboutus .txt_wrap .illust {
		width: 53.4rem;
		bottom: -29.6rem;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}
#sec_aboutus .txt_wrap .illust.is-show {
	translate: 0 0;
}

/* sec_solution
--------------------------------*/
#sec_solution {
	padding: 11rem 0 8rem;
}
@media screen and (max-width: 767px) {
	#sec_solution {
		padding: 10rem 0 6.5rem;
	}
}
#sec_solution .sec_ttl {
	color: #000000;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.40625;
	letter-spacing: 0.1em;
	padding-bottom: 10rem;
	position: relative;
}
#sec_solution .sec_ttl .large {
	display: inline-block;
	font-size: 5.6rem;
	line-height: 1;
	background: url("data:image/svg+xml;utf8,			<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'>			<circle cx='4' cy='4' r='4' fill='%23213244'/>			</svg>") repeat-x;
	background-size: 1em 0.8rem;
	padding-top: 1.6rem;
}
#sec_solution .sec_ttl::after {
	content: "";
	width: 55.3rem;
	height: 12.9rem;
	background: url(../img/index/ttl_fukidashi.png) no-repeat center bottom/100% auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
#sec_solution .lead {
	width: fit-content;
	color: #000000;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.25;
	padding: 1.7rem 1.3rem 1.7rem 4rem;
	background-color: #FAF9F5;
	border-radius: 0.5rem;
	margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_solution .lead {
		width: 100%;
		line-height: 1.7777777778;
		padding: 2.1rem 3rem 3rem;
		margin: 1.7rem auto 0;
	}
}
#sec_solution .lead .green {
	display: inline-block;
	padding-bottom: 0.5rem;
	line-height: 1.25;
	background-image: linear-gradient(to right, #188060 0.45rem, transparent 0.45rem);
	background-repeat: repeat-x;
	background-size: 0.75rem 1px;
	background-position: left bottom;
}
@media screen and (max-width: 767px) {
	#sec_solution .lead .green {
		line-height: 1.7777777778;
	}
}
#sec_solution .txt_wrap {
	margin-top: 4.5rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap {
		margin-top: 5.1rem;
	}
}
#sec_solution .txt_wrap .txt {
	color: #000000;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.6666666667;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap .txt {
		font-size: 2.8rem;
		line-height: 2.2857142857;
	}
}
#sec_solution .txt_wrap .txt + .txt {
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap .txt + .txt {
		margin-top: 0;
	}
}
#sec_solution .txt_wrap .txt .medium {
	font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap .txt .medium {
		font-size: 2.8rem;
		line-height: 2.2857142857;
	}
}
#sec_solution .txt_wrap .txt .large {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.7307692308;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap .txt .large {
		font-size: 3.2rem;
		line-height: 2;
	}
}
#sec_solution .txt_wrap .txt .xlarge {
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 2.2857142857;
}
@media screen and (max-width: 767px) {
	#sec_solution .txt_wrap .txt .xlarge {
		font-size: 3.2rem;
		line-height: 2;
	}
}
#sec_solution .solution_list {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5.4rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list {
		flex-direction: column;
		gap: 1.9rem 0;
		margin-top: 3.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_solution .solution_list {
		flex-direction: row;
		gap: 1.9rem;
	}
}
#sec_solution .solution_list .item {
	width: 32.6rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item {
		display: flex;
		align-items: center;
		width: 100%;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_solution .solution_list .item {
		display: block;
		width: 33%;
	}
}
#sec_solution .solution_list .item .illust {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1/1;
	padding: 2rem 3.5rem 6rem;
	background-color: #FAF9F5;
	border-radius: 50%;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item .illust {
		width: 23.6rem;
		padding: 2rem 3rem 4.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_solution .solution_list .item .illust {
		margin: 0 auto;
	}
}
#sec_solution .solution_list .item .illust > img {
	width: 21rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item .illust > img {
		width: 15rem;
	}
}
#sec_solution .solution_list .item .illust .deco {
	position: absolute;
	width: 5rem;
	animation: blinkingAnime 0.6s ease-in-out infinite alternate;
}
#sec_solution .solution_list .item .txt {
	width: 25.7rem;
	color: #ffffff;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.6111111111;
	padding: 0.8rem;
	background-color: #188060;
	border-radius: 0.5rem;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item .txt {
		flex: 1;
		font-size: 3rem;
		line-height: 1.7333333333;
		padding: 2.5rem;
		border-radius: 0.7rem;
		position: static;
		margin-left: -3.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_solution .solution_list .item .txt {
		width: 84%;
		font-size: 1.8rem;
		padding: 0.8rem;
		border-radius: 0.5rem;
		position: absolute;
		bottom: 0;
		margin: 0 auto;
	}
}
#sec_solution .solution_list .item._01 .deco._01 {
	width: 6.85rem;
	left: 6rem;
	top: 9.2rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._01 .deco._01 {
		width: 4.6rem;
		left: 5.3rem;
		top: 6.7rem;
	}
}
#sec_solution .solution_list .item._02 .deco._01 {
	width: 2.7rem;
	left: 16.5rem;
	top: 5.2rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._02 .deco._01 {
		width: 2rem;
		left: 11.9rem;
		top: 3.7rem;
	}
}
#sec_solution .solution_list .item._02 .deco._02 {
	width: 0.65rem;
	left: 14.5rem;
	top: 14.4rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._02 .deco._02 {
		width: 0.5rem;
		left: 10.5rem;
		top: 10.5rem;
	}
}
#sec_solution .solution_list .item._02 .deco._03 {
	width: 0.7rem;
	right: 8.3rem;
	top: 14.5rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._02 .deco._03 {
		width: 0.5rem;
		right: 6rem;
		top: 10.5rem;
	}
}
#sec_solution .solution_list .item._03 .deco._01 {
	width: 6.4rem;
	left: 6.2rem;
	top: 10.6rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._03 .deco._01 {
		width: 5rem;
		left: 4.5rem;
		top: 7.8rem;
	}
}
#sec_solution .solution_list .item._03 .deco._02 {
	width: 2.75rem;
	right: 8rem;
	top: 6.7rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list .item._03 .deco._02 {
		width: 2rem;
		right: 5.8rem;
		top: 4.9rem;
	}
}
#sec_solution .solution_list + .txt_wrap {
	margin-top: 7rem;
}
@media screen and (max-width: 767px) {
	#sec_solution .solution_list + .txt_wrap {
		margin-top: 4.1rem;
	}
}

/* sec_service
--------------------------------*/
#sec_service {
	padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
	#sec_service {
		padding: 7.1rem 0 0;
	}
}
#sec_service::before {
	content: "";
	width: 134rem;
	height: 1px;
	border: none;
	background-image: linear-gradient(to right, #AAA9A7 0.2rem, transparent 0.2rem);
	background-repeat: repeat-x;
	background-size: 0.4rem 1px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_service::before {
		width: 67rem;
	}
}
#sec_service .sec_ttl {
	color: #000000;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.40625;
	letter-spacing: 0.1em;
	padding-bottom: 10rem;
	position: relative;
}
#sec_service .sec_ttl .large {
	display: inline-block;
	font-size: 7.4rem;
	line-height: 1;
}
#sec_service .sec_ttl::after {
	content: "";
	width: 55.3rem;
	height: 12.9rem;
	background: url(../img/index/ttl_fukidashi.png) no-repeat center bottom/100% auto;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
#sec_service .lead {
	width: fit-content;
	color: #000000;
	font-weight: 700;
	font-size: 3.6rem;
	line-height: 1.25;
	padding: 1.2rem 1.3rem 1.2rem 4rem;
	background-color: #FAF9F5;
	border-radius: 0.5rem;
	margin: 2rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_service .lead {
		width: 100%;
		line-height: 1.7777777778;
		padding: 2.1rem 3rem 3rem;
		margin: 1.7rem auto 0;
	}
}
#sec_service .lead .green {
	display: inline-block;
	padding-bottom: 0.5rem;
	line-height: 1.25;
	background-image: linear-gradient(to right, #188060 0.45rem, transparent 0.45rem);
	background-repeat: repeat-x;
	background-size: 0.75rem 1px;
	background-position: left bottom;
}
@media screen and (max-width: 767px) {
	#sec_service .lead .green {
		line-height: 1.7777777778;
	}
}
#sec_service .txt_wrap {
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	#sec_service .txt_wrap {
		margin-top: 4.2rem;
	}
}
#sec_service .txt_wrap .txt {
	color: #000000;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.6666666667;
}
@media screen and (max-width: 767px) {
	#sec_service .txt_wrap .txt {
		font-size: 2.8rem;
		line-height: 2.2857142857;
	}
}
#sec_service .txt_wrap .txt + .txt {
	margin-top: 1.5rem;
}
#sec_service .txt_wrap .txt .medium {
	font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
	#sec_service .txt_wrap .txt .medium {
		font-size: 2.8rem;
		line-height: 2.2857142857;
	}
}
#sec_service .txt_wrap .txt .large {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.7307692308;
}
@media screen and (max-width: 767px) {
	#sec_service .txt_wrap .txt .large {
		font-size: 3.2rem;
		line-height: 2;
	}
}
#sec_service .txt_wrap .txt .xlarge {
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 2.2857142857;
}
@media screen and (max-width: 767px) {
	#sec_service .txt_wrap .txt .xlarge {
		font-size: 3.2rem;
		line-height: 2;
	}
}
#sec_service .service_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem 8.8rem;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_service .service_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 1.8rem;
		margin-top: 3.1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_service .service_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem 2rem;
	}
}
#sec_service .service_list .item {
	padding: 2.1rem 2rem 2.7rem;
	background-color: #ffffff;
	border: 1px solid #A4ACB4;
	border-radius: 0.5rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_service .service_list .item {
		padding: 2rem 2rem 3.2rem;
		border-radius: 0.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_service .service_list .item {
		padding: 1.6rem 1.2rem 2.5rem;
		border-radius: 0.6rem;
	}
}
#sec_service .service_list .item .num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.6rem;
	height: 5.6rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.04em;
	background-color: #188060;
	border-radius: 0 0.4rem 0 0.5rem;
	position: absolute;
	right: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	#sec_service .service_list .item .num {
		width: 7.4rem;
		height: 7.4rem;
		font-size: 4.4rem;
		border-radius: 0 0.7rem 0 0.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_service .service_list .item .num {
		width: 5.9rem;
		height: 5.9rem;
		font-size: 3.5rem;
		border-radius: 0 0.5rem 0 0.6rem;
	}
}
#sec_service .service_list .item .ico {
	width: 6.4rem;
	margin: 0 auto;
}
#sec_service .service_list .item .txt {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.8888888889;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_service .service_list .item .txt {
		font-size: 2.6rem;
		line-height: 1.6923076923;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_service .service_list .item .txt {
		font-size: 2rem;
	}
}
#sec_service .img {
	width: 134rem;
	margin: 7.5rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_service .img {
		width: 100%;
		margin-top: 5.2rem;
	}
}

/* sec_voice
--------------------------------*/
#sec_voice {
	padding: 13rem 0 10.6rem;
}
@media screen and (max-width: 767px) {
	#sec_voice {
		padding: 4rem 0 6.5rem;
	}
}
#sec_voice .sec_ttl {
	width: fit-content;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.2142857143;
	position: relative;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_voice .sec_ttl {
		text-align: center;
		font-size: 3.8rem;
		line-height: 1.6842105263;
	}
}
#sec_voice .sec_ttl::before {
	content: "";
	width: 7.2rem;
	height: 7.6rem;
	background: url(../img/index/voice_secttl_deco.svg) no-repeat center/contain;
	position: absolute;
	left: -5.6rem;
	top: -5.2rem;
	transform: scale(0.5);
}
@media screen and (max-width: 767px) {
	#sec_voice .sec_ttl::before {
		display: inline-block;
		position: relative;
		left: 1rem;
		top: -1.5rem;
		margin-left: -7.2rem;
	}
}
#sec_voice .sec_ttl.is-show::before {
	animation: decoAnime 5s ease forwards;
	animation-delay: 0.8s;
}
#sec_voice .voice_list {
	width: 94.8rem;
	margin: 8.8rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list {
		width: 100%;
		margin-top: 5.5rem;
	}
}
#sec_voice .voice_list .item {
	display: flex;
	gap: 0 3.2rem;
	align-items: center;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item {
		align-items: flex-start;
	}
}
#sec_voice .voice_list .item + .item {
	margin-top: 5.5rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item + .item {
		margin-top: 2.6rem;
	}
}
#sec_voice .voice_list .item .illust {
	width: 11.1rem;
}
#sec_voice .voice_list .item .txt_wrap {
	flex: 1;
	min-height: 11.1rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 2rem 4.5rem;
	background-color: #ffffff;
	border: 1px solid #333333;
	border-radius: 0.8rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .txt_wrap {
		padding: 2.5rem 3.2rem;
	}
}
#sec_voice .voice_list .item .txt_wrap::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 1.7rem 1.4rem 0;
	border-color: transparent #188060 transparent transparent;
	position: absolute;
	left: -1.6rem;
	top: 7rem;
	z-index: -1;
}
#sec_voice .voice_list .item .txt_wrap .txt {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.8888888889;
}
@media screen and (max-width: 767px) {
	#sec_voice .voice_list .item .txt_wrap .txt {
		font-size: 2.4rem;
		line-height: 1.8333333333;
	}
}
#sec_voice .voice_list .item .txt_wrap .txt .green {
	font-weight: 700;
}
#sec_voice .voice_list .item:nth-child(even) {
	flex-direction: row-reverse;
}
#sec_voice .voice_list .item:nth-child(even) .txt_wrap::before {
	scale: -1 1;
	left: auto;
	right: -1.6rem;
}
#sec_voice .catch {
	margin-top: 9.5rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .catch {
		margin-top: 5.5rem;
	}
}
#sec_voice .catch .txt {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.6666666667;
}
@media screen and (max-width: 767px) {
	#sec_voice .catch .txt {
		font-size: 2.8rem;
		line-height: 2.2857142857;
	}
}
#sec_voice .catch .txt + .txt {
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_voice .catch .txt + .txt {
		margin-top: 0.5rem;
	}
}
#sec_voice .catch .txt .large {
	font-size: 3rem;
	line-height: 1.2666666667;
}
#sec_voice .catch .txt .xlarge {
	font-weight: 700;
	font-size: 4rem;
	line-height: 1;
}

/* sec_message
--------------------------------*/
#sec_message {
	padding: 12.6rem 0 15.6rem;
	background-color: #FAF9F5;
}
@media screen and (max-width: 767px) {
	#sec_message {
		padding: 6rem 0 10rem;
	}
}
#sec_message .wrap {
	max-width: 138rem;
	display: flex;
	align-items: flex-start;
}
@media screen and (max-width: 767px) {
	#sec_message .wrap {
		flex-direction: column;
		gap: 6.5rem 0;
	}
}
#sec_message .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap {
		width: 100%;
	}
}
#sec_message .txt_wrap .ttl_s {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.9444444444;
	padding-bottom: 2.1rem;
	border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .ttl_s {
		font-size: 2.8rem;
		line-height: 1.9285714286;
		padding-bottom: 2.7rem;
	}
}
#sec_message .txt_wrap .ttl {
	font-weight: 700;
	font-size: 2.9rem;
	line-height: 1.724137931;
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .ttl {
		font-size: 3.4rem;
		line-height: 1.8823529412;
	}
}
#sec_message .txt_wrap .inner {
	padding-right: 6rem;
	margin-top: 2.7rem;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .inner {
		padding-right: 0;
		margin-top: 5.1rem;
	}
}
#sec_message .txt_wrap .txt {
	font-size: 1.5rem;
	line-height: 2.2666666667;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .txt {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_message .txt_wrap .txt + .txt {
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .txt + .txt {
		margin-top: 5rem;
	}
}
#sec_message .txt_wrap .txt.large {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.8888888889;
}
@media screen and (max-width: 767px) {
	#sec_message .txt_wrap .txt.large {
		font-size: 3.2rem;
		line-height: 1.6875;
	}
}
#sec_message .img_wrap {
	width: 56.3rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap {
		width: 100%;
	}
}
#sec_message .img_wrap .profile {
	margin-top: 3.2rem;
}
#sec_message .img_wrap .profile .name {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .name {
		font-size: 3rem;
	}
}
#sec_message .img_wrap .profile .name span {
	font-size: 2.376rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .name span {
		font-size: 3.94rem;
	}
}
#sec_message .img_wrap .profile .profile_txt {
	margin-top: 1rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt {
		margin-top: 2rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .txt {
	font-size: 1.3rem;
	line-height: 2.1538461538;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .txt {
		font-size: 2.6rem;
		line-height: 1.7692307692;
	}
}
#sec_message .img_wrap .profile .profile_txt dl {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt dl {
		padding-bottom: 3rem;
	}
}
#sec_message .img_wrap .profile .profile_txt dl dt, #sec_message .img_wrap .profile .profile_txt dl dd {
	font-size: 1.3rem;
	line-height: 2.1538461538;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt dl dt, #sec_message .img_wrap .profile .profile_txt dl dd {
		font-size: 2.6rem;
		line-height: 1.7692307692;
	}
}
#sec_message .img_wrap .profile .profile_txt dl dt {
	font-weight: 700;
}
#sec_message .img_wrap .profile .profile_txt dl dd + dt {
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt dl dd + dt {
		margin-top: 2rem;
	}
}
#sec_message .img_wrap .profile .profile_txt dl + .txt {
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt dl + .txt {
		margin-top: 3rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .read_more {
	margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .read_more {
		text-align: center;
		margin-top: 5.5rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .read_more a {
	min-width: 33.5rem;
	min-height: 6.3rem;
	cursor: pointer;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .read_more a {
		min-width: 57rem;
		min-height: 10.7rem;
		font-size: 2.8rem;
		border-radius: 0.8rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .read_more a .ico {
	width: 3rem;
	height: 3rem;
	border: 1px solid #ffffff;
	border-radius: 50%;
	position: absolute;
	right: 1.7rem;
	top: 50%;
	translate: 0 -50%;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .read_more a .ico {
		width: 5.1rem;
		height: 5.1rem;
		right: 2.8rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .read_more a .ico::before, #sec_message .img_wrap .profile .profile_txt .read_more a .ico::after {
	content: "";
	width: 1px;
	height: 1.6rem;
	background-color: #ffffff;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .read_more a .ico::before, #sec_message .img_wrap .profile .profile_txt .read_more a .ico::after {
		height: 2.7rem;
	}
}
#sec_message .img_wrap .profile .profile_txt .read_more a .ico::after {
	rotate: 90deg;
}
#sec_message .img_wrap .profile .profile_txt .hidden_txt {
	display: none;
	margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_message .img_wrap .profile .profile_txt .hidden_txt {
		margin-top: 5.2rem;
	}
}

/* sec_strengths
--------------------------------*/
#sec_strengths {
	padding: 9rem 0 3rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths {
		padding: 7.2rem 0 6.8rem;
	}
}
#sec_strengths .lead {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 2.3636363636;
	padding: 2.4rem 3rem 2.8rem;
	background-color: #FAF9F5;
	border-radius: 0.5rem;
	border: 1px solid #188060;
	margin: 7rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_strengths .lead {
		font-size: 3.2rem;
		line-height: 1.625;
		padding: 4.1rem 3rem;
	}
}
#sec_strengths .txt_wrap {
	position: relative;
	margin-top: 3.8rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .txt_wrap {
		padding-bottom: 19rem;
		margin-top: 5.1rem;
	}
}
#sec_strengths .txt_wrap .txt {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2.5;
}
@media screen and (max-width: 767px) {
	#sec_strengths .txt_wrap .txt {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_strengths .txt_wrap .txt + .txt {
	margin-top: 4.5rem;
}
#sec_strengths .txt_wrap .illust {
	position: absolute;
	bottom: 1.3rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .txt_wrap .illust {
		bottom: -2rem;
	}
}
#sec_strengths .txt_wrap .illust._01 {
	width: 18rem;
	left: 2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .txt_wrap .illust._01 {
		left: 7.2rem;
	}
}
#sec_strengths .txt_wrap .illust._02 {
	width: 19.2rem;
	right: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .txt_wrap .illust._02 {
		right: 7rem;
	}
}
#sec_strengths .list_wrap {
	width: 134rem;
	padding: 6.7rem 9rem 8rem;
	background-color: #ffffff;
	border: 0.3rem solid rgba(49, 150, 119, 0.5);
	border-radius: 1rem;
	margin: 5rem -9rem 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_strengths .list_wrap {
		width: calc(100% + 8rem);
		padding: 6.7rem 3.9rem 6rem;
		margin: 0 -4rem;
	}
}
#sec_strengths .list_ttl {
	width: fit-content;
	color: #ffffff;
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.6;
	padding: 0.4rem 6.4rem 0.9rem;
	background-color: #188060;
	border-radius: 1rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_strengths .list_ttl {
		width: 100%;
		font-size: 3.4rem;
		line-height: 1.4705882353;
		padding: 0.6rem 4rem 1.3rem;
	}
}
#sec_strengths .list_ttl .large {
	font-size: 3.46rem;
	line-height: 1.387283237;
}
@media screen and (max-width: 767px) {
	#sec_strengths .list_ttl .large {
		font-size: 3.8rem;
		line-height: 1.3157894737;
	}
}
#sec_strengths .list_ttl .en {
	font-style: italic;
	font-weight: 600;
	font-size: 6.4rem;
	line-height: 1;
}
#sec_strengths .strengths_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 7.4rem 13rem;
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list {
		grid-template-columns: 1fr;
		gap: 3.5rem 0;
		margin-top: 5.2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}
#sec_strengths .strengths_list .item {
	position: relative;
}
#sec_strengths .strengths_list .item .num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 5.6rem;
	height: 5.6rem;
	color: #ffffff;
	font-weight: 600;
	font-size: 3rem;
	line-height: 1;
	letter-spacing: 0.04em;
	background-color: #188060;
	border-radius: 0 1rem 0 1rem;
	position: absolute;
	right: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list .item .num {
		width: 7.3rem;
		height: 7.3rem;
		font-size: 4rem;
		border-radius: 0 1.3rem 0 1.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list .item .num {
		width: 5.8rem;
		height: 5.8rem;
		font-size: 3.2rem;
		border-radius: 0 1rem 0 1rem;
	}
}
#sec_strengths .strengths_list .item .img {
	width: 51.4rem;
	height: 27.8rem;
	border-radius: 1rem;
	overflow: hidden;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list .item .img {
		width: 100%;
		border-radius: 1.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list .item .img {
		border-radius: 1rem;
	}
}
#sec_strengths .strengths_list .item .img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_strengths .strengths_list .item .ttl {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.7272727273;
	margin-top: 1.4rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list .item .ttl {
		font-size: 3.2rem;
		line-height: 1.6875;
		margin-top: 2.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list .item .ttl {
		font-size: 2.5rem;
		margin-top: 1.8rem;
	}
}
#sec_strengths .strengths_list .item .txt {
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list .item .txt {
		font-size: 2.6rem;
		line-height: 1.7307692308;
		margin-top: 1.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list .item .txt {
		font-size: 2rem;
		margin-top: 1.4rem;
	}
}
#sec_strengths .strengths_list .item .link_txt {
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .strengths_list .item .link_txt a {
		font-size: 2.6rem;
		padding-right: 4.8rem;
	}
	#sec_strengths .strengths_list .item .link_txt a::after {
		width: 3.6rem;
		height: 3.6rem;
		background-size: 1.2rem auto;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_strengths .strengths_list .item .link_txt a {
		font-size: 2rem;
		padding-right: 3.8rem;
	}
	#sec_strengths .strengths_list .item .link_txt a::after {
		width: 2.8rem;
		height: 2.8rem;
		background-size: 1rem auto;
	}
}
#sec_strengths .point {
	padding: 6.6rem 31.6rem 5.6rem 9.1rem;
	position: relative;
	margin-top: 9.1rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .point {
		padding: 6.7rem 4rem 8.1rem;
		margin-top: 9.6rem;
	}
}
#sec_strengths .point .ttl {
	width: fit-content;
	min-width: 54.7rem;
	color: #ffffff;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5357142857;
	padding: 1rem 2.5rem;
	background-color: #188060;
	position: absolute;
	left: 0;
	right: 0;
	top: -2.8rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_strengths .point .ttl {
		min-width: 58.8rem;
		font-size: 3.4rem;
		line-height: 1.5882352941;
		padding: 1.25rem 2.5rem;
		top: -4.4rem;
	}
}
#sec_strengths .point .txt {
	color: #000000;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 2.4545454545;
}
@media screen and (max-width: 767px) {
	#sec_strengths .point .txt {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_strengths .point .txt .large {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	#sec_strengths .point .txt .large {
		font-size: 3.2rem;
	}
}
#sec_strengths .point .illust {
	width: 26.7rem;
	position: absolute;
	right: 3.3rem;
	bottom: -2.9rem;
}
@media screen and (max-width: 767px) {
	#sec_strengths .point .illust {
		width: 21.5rem;
		right: 4.9rem;
		bottom: -6.9rem;
	}
}

/* sec_support
--------------------------------*/
#sec_support {
	padding: 7rem 0 6rem;
}
@media screen and (max-width: 767px) {
	#sec_support {
		padding: 5.5rem 0 7.1rem;
	}
}
#sec_support .list_wrap {
	margin-top: 5.4rem;
}
@media screen and (max-width: 767px) {
	#sec_support .list_wrap {
		margin-top: 4.6rem;
	}
}
#sec_support .label_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 2.1rem;
}
@media screen and (max-width: 767px) {
	#sec_support .label_list {
		justify-content: flex-start;
		gap: 0.5rem 1.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .label_list {
		justify-content: flex-end;
	}
}
#sec_support .label_list .item {
	color: #000000;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_support .label_list .item {
		font-size: 2.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .label_list .item {
		font-size: 2rem;
	}
}
#sec_support .label_list .item a {
	display: block;
	padding-left: 2.4rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_support .label_list .item a {
		padding-left: 3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .label_list .item a {
		padding-left: 2.4rem;
	}
}
#sec_support .label_list .item a::before {
	content: "";
	width: 1.7rem;
	height: 1.7rem;
	position: absolute;
	left: 0;
	top: 1rem;
	transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_support .label_list .item a::before {
		width: 2.2rem;
		height: 2.2rem;
		top: 1.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .label_list .item a::before {
		width: 1.7rem;
		height: 1.7rem;
		top: 1.2rem;
	}
}
@media (any-hover: hover) {
	#sec_support .label_list .item a:hover::before {
		transform: scale(1.2);
	}
}
#sec_support .label_list .item.p01 a::before {
	background-color: #188060;
}
#sec_support .label_list .item.p02 a::before {
	background-color: #2E8F60;
}
#sec_support .label_list .item.p03 a::before {
	background-color: #396F8E;
}
#sec_support .support_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.4rem;
	margin-top: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 0.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .support_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 0.4rem;
	}
}
#sec_support .support_list + .support_list {
	margin-top: 3rem;
}
#sec_support .support_list .item {
	min-height: 9.4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.8rem 7.2rem 1.7rem;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item {
		min-height: 10rem;
		padding: 1.5rem 1rem;
	}
}
#sec_support .support_list .item .txt {
	color: #ffffff;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item .txt {
		font-size: 2.6rem;
		line-height: 1.3076923077;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .support_list .item .txt {
		font-size: 2rem;
	}
}
#sec_support .support_list .item .txt .small {
	display: inline-block;
	font-weight: 500;
	font-size: 1.6rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	#sec_support .support_list .item .txt .small {
		font-size: 2.2rem;
		line-height: 1.5454545455;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_support .support_list .item .txt .small {
		font-size: 1.6rem;
	}
}
#sec_support .support_list.p01 .item {
	background-color: #188060;
}
#sec_support .support_list.p02 .item {
	background-color: #2E8F60;
}
#sec_support .support_list.p03 .item {
	background-color: #396F8E;
}
#sec_support .point {
	padding: 6.6rem 11.6rem 5.6rem 31.9rem;
	position: relative;
	margin-top: 11rem;
}
@media screen and (max-width: 767px) {
	#sec_support .point {
		padding: 12.2rem 4rem 7.7rem;
		margin-top: 11.6rem;
	}
}
#sec_support .point .ttl {
	width: fit-content;
	min-width: 54.7rem;
	color: #ffffff;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5357142857;
	padding: 1rem 2.5rem;
	background-color: #188060;
	position: absolute;
	left: 0;
	right: 0;
	top: -2.8rem;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_support .point .ttl {
		min-width: 58.8rem;
		font-size: 3.4rem;
		line-height: 1.5882352941;
		padding: 1.25rem 2.5rem;
		top: -4.4rem;
	}
}
#sec_support .point .txt {
	color: #000000;
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 2.4545454545;
}
@media screen and (max-width: 767px) {
	#sec_support .point .txt {
		font-size: 2.8rem;
		line-height: 1.9285714286;
	}
}
#sec_support .point .txt .large {
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1;
}
@media screen and (max-width: 767px) {
	#sec_support .point .txt .large {
		font-size: 3.2rem;
	}
}
#sec_support .point .illust {
	width: 22.5rem;
	position: absolute;
	left: 5.3rem;
	bottom: -1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_support .point .illust {
		width: 20.4rem;
		left: auto;
		right: 4.8rem;
		bottom: -7.1rem;
	}
}

/* sec_plan
--------------------------------*/
#sec_plan {
	padding: 7rem 0 12rem;
}
@media screen and (max-width: 767px) {
	#sec_plan {
		padding: 7.1rem 0;
	}
}
#sec_plan .plan_box {
	margin-top: 10rem;
}
#sec_plan .plan_box .inner {
	padding: 2.6rem 6rem 3.6rem 15rem;
	background-color: #FDFCFA;
	border: 1px solid #85827A;
	border-radius: 0.5rem;
	position: relative;
	overflow: hidden;
}
#sec_plan .plan_box .inner::before {
	content: "";
	width: 6rem;
	height: 100%;
	position: absolute;
	top: -18rem;
	left: 0;
	background-color: #fbfbfb;
	animation: shineAnime 2.5s ease-in-out infinite;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_box .inner {
		padding: 4.5rem;
		margin-top: 7.5rem;
	}
}
#sec_plan .plan_box .ttl {
	color: #ffffff;
	font-weight: 700;
	font-size: 2.4rem;
	line-height: 1.25;
	padding: 1rem 6.8rem;
	background-color: #1E4E40;
	border-radius: 0.5rem;
	position: absolute;
	left: 9rem;
	top: -2.1rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_box .ttl {
		font-size: 2.8rem;
		line-height: 1.4285714286;
		padding: 0.5rem 6rem;
		left: 3rem;
		top: -2.5rem;
	}
}
#sec_plan .plan_box .txt {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.5;
}
#sec_plan .plan_box .txt .en {
	font-style: italic;
	font-weight: 600;
	font-size: 7.4rem;
	line-height: 1;
}
#sec_plan .tb_wrap {
	margin-top: 7.8rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_plan .tb_wrap {
		width: calc(100% + 4rem);
		margin-top: 5.6rem;
		margin-right: -4rem;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	#sec_plan .tb_wrap::before {
		content: "";
		width: 14.6rem;
		height: 14.6rem;
		background: url(../img/common/ico_swipe.png) no-repeat center/contain;
		position: absolute;
		left: calc(50% - 7.3rem);
		top: calc(50% - 7.3rem);
		transition: opacity 0.3s ease;
		animation: scrollAnime 1.5s linear infinite;
		pointer-events: none;
		z-index: 10;
	}
	#sec_plan .tb_wrap.is-scrolled::before {
		opacity: 0;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .tb_wrap {
		width: 100%;
		margin: 4rem 0 0;
		overflow: hidden;
	}
	#sec_plan .tb_wrap::before {
		content: none;
	}
}
#sec_plan .plan_tb {
	width: 100%;
	border-spacing: 0;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb {
		width: 111.4rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb {
		width: 100%;
	}
}
#sec_plan .plan_tb thead th {
	text-align: center;
	width: 33rem;
	height: 13.2rem;
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 1.6363636364;
	padding: 1rem;
	background-color: #FFFEFB;
	border-right: 1px solid #97BCB4;
	border-bottom: 1px solid #97BCB4;
	border-top: 1px solid #97BCB4;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb thead th {
		height: 10.6rem;
		font-size: 2.6rem;
		line-height: 1.5384615385;
		padding: 1.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb thead th {
		height: 8rem;
		font-size: 2rem;
	}
}
#sec_plan .plan_tb thead th:nth-child(1) {
	border-left: 1px solid #97BCB4;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb thead th:nth-child(1) {
		width: 19.4rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb thead th:nth-child(1) {
		width: 18%;
	}
}
#sec_plan .plan_tb thead th:nth-child(2) {
	color: #ffffff;
	background-color: #188060;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb thead th:nth-child(2) {
		width: 31.7rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb thead th:nth-child(2) {
		width: 30%;
	}
}
#sec_plan .plan_tb thead th:nth-child(3) {
	width: 49.8rem;
	color: #ffffff;
	background-color: #1E4E40;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb thead th:nth-child(3) {
		width: 60.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb thead th:nth-child(3) {
		width: 52%;
	}
}
#sec_plan .plan_tb tbody tr:nth-child(odd) td {
	background-color: #EAF3EE;
}
#sec_plan .plan_tb tbody tr td {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2;
	padding: 1.3rem 5rem;
	background-color: #ffffff;
	border-right: 1px solid #97BCB4;
	border-bottom: 1px solid #97BCB4;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td {
		font-size: 2.4rem;
		padding: 1.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td {
		font-size: 1.9rem;
		padding: 1.3rem 1.6rem;
	}
}
#sec_plan .plan_tb tbody tr td:nth-child(1) {
	border-left: 1px solid #97BCB4;
	text-align: center;
}
#sec_plan .plan_tb tbody tr td:nth-child(2) {
	text-align: right;
	padding: 1.3rem 6.4rem 1.3rem 5rem;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td:nth-child(2) {
		padding: 1.6rem 2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td:nth-child(2) {
		padding: 1.3rem 1.5rem;
	}
}
#sec_plan .plan_tb tbody tr td:nth-child(3) {
	background-color: #E1F2E8;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td:nth-child(3) {
		padding: 1.6rem 4rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td:nth-child(3) {
		padding: 1.3rem 1.5rem 1.3rem 2rem;
	}
}
#sec_plan .plan_tb tbody tr td ul li {
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 2;
	padding-left: 2.7rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td ul li {
		font-size: 2.4rem;
		padding-left: 3.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td ul li {
		font-size: 1.9rem;
		padding-left: 2.8rem;
	}
}
#sec_plan .plan_tb tbody tr td ul li::before {
	content: "";
	width: 1.9rem;
	height: 1.9rem;
	background: url(../img/common/ico_check.svg) no-repeat center/contain;
	position: absolute;
	left: 0;
	top: 0.9rem;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td ul li::before {
		width: 2.4rem;
		height: 2.4rem;
		top: 1.2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td ul li::before {
		width: 1.9rem;
		height: 1.9rem;
		top: 0.9rem;
	}
}
#sec_plan .plan_tb tbody tr td ul li + li {
	margin-top: 1em;
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb tbody tr td ul li + li {
		margin-top: 2.1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb tbody tr td ul li + li {
		margin-top: 1em;
	}
}
@media screen and (max-width: 767px) {
	#sec_plan .plan_tb thead .sp_sticky, #sec_plan .plan_tb tbody .sp_sticky {
		position: sticky;
		left: 0;
		top: 0;
		z-index: 1;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_plan .plan_tb thead .sp_sticky, #sec_plan .plan_tb tbody .sp_sticky {
		position: static;
	}
}
#sec_plan .link_wrap {
	display: flex;
	justify-content: flex-end;
	gap: 2.8rem;
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_plan .link_wrap {
		flex-direction: column;
		gap: 1rem;
		margin-top: 3rem;
	}
	#sec_plan .link_wrap .link_txt a {
		font-size: 2.6rem;
		padding-right: 4.8rem;
	}
	#sec_plan .link_wrap .link_txt a::after {
		width: 3.6rem;
		height: 3.6rem;
		background-size: 1.2rem auto;
	}
}

/* sec_case
--------------------------------*/
#sec_case {
	padding: 11.3rem 0 14.7rem;
	background-color: #FAF9F5;
}
@media screen and (max-width: 767px) {
	#sec_case {
		padding: 7.3rem 0 10rem;
	}
}
#sec_case .sec_head::after {
	background-color: #FAF9F5;
}
#sec_case .lead {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #000000;
	font-weight: 700;
	font-size: 2.8rem;
	line-height: 1.5;
	margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
	#sec_case .lead {
		font-size: 3.2rem;
		margin-top: 4.8rem;
	}
}
#sec_case .lead::before {
	content: "";
	display: inline-block;
	width: 8rem;
	height: 8rem;
	background: url(../img/index/case_lead_ico.svg) no-repeat center/contain;
	margin-right: 1.3rem;
}
@media screen and (max-width: 767px) {
	#sec_case .lead::before {
		width: 7.5rem;
		height: 7.5rem;
		margin-right: 0.8rem;
	}
}
#sec_case .case_list {
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list {
		margin-top: 5rem;
	}
}
#sec_case .case_list .item {
	padding: 4.8rem 8rem 6.5rem;
	background-color: #ffffff;
	box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.1);
	border-radius: 1.2rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item {
		padding: 7.2rem 4.1rem 8rem;
		box-shadow: 0 0.3rem 0.4rem rgba(0, 0, 0, 0.1);
	}
}
#sec_case .case_list .item + .item {
	margin-top: 6rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item + .item {
		margin-top: 5.2rem;
	}
}
#sec_case .case_list .item .ttl_en {
	width: 15.7rem;
	position: absolute;
	right: 10rem;
	top: -2.2rem;
	opacity: 0;
	transition: opacity 1s ease;
	transition-delay: 1s;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .ttl_en {
		width: 19.2rem;
		right: 4.9rem;
	}
}
#sec_case .case_list .item.is-show .ttl_en {
	opacity: 1;
}
#sec_case .case_list .item .inner {
	display: flex;
	gap: 0 8.6rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner {
		flex-wrap: wrap;
		gap: 4.2rem 3.2rem;
	}
}
#sec_case .case_list .item .inner .illust {
	width: 16.9rem;
	height: 16.9rem;
	background-color: #F7F5ED;
	border-radius: 1.4rem;
	margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .illust {
		width: 13.8rem;
		height: 13.8rem;
	}
}
#sec_case .case_list .item .inner .illust img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#sec_case .case_list .item .inner .txt_wrap {
	flex: 1;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .txt_wrap {
		display: contents;
	}
}
#sec_case .case_list .item .inner .txt_wrap .ttl {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.7;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .txt_wrap .ttl {
		width: calc(100% - 17rem);
		font-size: 2.8rem;
		line-height: 1.7142857143;
	}
}
#sec_case .case_list .item .inner .txt_wrap .info {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1.5rem 1.1rem;
	margin-top: 3.6rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .txt_wrap .info {
		width: 100%;
		gap: 2rem 1.6rem;
		margin-top: 0;
	}
}
#sec_case .case_list .item .inner .txt_wrap .info dt {
	width: 9.7rem;
	text-align: center;
	color: #000000;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 0.3rem 1rem 0.4rem;
	border: 1px solid #188060;
	border-radius: 100vh;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .txt_wrap .info dt {
		width: 14rem;
		font-size: 2.4rem;
		padding: 0.5rem 1rem;
	}
}
#sec_case .case_list .item .inner .txt_wrap .info dd {
	width: calc(100% - 10.8rem);
	color: #000000;
	font-weight: 500;
	line-height: 2.0625;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .inner .txt_wrap .info dd {
		width: calc(100% - 15.6rem);
		font-size: 2.6rem;
		line-height: 1.8461538462;
	}
}
#sec_case .case_list .item .detail {
	display: flex;
	align-items: flex-start;
	gap: 5.4rem;
	padding-top: 2.2rem;
	border-top: 1px solid #D9D9D9;
	margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail {
		display: block;
		padding-top: 3.5rem;
		margin-top: 5rem;
	}
}
#sec_case .case_list .item .detail .txt_wrap {
	display: flex;
	align-items: flex-start;
	gap: 1.7rem;
	width: 66.6rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail .txt_wrap {
		gap: 2rem;
		width: 100%;
	}
}
#sec_case .case_list .item .detail .txt_wrap .ttl {
	width: 9.7rem;
	text-align: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.6rem;
	line-height: 1.5;
	padding: 0.3rem 1rem 0.4rem;
	background-color: #188060;
	border-radius: 100vh;
	margin-top: 0.6rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail .txt_wrap .ttl {
		width: 14.7rem;
		font-size: 2.6rem;
		padding: 0.5rem 1rem;
	}
}
#sec_case .case_list .item .detail .txt_wrap .txt {
	flex: 1;
	color: #000000;
	font-size: 1.8rem;
	line-height: 1.7777777778;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail .txt_wrap .txt {
		font-size: 2.6rem;
		line-height: 1.7307692308;
	}
}
#sec_case .case_list .item .detail .btn {
	flex: 1;
	margin-top: 1.3rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail .btn {
		margin-top: 3.6rem;
	}
}
#sec_case .case_list .item .detail .btn a {
	min-width: 100%;
	min-height: 5.2rem;
}
@media screen and (max-width: 767px) {
	#sec_case .case_list .item .detail .btn a {
		min-width: 44.2rem;
		min-height: 8.3rem;
	}
}

/* sec_expert
--------------------------------*/
#sec_expert {
	padding: 12rem 0 15.2rem;
}
@media screen and (max-width: 767px) {
	#sec_expert {
		padding: 8.4rem 0 7.4rem;
	}
}
#sec_expert .sub_ttl {
	margin-top: 11rem;
}
@media screen and (max-width: 767px) {
	#sec_expert .sub_ttl {
		margin-top: 8.3rem;
	}
}
#sec_expert .lead {
	color: #000000;
	line-height: 2.375;
	margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
	#sec_expert .lead {
		line-height: 1.9285714286;
		margin-top: 4.5rem;
	}
}
#sec_expert .expert_list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8rem 16.4rem;
	margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list {
		grid-template-columns: 1fr;
		gap: 7.3rem 0;
		margin-top: 5.3rem;
	}
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list .item {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 2.7rem;
	}
}
#sec_expert .expert_list .item .name {
	color: #000000;
	font-weight: 500;
	line-height: 2.125;
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list .item .name {
		width: calc(100% - 32.5rem);
		font-size: 2.6rem;
		line-height: 2.0769230769;
	}
}
#sec_expert .expert_list .item .name .green {
	display: block;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.7;
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list .item .name .green {
		font-size: 3.2rem;
		line-height: 1.6875;
	}
}
#sec_expert .expert_list .item .img {
	margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list .item .img {
		width: 29.8rem;
	}
}
#sec_expert .expert_list .item .txt {
	color: #000000;
	font-size: 1.5rem;
	line-height: 2.1333333333;
	margin-top: 2.6rem;
}
@media screen and (max-width: 767px) {
	#sec_expert .expert_list .item .txt {
		width: 100%;
		font-size: 2.8rem;
		line-height: 1.9285714286;
		margin-top: 0;
	}
}

/* sec_step
--------------------------------*/
#sec_step {
	padding: 11.2rem 0 16.8rem;
}
@media screen and (max-width: 767px) {
	#sec_step {
		padding: 8.8rem 0 10.3rem;
	}
}
#sec_step .sec_ttl {
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.5;
	padding-bottom: 2.3rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	#sec_step .sec_ttl {
		font-size: 3.4rem;
		line-height: 1.3235294118;
		padding-bottom: 2.8rem;
	}
}
#sec_step .sec_ttl::after {
	content: "";
	width: 4.8rem;
	height: 1px;
	background-color: #188060;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0 auto;
}
@media screen and (max-width: 767px) {
	#sec_step .sec_ttl::after {
		width: 9.4rem;
	}
}
#sec_step .step_list {
	width: 110rem;
	margin: 5.2rem auto 0;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list {
		width: 100%;
		margin-top: 5.6rem;
	}
}
#sec_step .step_list .item {
	display: flex;
	align-items: center;
	gap: 0 3.4rem;
	position: relative;
}
#sec_step .step_list .item + .item {
	margin-top: 6.8rem;
}
#sec_step .step_list .item::before {
	content: "";
	width: 1px;
	height: calc(100% + 1rem);
	background-image: linear-gradient(to bottom, #188060 0.2rem, transparent 0.2rem);
	background-repeat: repeat-y;
	background-size: 1px 0.4rem;
	background-position: left top;
	position: absolute;
	left: 5.3rem;
	top: 50%;
}
#sec_step .step_list .item::after {
	content: "";
	width: 1.2rem;
	height: 1.5rem;
	background: url(../img/common/ico_arw_green02.svg) no-repeat center/contain;
	position: absolute;
	left: 4.7rem;
	top: calc(100% + 8.2rem);
	rotate: 90deg;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item::after {
		width: 1.5rem;
		height: 1.8rem;
		left: 4.6rem;
		top: calc(100% + 8.4rem);
	}
}
#sec_step .step_list .item:nth-last-child(2)::before {
	height: calc(100% - 1.5rem);
}
#sec_step .step_list .item:nth-last-child(2)::after {
	top: calc(100% + 5.5rem);
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item:nth-last-child(2)::after {
		top: calc(100% + 5.2rem);
	}
}
#sec_step .step_list .item .ico {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10.4rem;
	height: 10.4rem;
	background-color: #ffffff;
	border-radius: 50%;
	border: 1px solid #188060;
	position: relative;
}
#sec_step .step_list .item .ico img {
	width: 7rem;
}
#sec_step .step_list .item .txt_wrap {
	flex: 1;
	padding: 3.5rem 4.6rem 4.5rem;
	background-color: #ffffff;
	border-radius: 0.5rem;
	border: 1px solid #188060;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item .txt_wrap {
		min-height: 16.2rem;
		padding: 3.5rem 4.5rem;
	}
}
#sec_step .step_list .item .txt_wrap .ttl {
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item .txt_wrap .ttl {
		font-size: 2.4rem;
	}
}
#sec_step .step_list .item .txt_wrap .txt {
	font-weight: 700;
	font-size: 2.2rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item .txt_wrap .txt {
		display: flex;
		gap: 0.5rem;
		font-size: 2.8rem;
	}
}
#sec_step .step_list .item .txt_wrap .txt .small {
	flex: 1;
	font-weight: 500;
	font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .item .txt_wrap .txt .small {
		font-size: 2.4rem;
		line-height: 1.4166666667;
		margin-top: 1.1rem;
	}
}
#sec_step .step_list .complete {
	padding: 1.5rem;
	background-color: #1E4E40;
	border-radius: 0.5rem;
	margin-top: 6.8rem;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .complete {
		padding: 2.8rem;
	}
}
#sec_step .step_list .complete .txt {
	color: #ffffff;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .complete .txt {
		font-size: 3.2rem;
	}
}
#sec_step .step_list .complete .txt .small {
	font-size: 2rem;
}
@media screen and (max-width: 767px) {
	#sec_step .step_list .complete .txt .small {
		font-size: 2.6rem;
	}
}

/* sec_blog
--------------------------------*/
#sec_blog {
	padding: 11.2rem 0 13.3rem;
}
@media screen and (max-width: 767px) {
	#sec_blog {
		padding: 7.9rem 0 9.3rem;
	}
}
#sec_blog .sec_head_s {
	margin-top: 0;
}
#sec_blog .blog_list {
	margin-top: 11.7rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list {
		margin: 6rem -4rem 0;
	}
}
#sec_blog .blog_list .item {
	width: 36.7rem;
	margin: 0 1.25rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .item {
		width: 48.4rem;
		margin: 0 1.65rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .item {
		width: 30rem;
		margin: 0 1rem;
	}
}
#sec_blog .blog_list .item a {
	display: block;
}
#sec_blog .blog_list .item .thumb {
	width: 100%;
	aspect-ratio: 368/207;
	position: relative;
	overflow: hidden;
}
#sec_blog .blog_list .item .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.3s ease;
}
#sec_blog .blog_list .item .thumb .cate {
	color: #ffffff;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.2307692308;
	position: absolute;
	right: 0;
	top: 0;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .item .thumb .cate {
		font-size: 2rem;
		line-height: 1.2;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .item .thumb .cate {
		font-size: 1.6rem;
	}
}
#sec_blog .blog_list .item .thumb .cate span {
	display: inline-block;
	padding: 0.8rem 1.1rem;
	background-color: #1E4E40;
	border-radius: 0 0 0 0.5rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .item .thumb .cate span {
		padding: 1.3rem 1.1rem;
		border-radius: 0 0 0 0.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .item .thumb .cate span {
		padding: 1rem 0.8rem;
		border-radius: 0 0 0 0.5rem;
	}
}
#sec_blog .blog_list .item .ttl {
	color: #000000;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.7777777778;
	margin-top: 1.5rem;
	transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .item .ttl {
		font-size: 2.4rem;
		line-height: 1.75;
		margin-top: 2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .item .ttl {
		font-size: 1.9rem;
		margin-top: 1.6rem;
	}
}
#sec_blog .blog_list .item .date {
	color: #7F7F7F;
	font-size: 1.4rem;
	line-height: 1;
	letter-spacing: 0.1em;
	margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .item .date {
		font-size: 2rem;
		margin-top: 1.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .item .date {
		font-size: 1.6rem;
		margin-top: 1rem;
	}
}
@media (any-hover: hover) {
	#sec_blog .blog_list .item a:hover .thumb img {
		transform: scale(1.08);
	}
	#sec_blog .blog_list .item a:hover .ttl {
		color: #188060;
	}
}
#sec_blog .blog_list .slick-arrow {
	width: 3.7rem;
	height: 3.7rem;
	font-size: 0;
	position: absolute;
	top: -6rem;
	z-index: 1;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .slick-arrow {
		width: 7.9rem;
		height: 7.9rem;
		top: 11.2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .slick-arrow {
		width: 6rem;
		height: 6rem;
		top: 5rem;
	}
}
#sec_blog .blog_list .slick-arrow::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	border: 1px solid #188060;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	transition: transform 0.3s ease;
}
#sec_blog .blog_list .slick-arrow::after {
	content: "";
	width: 0.9rem;
	height: 1rem;
	background: url(../img/common/ico_arw_green.svg) no-repeat center/contain;
	position: absolute;
	left: 50%;
	top: 50%;
	translate: -38% -50%;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .slick-arrow::after {
		width: 1.9rem;
		height: 1.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .slick-arrow::after {
		width: 1.5rem;
		height: 1.2rem;
	}
}
#sec_blog .blog_list .slick-arrow.slick-next {
	right: 0;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .slick-arrow.slick-next {
		right: 9.1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .slick-arrow.slick-next {
		right: 28rem;
	}
}
#sec_blog .blog_list .slick-arrow.slick-prev {
	right: 5rem;
	scale: -1 1;
}
@media screen and (max-width: 767px) {
	#sec_blog .blog_list .slick-arrow.slick-prev {
		right: auto;
		left: 9.1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	#sec_blog .blog_list .slick-arrow.slick-prev {
		left: 28rem;
	}
}
@media (any-hover: hover) {
	#sec_blog .blog_list .slick-arrow:hover::before {
		transform: scale(1.1);
	}
}
#sec_blog .btn_wrap {
	display: flex;
	justify-content: center;
	gap: 3rem;
	margin-top: 5.7rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .btn_wrap {
		flex-direction: column;
		align-items: center;
		gap: 1.7rem;
		margin-top: 4.5rem;
	}
}
#sec_blog .btn_wrap .btn a {
	min-width: 38.4rem;
}
@media screen and (max-width: 767px) {
	#sec_blog .btn_wrap .btn a {
		width: 48.4rem;
	}
}

/* sec_contact
--------------------------------*/
.sec_contact {
	padding: 11.4rem 0;
}
@media screen and (max-width: 767px) {
	.sec_contact {
		padding: 6rem 0 7.8rem;
	}
}
.sec_contact .lead {
	font-weight: 700;
	font-size: 2.25rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.sec_contact .lead {
		font-size: 2.4rem;
		line-height: 2.25;
	}
}
.sec_contact .lead .large {
	font-size: 2.6rem;
	line-height: 1.7307692308;
}
@media screen and (max-width: 767px) {
	.sec_contact .lead .large {
		font-size: 3.2rem;
		line-height: 1.6875;
	}
}
.sec_contact .lead + .box {
	margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .lead + .box {
		margin-top: 4rem;
	}
}
.sec_contact .box {
	background-color: #ffffff;
	border: 0.3rem solid #188060;
	border-radius: 0.5rem;
	position: relative;
}
.sec_contact .box + .box {
	margin-top: 5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box + .box {
		margin-top: 17.4rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box + .box {
		margin-top: 6rem;
	}
}
.sec_contact .box._price {
	padding: 2rem 22.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price {
		padding: 5.2rem 4.5rem 9.6rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price {
		padding: 1.6rem 18rem 1.6rem 2rem;
	}
}
.sec_contact .box._price .tb {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 3.6rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price .tb {
		justify-content: center;
		gap: 0 2.7rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price .tb {
		gap: 0 3.6rem;
	}
}
.sec_contact .box._price .tb dt {
	min-width: 25.7rem;
	text-align: center;
	color: #ffffff;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	padding: 1rem;
	background-color: #1E4E40;
	border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price .tb dt {
		min-width: inherit;
		width: 21.9rem;
		font-size: 3rem;
		line-height: 1.5333333333;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price .tb dt {
		width: 17rem;
		font-size: 2.4rem;
	}
}
.sec_contact .box._price .tb dd {
	display: flex;
	align-items: center;
	color: #000000;
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.1538461538;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price .tb dd {
		font-size: 4.4rem;
		line-height: 1.7386363636;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price .tb dd {
		font-size: 3.5rem;
	}
}
.sec_contact .box._price .tb dd .en {
	display: inline-block;
	font-style: italic;
	font-size: 8rem;
	line-height: 1;
	margin-right: 1rem;
	position: relative;
	top: -0.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price .tb dd .en {
		font-size: 13.6rem;
		margin-right: 2rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price .tb dd .en {
		font-size: 10.8rem;
		margin-right: 1.6rem;
	}
}
.sec_contact .box._price .illust {
	width: 23.2rem;
	position: absolute;
	right: 10rem;
	bottom: -2.4rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._price .illust {
		width: 28.2rem;
		right: 19.3rem;
		bottom: -12.5rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._price .illust {
		width: 24rem;
		right: 2rem;
		bottom: -2rem;
	}
}
.sec_contact .box._contact {
	padding: 5rem 10rem 4.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact {
		padding: 4.5rem 5.4rem 5.3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact {
		padding: 4.5rem 3rem 5.3rem;
	}
}
.sec_contact .box._contact .ttl {
	font-weight: 700;
	font-size: 1.8rem;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .ttl {
		font-size: 2.6rem;
	}
}
.sec_contact .box._contact .ttl span {
	display: inline-block;
	padding: 0 2.5rem;
	position: relative;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .ttl span {
		padding: 0 4rem;
	}
}
.sec_contact .box._contact .ttl span::before, .sec_contact .box._contact .ttl span::after {
	content: "";
	width: 1px;
	height: 3.8rem;
	background-color: #333333;
	position: absolute;
	bottom: -0.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .ttl span::before, .sec_contact .box._contact .ttl span::after {
		height: 5.5rem;
		bottom: -0.8rem;
	}
}
.sec_contact .box._contact .ttl span::before {
	rotate: -32deg;
	left: 0;
}
.sec_contact .box._contact .ttl span::after {
	rotate: 32deg;
	right: 0;
}
.sec_contact .box._contact .btn_wrap {
	display: flex;
	justify-content: space-between;
	margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap {
		flex-direction: column;
		gap: 3rem 0;
		margin-top: 3rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
		margin-top: 2.5rem;
	}
}
.sec_contact .box._contact .btn_wrap .btn {
	width: 43.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn {
		width: 100%;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn {
		width: 49%;
	}
}
.sec_contact .box._contact .btn_wrap .btn a {
	flex-direction: column;
	width: 100%;
	height: 18.3rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 2;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn a {
		height: 17.6rem;
		font-size: 2.6rem;
		border-radius: 1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn a {
		min-width: inherit;
		height: 14rem;
		font-size: 2rem;
		padding: 1.5rem 4rem;
	}
}
.sec_contact .box._contact .btn_wrap .btn a::before {
	width: 110%;
}
.sec_contact .box._contact .btn_wrap .btn a .arw {
	width: 2.6rem;
	height: 2.6rem;
	transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn a .arw {
		width: 3.4rem;
		height: 3.4rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn a .arw {
		width: 2.7rem;
		height: 2.7rem;
		right: 1.5rem;
	}
	.sec_contact .box._contact .btn_wrap .btn a .arw::before {
		width: 1.2rem;
		height: 1.2rem;
	}
}
@media (any-hover: hover) {
	.sec_contact .box._contact .btn_wrap .btn a:hover .arw {
		transform: translate(0.5rem, -50%);
	}
}
.sec_contact .box._contact .btn_wrap .btn .btn_txt .ico {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 0.3rem;
	position: relative;
}
.sec_contact .box._contact .btn_wrap .btn .btn_txt .ico img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sec_contact .box._contact .btn_wrap .btn .btn_txt .large {
	display: block;
	line-height: 1.5;
}
.sec_contact .box._contact .btn_wrap .btn._tel a {
	color: #333333;
	line-height: 1.1818181818;
	background-color: #ffffff;
	border: 0.2rem solid #188060;
	pointer-events: all;
	cursor: pointer;
}
.sec_contact .box._contact .btn_wrap .btn._tel a::before {
	background-color: #F8F8F8;
}
.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .ico {
	width: 2.6rem;
	height: 2.6rem;
	top: 0.6rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .ico {
		width: 3.3rem;
		height: 3.3rem;
		top: 0.8rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .ico {
		width: 2.6rem;
		height: 2.6rem;
		top: 0.6rem;
	}
}
.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .large {
	font-weight: 500;
	color: #333333;
	font-size: 4.4rem;
	line-height: 1.3181818182;
	margin: 0.5rem 0 0;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .large {
		font-size: 5.66rem;
		line-height: 1.2279151943;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn._tel a .btn_txt .large {
		font-size: 4.5rem;
	}
}
.sec_contact .box._contact .btn_wrap .btn._tel a .arw {
	background-color: #188060;
}
.sec_contact .box._contact .btn_wrap .btn._tel a .arw::before {
	background-color: #ffffff;
}
@media (any-hover: hover) {
	.sec_contact .box._contact .btn_wrap .btn._tel a:hover .arw {
		background-color: #1E4E40;
	}
}
.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .ico {
	width: 3.2rem;
	height: 3.2rem;
	top: 0.8rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .ico {
		width: 4.1rem;
		height: 4.1rem;
		top: 1rem;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .ico {
		width: 3.2rem;
		height: 3.2rem;
		top: 0.8rem;
	}
}
.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .large {
	font-size: 2.8rem;
	line-height: 1.7857142857;
	margin: 0.2rem 0 1.3rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .large {
		font-size: 3.6rem;
		line-height: 1.7888888889;
	}
}
@media screen and (max-width: 767px) and (orientation: landscape) {
	.sec_contact .box._contact .btn_wrap .btn._contact .btn_txt .large {
		font-size: 2.8rem;
	}
}
.sec_contact .box._contact .txt {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 2;
	margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .txt {
		font-size: 3.2rem;
		margin-top: 4rem;
	}
}
.sec_contact .box._contact .txt .large {
	display: inline-block;
	font-size: 3.4rem;
	line-height: 1.1470588235;
}
@media screen and (max-width: 767px) {
	.sec_contact .box._contact .txt .large {
		font-size: 3.8rem;
	}
}
.sec_contact .box._contact .txt .large .underline {
	display: inline-block;
	border-bottom: 1px solid #333333;
}