@charset "UTF-8";

/* ダミー */




/* /ダミー */
/*tabの形状*/
.tab__lists {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px 28px;
	margin-inline: auto;
	max-width: 816px;
}

.tab__list a {
	display: grid;
	place-items: center;
	text-align: center;
	padding: 8px 15px;
	border-radius: 8px;
	width: 180px;
	font-size: 15px;
	line-height: 1.5;
	min-height: 60px;
	font-weight: 700;
}

@media screen and (max-width: 680px) {
	.tab__lists {
		display: flex;
		margin-inline: auto;
		width: auto;
		max-width: 100%;
		overflow-x: scroll;
		flex-wrap: nowrap;
	}

	.tab__list a {
		display: grid;
		place-items: center;
		text-align: center;
		padding: 8px 15px;
		border-radius: 8px;
		width: 180px;
		font-size: 15px;
		line-height: 1.5;
		min-height: 60px;
	}
}

/*liにactiveクラスがついた時ついてない時の形状*/
.tab__color01 a {
	background-color: #D7F5F8;
	color: #11BACC;
}

.tab__color01.active a {
	background-color: #11BACC;
	color: #FFF;
}

.tab__color02 a {
	background-color: #EFF9EA;
	color: #70C83D;
}

.tab__color02.active a {
	background-color: #70C83D;
	color: #FFF;
}

.tab__color03 a {
	background-color: #EAF4FC;
	color: #4197E4;
}

.tab__color03.active a {
	background-color: #4197E4;
	color: #FFF;
}

.tab__color04 a {
	background-color: #FCF5E6;
	color: #ECA71A;
}

.tab__color04.active a {
	background-color: #ECA71A;
	color: #FFF;
}

.tab__color05 a {
	background-color: #F7F1FD;
	color: #AD77E7;
}

.tab__color05.active a {
	background-color: #AD77E7;
	color: #FFF;
}

.tab__color06 a {
	background-color: #FCEFFA;
	color: #EA6CD2;
}

.tab__color06.active a {
	background-color: #EA6CD2;
	color: #FFF;
}

.tab__color07 a {
	background-color: #FBFAE6;
	color: #E0D81A;
}

.tab__color07.active a {
	background-color: #E0D81A;
	color: #FFF;
}

.tab__color08 a {
	background-color: #ECF9F3;
	color: #54C78E;
}

.tab__color08.active a {
	background-color: #54C78E;
	color: #FFF;
}



/*エリアの表示非表示と形状*/
.area {
	display: none;
	/*はじめは非表示*/
	opacity: 0;
	/*透過0*/
	background: #fff;
	padding-bottom: 183px;
}

@media screen and (max-width: 680px) {
	.area {
		padding-bottom: 40px;
	}
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
	max-width: 1240px;
	margin: 75px 25px 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	/*place-items: center;*/
	row-gap: 45px;
	column-gap: 32px;
	animation-name: displayAnime;
	/*ふわっと表示させるためのアニメーション*/
	animation-duration: 2s;
	animation-fill-mode: forwards;
}

@media screen and (max-width: 680px) {
	.area.is-active {
		max-width: 335px;
		/*margin-top: 26px;*/
		margin-top: 4vw;
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		place-items: center;
		margin-inline: auto;
		border-radius: 16px;
		row-gap: 32px;
		column-gap: 38px;
		animation-name: displayAnime;
		/*ふわっと表示させるためのアニメーション*/
		animation-duration: 2s;
		animation-fill-mode: forwards;
	}

}

@keyframes displayAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}



/* 背景色 */
.main__bg {
	background-color: #F6F8F9;
}

/* fv
***************************************************************/
.fv {
	padding-top: 113px;
}

.fv__inner {
	display: flex;
	gap: 27px;
	width: 1590px;
	margin: 0 auto;
	justify-content: center;
	padding: 0 20px;
}

.fv__wrap01 {
	position: relative;
	height: 762px;
}

.fv__img {
	display: block;
	width: 100%;
	max-width: 900px;
	height: 100%;
}

.fv__catch {
	content: "";
	display: inline-block;
	position: absolute;
	left: 57px;
	top: 50px;
	font-size: 28px;
	font-weight: 700;
	color: #26499D;
}

.fv__img01 {
	width: 100%;
	max-width: 900px;
}

.fv__small {
	font-size: 12px;
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	color: #26499D;
	bottom: 50px;
	left: 57px;
}

.fv__inner-text {
	position: absolute;
	color: #030303;
	font-size: 18px;
	line-height: 3.2em;
	top: 240px;
	left: 57px;
}

@media screen and (max-width: 1550px) {
	.fv__inner-text {
		top: 210px;
		left: 40px;
		font-size: 16px;
		line-height: 2.3;
	}
}

.fv__wrap02 {
	max-width: 620px;
	flex: 1;
}

.fv__box01 {}

.fv__tag01 {
	background-color: #FFF;
	border-radius: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	height: 48px;
	line-height: 48px;
	padding: 0 17px;
}

.fv__heading01,
.fv__heading02 {
	font-size: 18px;
	color: #26499D;
}

/* .fv__text01 {
	display: flex;
	align-items: center;
	gap: 17px;
	color: #030303;
	font-size: 12px;
	font-weight: 700;
}
.fv__text01 img {
	width: 30px;
} */

.panels01 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(138px, auto);
	gap: 22px;
	margin-top: 18px;
}

.panel01 {
	border-radius: 18px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
}

.panel01:nth-of-type(1) {
	background-color: #51BEC9;
}

.panel01:nth-of-type(2) {
	background-color: #7FC756;
}

.panel01:nth-of-type(3) {
	background-color: #57A0E2;
}

.panel01:nth-of-type(4) {
	background-color: #DEAC44;
}

.panel01:nth-of-type(5) {
	background-color: #A388C1;
}

.panel01:nth-of-type(6) {
	background-color: #DB79C8;
}

.panel01:nth-of-type(7) {
	background-color: #E0D81B;
}

.panel01:nth-of-type(8) {
	background-color: #5EB78B;
}

.fv__item-link {
	padding: 14px 13px;
	display: flex;
	flex-flow: column;
}

.panel01 img {
	margin-left: auto;
	width: 7px;
	height: 12px;
}

.panel01__head {
	color: #FFF;
	font-size: 12px;
	line-height: 1.25;
}

.panel01__num {
	font-size: 26px;
	color: #FFF;
	font-weight: 700;
	line-height: 1.23;
}

.panel01__text-box {
	margin-top: 10px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: space-between;
	flex: 1;
}

.panel01__text {
	font-size: 11px;
	/*font-size: 12px;*/
	line-height: 1.46;
	font-weight: 700;
	color: #FFF;
	min-height: 37px;
}

.fv__container {
	border-radius: 18px;
}

.fv__box02 {
	margin-top: 35px;
}

.fv__tag02 {
	background-color: #FFF;
	border-radius: 18px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 18px;
	height: 48px;
	line-height: 48px;
	padding: 0 17px;
}

.panels02 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(100px, auto);
	gap: 22px;
	margin-top: 18px;
}

.panel02 {
	background-color: #fff;
	border-radius: 18px;
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	position: relative;
}

.panel02 a {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	padding: 20px 0;
}

.panel02__icon {
	width: 100%;
	height: 70px;
	background-position: center center;
	background-repeat: no-repeat;
}

.panel02-01 .panel02__icon {
	background-image: url(../../images/pc/icon-menu01.svg);
	background-size: 45px 31px;
}

.panel02-02 .panel02__icon {
	background-image: url(../../images/pc/icon-menu02.svg);
	background-size: 37px 53px;
}

.panel02-03 .panel02__icon {
	background-image: url(../../images/pc/icon-menu03.svg);
	background-size: 52px 54px;
}

.panel02-04 .panel02__icon {
	background-image: url(../../images/pc/icon-menu04.svg);
	background-size: 60px 45px;
}

.panel02-05 .panel02__icon {
	background-image: url(../../images/pc/icon-menu05.svg);
	background-size: 38px 53px;
}

.panel02-06 .panel02__icon {
	background-image: url(../../images/pc/icon-menu06.svg);
	background-size: 60px 61px;
}

.panel02-07 .panel02__icon {
	background-image: url(../../images/pc/icon-menu07.png);
	background-size: 56px 51px;
}

.panel02__text {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	font-size: 12px;
	text-align: center;
	font-weight: 700;
	color: #26499D;
	line-height: 1.4em;
}


.fv__label {
	margin-top: 20px;
	background-color: #26499D;
	border-radius: 18px;
	color: #FFF;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	padding: 15px 0;
	position: relative;
}

.fv__label::after {
	content: "";
	display: inline-block;
	background-image: url('../../images/pc/arrow-white.svg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 7px;
	height: 12px;
	transform: rotate(90deg);
	position: absolute;
	top: 20px;
	right: 232px;
	z-index: 2;
}

@media screen and (max-width: 1550px) {
	.fv__wrap01 {
		position: relative;
		height: auto;
		/*height: 596px;*/
		width: 100%;
		max-width: 700px;
		/*width: 700px;*/
	}

	.fv__inner {
		gap: 20px;
		max-width: 1240px;
		width: 100%;
		/*width: 1240px;*/
		justify-content: space-between;
		padding: 0 20px;
	}

	.fv__wrap02 {
		max-width: 480px;
	}

	.fv__img {
		height: auto;
		/*height: 596px;*/
	}

	.fv__box02 {
		margin-top: 20px;
	}

	.fv__catch {
		content: "";
		display: inline-block;
		position: absolute;
		left: 40px;
		top: 32px;
		font-size: 28px;
		font-weight: 700;
		color: #26499D;
	}

	.fv__small {
		font-size: 12px;
		content: "";
		display: inline-block;
		position: absolute;
		left: 0;
		bottom: 257px;
		color: #26499D;
		width: 280px;
	}

	.fv__tag01 {
		background-color: #FFF;
		padding: 13px 17px;
		border-radius: 18px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 18px;
	}

	.fv__heading01 {
		font-size: 16px;
		color: #26499D;
	}

	.panels01 {
		grid-auto-rows: minmax(auto, 112px);
		gap: 8px;
		margin-top: 14px;
	}

	.panel01 {
		border-radius: 18px;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
	}

	.fv__item-link {
		padding: 10px 8px;
		display: flex;
		flex-flow: column;
	}

	.panel01 img {
		margin-left: auto;
		width: 7px;
		height: 12px;
	}

	.panel01__head {
		color: #FFF;
		font-size: 12px;
		line-height: 1.25;
	}

	.panel01__num {
		font-size: 20px;
		color: #FFF;
		font-weight: 700;
		line-height: 1.23;
	}

	.panel01__text-box {
		margin-top: 10px;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		justify-content: space-between;
		flex: 1;
	}

	.panel01__text {
		margin-top: 0;
		font-size: 10px;
		line-height: 1.46;
		font-weight: 700;
		color: #FFF;
		min-height: 30px;
		display: block;
		/* align-items: end; */
	}


	.fv__container {
		border-radius: 18px;
	}

	.fv__tag02 {
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		margin-top: 14px;
	}

	.panels02 {
		grid-auto-rows: minmax(auto, 112px);
		gap: 8px;
		margin-top: 14px;
	}

	.panel02 a {
		padding: 10px 0;
	}

	.panel02__icon {}

	.panel02__text {
		font-size: 10px;
		text-align: center;
		margin-top: 0;
		font-weight: 700;
		color: #26499D;
	}


	.fv__label {
		margin-top: 8px;
		background-color: #26499D;
		border-radius: 18px;
		color: #FFF;
		font-size: 12px;
		font-weight: 700;
		text-align: center;
		padding: 4px 0;
		position: relative;
	}

	.fv__label::after {
		content: "";
		display: inline-block;
		background-image: url('../../images/pc/arrow-white.svg');
		background-size: cover;
		background-repeat: no-repeat;
		width: 7px;
		height: 12px;
		transform: rotate(90deg);
		position: absolute;
		top: 10px;
		right: 210px;
		z-index: 2;
	}

	.fv__small {
		bottom: 30px;
		left: 40px;
	}
}


@media screen and (max-width: 680px) {
	.fv {
		/*padding-top: 69px;*/
		/*padding-top: 30vw;*/
		padding-top: 20vw;
	}

	.fv__inner {
		display: block;
		gap: 0;
	}

	.fv__inner-text {
		top: 29vw;
		left: 6vw;
		font-size: 3.2vw;
		line-height: 2;
		padding-right: 4vw;
		letter-spacing: -0.02em;
	}

	/*
	.fv__inner {
		display: flex;
		justify-content: center;
		flex-flow: column;
		align-items: center;
		height: 250vw;
		gap: 0;
		gap: 23px;
		height: 1180px;
	}*/

	.fv__wrap01 {
		position: relative;
		height: auto;
		margin-bottom: 4vw;
	}

	.fv__img {
		width: 100%;
		height: auto;
		/*height: 308px;*/
		/*height: 82vw;*/
	}

	.fv__img img {
		height: 308px;
	}

	.fv__catch {
		content: "";
		display: inline-block;
		position: absolute;
		left: 0;
		top: 0;
		text-indent: unset;
		font-size: 5.8vw;
		font-weight: 700;
	}

	.fv__img01 {
		width: 100%;
		max-width: 900px;
	}

	.fv__small {
		font-size: 12px;
		content: "";
		display: inline-block;
		position: absolute;
		left: 0;
		bottom: 18px;
	}

	.fv__wrap02 {
		max-width: 620px;
		width: 100%;
	}

	.fv__box01 {}

	.fv__tag01 {
		background-color: #FFF;
		/*padding: 9px;*/
		padding: 2vw 4vw;
		border-radius: 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.fv__heading01 {
		font-size: 16px;
	}


	.panels01 {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: unset;
		gap: 2.133vw;
		margin-top: 24px;
	}

	.panel01 {
		position: relative;
		border-radius: 18px;
		min-height: 0;
		height: 24vw;
		display: flex;
		flex-flow: column;
	}

	.fv__item-link {
		height: 100%;
		padding: 10px 12px 9px 15px;
		display: flex;
		flex-flow: column;
	}

	.panel01__head-box {

		display: flex;
		align-items: center;
		gap: 6px;
	}

	.panel01 img {
		width: 7px;
		height: 12px;
		display: block;
		margin-left: unset;
		margin-bottom: 4px;
	}

	.panel01__head {
		color: #FFF;
		font-size: 12px;
		line-height: 1.25;
	}

	.panel01__num {
		font-size: 18px;
		color: #FFF;
		font-weight: 700;
		line-height: 1.23;
	}

	.panel01__text-box {
		margin-top: 13px;
		display: flex;
		flex-flow: row;
		align-items: flex-end;
		justify-content: space-between;
		flex: 1;
	}

	.panel01__text {
		margin-top: auto;
		font-size: 3.5vw;
		line-height: 1.46;
		font-weight: 700;
		color: #FFF;
		min-height: 37px;
		display: grid;
		align-items: end;
	}


	.fv__container {
		border-radius: 10px;
		/*background-color: #FFF;*/
	}

	.fv__box02 {
		margin-top: 30px;
	}

	.fv__tag02 {
		display: flex;
		align-items: center;
		justify-content: space-between;
		/*padding: 9px 9px 10px 10px;*/
		padding: 2vw 4vw;
		border-radius: 10px;
	}

	.panels02 {
		display: grid;
		/*grid-template-columns: repeat(3, 1fr);*/
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: min-content;
		/*gap: 8px;*/
		gap: 2.133vw;
		justify-content: center;
		/*padding: 16px 10px;*/
		padding: 0;

	}

	.panel02 a{
		height: 100%;
		padding: 5.3vw 2.6vw;
		gap: 1.5vw;
	}

	.panel02__icon{
		height: 14vw;
	}

	.panel02__text {
		/*font-size: 10px;*/
		font-size: 2.66vw;
		text-align: center;
	}

	.fv__label {
		margin-top: 24px;
		background-color: #26499D;
		border-radius: 18px;
		color: #FFF;
		font-size: 15px;
		text-align: center;
		padding: 15px 0;
		position: relative;
	}

	.fv__label::after {
		content: "";
		display: inline-block;
		background-image: url('../../images/pc/arrow-white.svg');
		background-size: cover;
		background-repeat: no-repeat;
		width: 7px;
		height: 12px;
		transform: rotate(90deg);
		position: absolute;
		top: 22px;
		right: 232px;
		z-index: 2;
	}
}

/* section1 about
***************************************************************/
.about {
	padding-top: 95px;
}

.about__inner {
	margin: 0 72px;
	margin-inline: auto;
	max-width: 1456px;
	display: flex;
	border-radius: 32px;
	overflow: hidden;
	background-color: #fff;
	padding: 110px 70px 80px 150px;
	align-items: center;
	justify-content: space-between;
}

.about__wrap01 {
	min-width: 560px;
	margin-right: 70px;
}

.about__wrap02 {
	width: 680px;
}

@media screen and (max-width: 1550px) {
	.about__inner {
		padding: 110px 60px 80px 60px;
	}

	.about__wrap01 {
		margin-right: 20px;
	}

	.about__wrap02 {}
}

.about__catch {
	font-size: 34px;
	line-height: 1.7;
	font-weight: 700;
	color: #030303;
	margin-top: 32px;
}

.about__text {
	margin-top: 47px;
	line-height: 2;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.9em;
}

.about__box {
	margin-top: 35px;
	display: flex;
	gap: 37px;
}

.about__years {
	color: #030303;
	font-size: 18px;
	font-weight: 700;
}

.about__years span {
	font-size: 71px;
	line-height: 1.22;
	font-weight: 700;
}

.about__img {
	max-width: 648px;
	height: 100%;
}

.about__btn {
	width: 248px;
	margin-top: 154px;
}

.about__box01 {
	background-color: #F6F8F9;
	border-radius: 16px;
	margin-bottom: 10px;
	text-align: center;
}

.about__box01 img {
	width: 72%;
	padding: 16px 0;
}

.about__box02 {
	background-color: #F6F8F9;
	background-image: url('../../images/pc/about-achievement.png');
	background-repeat: no-repeat;
	background-size: 320px;
	background-position: 80% 50%;
	border-radius: 16px;
	margin-bottom: 10px;
	height: 380px;
}

.about__box02 p {
	line-height: 380px;
	padding: 0 0 0 60px;
	color: #26499D;
	font-size: 24px;
	font-weight: 700;
}


@media screen and (max-width: 1550px) {
	.about__img {
		height: 613px;
	}

	.about__catch {
		font-size: 28px;
		line-height: 1.7;
		font-weight: 700;
		color: #030303;
		margin-top: 10px;
	}

	.about__text {
		margin-top: 27px;
		line-height: 2;
	}

	.about__box {
		margin-top: 23px;
		display: flex;
		gap: 37px;
	}

	.about__years {
		color: #030303;
		font-size: 18px;
		font-weight: 700;
	}

	.about__years span {
		font-size: 71px;
		line-height: 1.22;
		font-weight: 700;
	}

	.about__box02 p {
		padding: 0 0 0 40px;
	}

	.about__box02 {
		background-size: 250px;
		background-position: 90% 50%;
	}
}

@media screen and (max-width: 680px) {
	.about {
		/*padding-top: 220px;*/
		padding-top: 10vw;
	}

	.about__inner {
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		padding: 0 4vw 4vw;
	}

	.about__wrap01 {
		border-radius: 16px;
		min-width: inherit;
		max-width: unset;
		width: 100%;
		margin-inline: auto;
		/*padding: 60px 16px 40px;*/
		padding: 8vw 0;
		background-color: #FFF;
	}

	.about__wrap02 {
		width: 100%;
	}

	.about__box02 {
		background-size: 70vw;
		background-position: 50% 80%;
		margin-bottom: 0;
		height: auto;
	}

	.about__box02 p {
		line-height: inherit;
		padding: 4vw 4vw 80vw;
		font-size: 6vw;
		text-align: center;
	}

	.about__catch {
		font-size: 22px;
		line-height: 1.59;
		font-weight: 700;
		color: #030303;
		margin-top: 16px;
	}

	.about__text {
		/*margin-top: 58px;*/
		margin-top: 4vw;
		line-height: 1.8;
		/*font-size: 16px;*/
		font-size: 4.5vw;
		color: #000;
	}

	.about__box {
		margin-top: 57px;
		display: flex;
		gap: 40px;
	}

	.about__years {
		color: #030303;
		font-size: 16px;
	}

	.about__years span {
		font-size: 56px;
		line-height: 1.22;
	}

	.about__img {
		width: 100%;
		height: 200px;
		content: "";
		display: inline-block;
		position: absolute;
		left: 0;
		top: -155px;
		z-index: 2;
	}

	.about__btn {
		width: 190px;
		margin-top: 32px;
	}

}

/* section2 menu
***************************************************************/
.menu {
	padding-top: 75px;

}

.menu__inner {
	border-radius: 32px;
	background-color: #FFF;
	margin: 0 72px;
	max-width: 1456px;
	margin-inline: auto;
}

.menu__title {
	padding-top: 133px;
	text-align: center;
	font-size: 48px;
}

.menu__catch {
	color: #030303;
	font-size: 34px;
	line-height: 1.7;
	text-align: center;
	margin-top: 32px;
	font-weight: 700;
}

.menu__tab {
	max-width: 1290px;
	margin-inline: auto;
	margin-top: 41px;
}

.area__content {
	border-radius: 16px;
	border: 1px solid #CECECE;
	padding: 23px 20px 84px 20px;
	position: relative;
}

.area__content > a{
	display: block;
}

.tab__img01 {
	width: 100%;
	height: 250px;
	border-radius: 6px;
	border: 1px solid #707070;
	overflow: clip;
	display: block;
}

.tab__text {
	max-width: 351px;
	margin-top: 30px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: #26499D;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tab__tag-box {
	margin-top: 54px;
}

.tab__tag {
	color: #030303;
	font-weight: 500;
	font-size: 14px;
}

.tab__btn {
	content: "";
	display: inline-block;
	position: absolute;
	right: 8px;
	bottom: 8px;
}

@media screen and (min-width: 681px) {}

@media screen and (max-width: 680px) {
	.menu {
		/*padding-top: 48px;*/
		padding-top: 10vw;
	}

	.menu__inner {
		border-radius: 16px;
		/*padding: 0 16px;
		width: 335px;*/
		padding: 0 4vw;
		width: 100%;
		margin-inline: auto;
	}

	.menu__title {
		/*padding-top: 40px;*/
		padding-top: 8vw;
		text-align: center;
		/*font-size: 48px;
		font-size: 9vw;*/
	}

	.menu__catch {
		color: #030303;
		font-size: 22px;
		line-height: 1.59;
		text-align: left;
		margin-top: 32px;
		padding: 0 16px;
	}

	.menu__tab {
		width: 100%;
		background-color: #FFF;
		margin-inline: auto;
		/*margin-top: 26px;*/
		margin-top: 4vw;
		border-radius: 16px;
	}

	.area__content {
		border-radius: 8px;
		border: 1px solid #CECECE;
		padding: 18px 15px 51px 16px;
		position: relative;
		width: 100%;
		margin-inline: auto;
	}



	.tab__img01 {
		width: 100%;
		height: 50.6vw;
		border-radius: 6px;
		border: 1px solid #707070;
	}

	.tab__text {
		width: 100%;
		margin-top: 16px;
		font-weight: 700;
		font-size: 16px;
		line-height: 1.6;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.tab__tag-box {
		margin-top: 41px;
	}

	.tab__tag {
		color: #030303;
		font-size: 14px;
	}

	.tab__btn {
		content: "";
		display: inline-block;
		position: absolute;
		right: 8px;
		bottom: 8px;
	}
}


/* section3 case
***************************************************************/
.case {
	padding-top: 150px;
}

.case__inner {
	margin: 0 72px;
}

.case__container {
	display: flex;
	gap: 38px;
}

.case__text-box {
	padding: 84px 120px 80px 80px;
	border-radius: 32px;
	background-color: #FFF;
	flex-basis: 41%;
}

.case__catch {
	font-size: 34px;
	line-height: 1.7;
	font-weight: 700;
	color: #030303;
	margin-top: 25px;
}

.case__text01 {
	margin-top: 56px;
	line-height: 2;
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.case__contents {}

.case__content {
	width: 56%;
	background-color: #FFF;
	border-radius: 32px;
	padding: 57px 108px 80px 106px;
}

.case__wrapper {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}

.case__img {
	width: 122px;
	height: 123px;
	border-radius: 50%;
	background-color: #EAEAEA;
}

.case__wrap {
	padding-top: 16px;
}

.case__com {
	line-height: 1.8;
	font-weight: 500;
	color: #000;
}

.case__text02 {
	line-height: 1.8;
	font-weight: 500;
	color: #000;
}

.case__head {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding-left: 150px;
	color: #26499D;
	margin-top: -37px;
}

.case__text03 {
	margin-top: 53px;
	font-weight: 500;
	line-height: 1.8;
	color: #000;
}

.case__container-type {
	margin-top: 29px;
}

.case__text-box--none {
	visibility: hidden;
}

@media screen and (min-width: 681px) {}

@media screen and (max-width: 680px) {
	.case {
		padding-top: 48px;
	}

	.case__inner {
		margin: 0 20px;
	}

	.case__container {
		display: flex;
		flex-flow: column;
		gap: 16px;
	}

	.case__text-box {
		padding: 40px 16px 64px;
		border-radius: 32px;
		background-color: #FFF;
		flex-basis: unset;
		width: 100%;
	}

	.case__title {
		text-align: center;
	}

	.case__catch {
		font-size: 22px;
		line-height: 1.7;
		font-weight: 700;
		text-align: center;
		color: #030303;
		margin-top: 11px;
	}

	.case__text01 {
		margin-top: 29px;
		line-height: 2;
		font-size: 16px;
		font-weight: 700;
		color: #000;
	}

	.case__contents {}

	.case__content {
		width: 100%;
		background-color: #FFF;
		border-radius: 32px;
		padding: 38px 16px 92px;
	}

	.case__wrapper {
		display: flex;
		align-items: center;
		gap: 12px;

	}

	.case__img {
		width: 76px;
		height: 76px;
		border-radius: 50%;
		background-color: #EAEAEA;
	}

	.case__wrap {
		padding-top: unset;
		font-size: 14px;
	}

	.case__com {
		line-height: 1.8;
		font-weight: 700;
		color: #000;
	}

	.case__text02 {
		line-height: 1.8;
		font-weight: 700;
		color: #000;
	}

	.case__head {
		font-size: 18px;
		font-weight: 700;
		line-height: 1;
		padding-left: unset;
		margin-top: 26px;
		line-height: 1.6;
	}

	.case__text03 {
		margin-top: 42px;
		font-weight: 500;
		line-height: 1.8;
		color: #000;
	}

	.case__container-type {
		margin-top: 16px;
	}

	.case__text-box--none {
		visibility: unset;
		display: none;
	}

}

/* section4 voice
***************************************************************/
.voice {
	margin: 138px 0 0px;
	position: relative;
}

.voice__inner {
	max-width: 1456px !important;
	width: calc(100% - 40px);
	margin-inline: auto;
	position: relative;
	background-image: url('../../images/pc/voice-img01.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 32px;
}

.voice__list {
	display: flex;
	max-width: 1240px;
	width: 90%;
	margin: 0 auto;
	gap: 30px;
}

.voice__item {
	background-color: #fff;
	border-radius: 32px;
	flex: 1;
	padding: 65px;
}

.voice__item-person {
	display: flex;
	gap: 20px;
}

.voice__item-img {
	width: 26%;
	max-width: 100px;
}

.voice__item-ttl {
	color: #26499D;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.6em;
}

.voice__item-name {
	font-size: 14px;
	font-weight: 700;
}

.voice__item-text {
	font-size: 16px;
	margin-top: 48px;
}

.voice__text-box {
	padding-top: 154px;
	width: 350px;
	color: #FFF;
	margin-inline: auto;
	text-align: center;
}

.voice__title {
	color: #FFF;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
}

.voice__catch {
	font-size: 34px;
	font-weight: 700;
	margin-top: 32px;
	line-height: 1.7;
}

.voice__slider {}

.voice__card {
	background-color: #FFF;
	border-radius: 16px;
	padding: 23px 20px 8px 21px;
	border: 1px solid #CECECE;
}

.voice__img01 {
	max-width: 351px;
	height: 208px;
}

.voice__text {
	font-size: 18px;
	font-weight: 700;
	margin-top: 33px;
	color: #26499D;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.voice__tag-box {
	margin-top: 50px;
	display: flex;
	flex-flow: column;
	gap: 8px;
}

.voice__tag {
	font-size: 14px;
	font-weight: 500;
	color: #030303;
}

.voice__btn {
	display: block;
}


.voice__container {
	padding-top: 122px;
	padding-bottom: 70px;
	;
	margin: 0 auto;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {
	/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 100%;
	margin: 0 auto;
}


.slider .voice__img01 {
	width: 100%;
	/*スライダー内の画像を横幅100%に*/
	height: 207px;
	border-radius: 12px;
	border: 1px solid #707070;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
	margin: 0 10px;
	max-width: 392px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/


/*ドットナビゲーションの設定*/



@media screen and (max-width: 1250px) {
	.voice__container {
		overflow: hidden;
		padding-top: 72px;
		margin: 0 auto;
	}

	.slider .slick-slide {
		margin: 0 10px;
		max-width: 362px;
	}

	.voice__text-box {
		padding-top: 104px;
	}
}

@media screen and (max-width: 680px) {
	.voice {
		/*margin: 48px 20px 0px;*/
		margin: 10vw 4vw 0;
		position: relative;
	}

	.voice__inner {
		width: 100% !important;
		margin-inline: auto;
		overflow: visible;
		position: relative;
	}

	.voice__text-box {
		padding-top: 40px;
		width: 287px;
		color: #FFF;
		margin-inline: auto;
		text-align: center;
	}

	.voice__title {
		color: #FFF;
		font-size: 30px;
		line-height: 1.2;
		font-weight: 700;
	}

	.voice__catch {
		font-size: 22px;
		line-height: 1.59;
		margin-top: 11px;
	}

	.voice__container {
		overflow: hidden;
		/*padding-top: 29px;
		padding-bottom: 38px;*/
		padding-top: 4vw;
		padding-bottom: 4vw;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	.voice__list {
		display: block;
		padding: 0 4vw;
	}

	.voice__item {
		padding: 9.33vw 5.33vw;
	}

	.voice__item:first-child {
		margin-bottom: 4vw;
	}

	.voice__item-person {
		display: block;
	}

	.voice__item-img {
		width: 40vw;
		margin: 0 auto;
		margin-bottom: 2vw;
	}

	.voice__item-ttl {
		font-size: 4.5vw;
	}

	.voice__item-name {
		font-size: 4vw;
	}

	.voice__item-ttl br {
		display: none;
	}

	.voice__item-text {
		font-size: 3.733vw;
		margin-top: 4vw;
		letter-spacing: -0.05em;
	}

	.voice__card {
		background-color: #FFF;
		border-radius: 8px;
		padding: 18px 15px 5px 16px;
	}


	.voice__img01 {
		width: 272px;
		height: 161px;
	}

	.voice__text {
		font-size: 16px;
		font-weight: 700;
		margin-top: 16px;
		line-height: 1.6;
		overflow: hidden;
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.voice__tag-box {
		margin-top: 42px;
		display: flex;
		flex-flow: column;
		gap: 8px;
	}

	.voice__tag {
		font-size: 14px;
		font-weight: 500;
		color: #030303;
	}

	.voice__btn {
		display: block;
		position: relative;
	}

	/*==================================================
	スライダーのためのcss
	===================================*/
	.slider {
		/*横幅94%で左右に余白を持たせて中央寄せ*/
		width: 100%;
		margin: 0 auto;
	}

	.slider .voice__img01 {
		width: 100%;
		/*スライダー内の画像を横幅100%に*/
		height: 161px;
		border-radius: 12px;
		border: 1px solid #707070;
	}

	/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

	.slider .slick-slide {
		margin: 0 10px;
		max-width: 303px;
		height: 407px;
	}

	/*矢印の設定*/

	/*戻る、次へ矢印の位置*/
	.slick-prev,
	.slick-next {
		position: absolute;
		/*絶対配置にする*/
		bottom: -37px;
		cursor: pointer;
		/*マウスカーソルを指マークに*/
		outline: none;
		/*クリックをしたら出てくる枠線を消す*/
		background-image: url('../../images/pc/arrow-white.svg');
		background-repeat: no-repeat;
		background-size: contain;
		height: 16px;
		width: 10px;
		z-index: 10;
	}

	.slick-prev {
		/*戻る矢印の位置と形状*/
		left: 155px;
		transform: rotate(180deg);
	}

	.slick-next {
		/*次へ矢印の位置と形状*/
		right: 155px;
	}


	/*ドットナビゲーションの設定*/


}

/* section5 consultation
***************************************************************/
.consultation {
	padding-top: 105px;
	padding-bottom: 105px;
	margin-inline: auto;
}

.consultation__inner {
	max-width: 1456px !important;
	width: calc(100% - 40px);
	margin: 0 auto;
	margin-inline: auto;
	background-image: url('../../images/pc/consultation-img01.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	border-radius: 32px;
}

.consultation__container {
	padding: 56px 0 70px;
	margin: 0 auto;
}

.consultation__text-box {
	padding-top: 154px;
	width: 350px;
	color: #FFF;
	margin-inline: auto;
	text-align: center;
}

.consultation__title {
	text-align: center;
	color: #FFF;
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
}

.consultation__catch {
	color: #FFF;
	font-size: 34px;
	font-weight: 700;
	margin-top: 27px;
}

.consultation__list {
	display: flex;
	max-width: 1240px;
	width: 90%;
	margin: 0 auto;
	gap: 30px;
}

.consultation__item {
	background-color: #fff;
	border-radius: 32px;
	flex: 1;
	padding: 56px 0 40px 0;
	text-align: center;
}

.consultation__item-heading {
	font-size: 22px;
	font-weight: 700;
	color: #26499D;
}

.consultation__item-text {
	font-size: 48px;
	font-weight: 700;
	color: #26499D;
}

.consultation__item-text a {
	background-image: url('../../images/pc/arrow-right-navy.svg');
	background-repeat: no-repeat;
	background-position: right center;
	background-size: ;
	padding: 0 27px 0 0;
	display: inline-block;

}

@media screen and (min-width: 681px) {}

@media screen and (max-width: 680px) {
	.consultation {
		/*padding-top: 87px;*/
		padding-top: 10vw;
		margin-inline: auto;
	}

	.consultation__inner {
		background-image: url('../../images/sp/consultation-img01-sp.png');
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		/*border-radius: unset;*/
	}

	.consultation__text-box {
		padding-top: 8vw;
		width: 100%;
	}

	.consultation__title {
		color: #FFF;
		/*font-size: 29px;*/
		font-size: 9vw;
		font-weight: 700;
		line-height: 1.7;
		text-align: center;
		/*padding-top: 140px;
		padding-bottom: 140px;*/
	}

	.consultation__container {
		padding: 4vw 0;
	}

	.consultation__list {
		display: block;
	}

	.consultation__item {
		padding: 8vw;
	}

	.consultation__item:first-child {
		margin-bottom: 4vw;
	}

	.consultation__item-heading {
		font-size: 4.2vw;
	}

	.consultation__item-text {
		font-size: 7vw;
		line-height: normal;
	}

	.consultation__catch {
		font-size: 6vw;
		margin-top: 0;
	}

}

/* section6 news
***************************************************************/
.news {
	padding-top: 125px;
}

.news__inner {
	border-radius: 32px;
	background-color: #FFF;
	margin: 0 72px;
	max-width: 1456px;
	margin-inline: auto;
}

.news__title {
	text-align: center;
	padding-top: 133px;
}

.news__items {
	padding-bottom: 72px;
	max-width: 1240px;
	width: 90%;
	margin: 52px auto 0;
}

.news__item {
	margin-bottom: 8px;
	border: 1px solid #CECECE;
	border-radius: 16px;
	background-color: #FFF;
}

.news__item a {
	display: flex;
	align-items: center;
	gap: 263px;
	padding: 38px 36px;
}

.news__topics {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 41px;
}

.news__time {
	font-size: 14px;
	font-weight: 700;
	color: #26499D;
}

.news__text {
	max-width: 740px;
	font-weight: 500;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}




@media screen and (min-width: 681px) {}

@media screen and (max-width: 680px) {
	.news {
		padding-top: 10vw;
		/*padding-top: 69px;
		padding-bottom: 70px;*/
	}

	.news__title {
		text-align: center;
		padding-top: 8vw;
	}

	.news__items {
		/*margin-top: 52px;*/
		margin-top: 8vw;
		padding-bottom: 4vw;
		display: flex;
		flex-flow: column;
		gap: 8px;
	}

	.news__item a {
		display: flex;
		justify-content: flex-start;
		/*flex-flow: column;*/
		align-items: center;
		gap: 263px;
		padding: 4vw;
		border-radius: 16px;
		background-color: #FFF;
	}

	.news__topics {
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		justify-content: space-between;
		gap: 0;
	}

	.news__time {
		font-size: 14px;
	}

	.news__text {
		width: 100%;
		overflow: hidden;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.news .btn03 {
		display: none;
	}
}