@charset "utf-8";

/* ---------------------------------------------------------------------------------------------------- */

.section_1 {}

.section_1 .section_inner {
	padding: 10% 0;
}

.section_1 .section_container {}

.section_1 .section_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 100%;
	margin: 0 auto 0;
}

.section_1 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto;
}

.section_1 .content .img_1 {}

.section_1 .content .img_2 {
	display: block;
	width: 80%;
}

.section_1 .content .text_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
}

.section_1 .content .text_area .text {}

.section_1 .content .text_area .text_1 {}

.section_1 .content .text_area .text_2 {}

.section_1 .content .text_area .text_3 {}

@media screen and (min-width: 768px) {
	.section_1 {}

	.section_1 .section_inner {
		padding: 5% 0;
	}

	.section_1 .section_container {}

	.section_1 .section_container_inner {}

	.section_1 .content {
		width: 60%;
	}

	.section_1 .content .img_1 {}

	.section_1 .content .img_2 {
		width: 40%;
	}

	.section_1 .content .text_area {
		align-items: center;
		text-align: center;
	}

	.section_1 .content .text_area .text {}

	.section_1 .content .text_area .text_1 {}

	.section_1 .content .text_area .text_2 {}

	.section_1 .content .text_area .text_3 {}
}

@media screen and (min-width: 1280px) {
	.section_1 .heading_1 {}
}

@media screen and (min-width: 1440px) {
	.section_1 .section_inner {
		padding: 5% 0;
	}

	.section_1 .content {
		gap: 36px;
		width: 70%;
	}

	.section_1 .content .text_area {
		gap: 12px;
	}

	.section_1 .content .text_area .text {
		font-size: 1.125rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_1 .heading_1 .sub {
		font-size: 2.5rem;
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_2 {
	background-image: url(../img/bg_about_sp.png);
	background-size: cover;
	background-position: 50% 0;
	background-repeat: no-repeat;
}

.section_2 .section_inner {
	padding: 10% 0;
}

.section_2 .section_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto 0;
	padding: 10% 5%;
	background-color: #fff;
	opacity: 0.9;
}

.section_2 .heading_1 {
	width: 45%;
}

.section_2 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_2 .content .text_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0;
}

.section_2 .content .text_area .text {}

.section_2 .content .text_area .text_1 {
	font-size: 1.25rem;
}

.section_2 .content .text_area .text_2 {
	line-height: 2;
}

.section_2 .content .flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_2 .content .flex .item {
	position: relative;
	width: calc((100% - (24px * 1)) / 2);
}

.section_2 .content .flex .item .img {
	width: 100%;
}

.section_2 .content .flex .item .text {
	position: absolute;
	bottom: 4px;
	left: 0;
	display: block;
	width: 90%;
	padding: 4px 8px;
	background-color: #2d3d73;
	font-size: 0.8rem;
	color: #fff;
}

.section_2 .content .flex .item .text::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translate(0, -50%);
	width: auto;
	height: 75%;
	aspect-ratio: 1 / 1;
	background-color: #fff;
	border-radius: 999px;
}

.section_2 .content .flex .item .text::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translate(0, -50%) rotate(45deg);
	width: auto;
	height: 25%;
	aspect-ratio: 1 / 1;
	border-top: 2px #2d3d73 solid;
	border-right: 2px #2d3d73 solid;
}

@media screen and (min-width: 768px) {
	.section_2 {
		background-image: url(../img/bg_about_pc.png);
	}

	.section_2 .section_inner {
		padding: 5% 0 10%;
	}

	.section_2 .section_container_inner {
		padding: 2.5% 5% 0;
	}

	.section_2 .heading_area {}

	.section_2 .heading_1 {
		width: 25%;
	}

	.section_2 .content {
		margin-bottom: -5%;
	}

	.section_2 .content .text_area {
		align-items: center;
	}

	.section_2 .content .text_area .text {}

	.section_2 .content .text_area .text_1 {}

	.section_2 .content .text_area .text_2 {}

	.section_2 .content .flex {

	}

	.section_2 .content .flex .item {
		width: calc((100% - (24px * 2)) / 3);
	}

	.section_2 .content .flex .item .img {}

	.section_2 .content .flex .item .text {
		width: 80%;
	}

	.section_2 .content .flex .item .text::before {}

	.section_2 .content .flex .item .text::after {}
}

@media screen and (min-width: 1280px) {
	.section_2 .section_inner {
		padding: 5% 0 7.5%;
	}

	.section_2 .section_container_inner {
		width: 80%;
		padding: 2.5% 10% 0;
	}

	.section_2 .heading_1 {
		width: 20%;
	}

	.section_2 .content .flex {
		gap: 36px;
	}

	.section_2 .content .flex .item {
		width: calc((100% - (36px * 2)) / 3);
	}

	.section_2 .content .flex .item .text {
		width: 75%;
		padding: 8px 12px;
		font-size: 1rem;
	}

	.section_2 .content .flex .item .text::before {
		height: 60%;
	}

	.section_2 .content .flex .item .text::after {
		right: 16px;
	}
}

@media screen and (min-width: 1440px) {
	.section_2 .section_container_inner {
		gap: 48px;
		width: 80%;
		padding: 2.5% 10% 0;
	}

	.section_2 .heading_1 {
		width: 20%;
	}

	.section_2 .content .text_area .text {
		font-size: 1.125rem;
	}

	.section_2 .content .text_area .text_1 {
		font-size: 1.5rem;
	}

	.section_2 .content {
		gap: 36px;
	}

	.section_2 .content .flex {
		gap: 36px;
	}

	.section_2 .content .flex .item {
		width: calc((100% - (36px * 2)) / 3);
	}

	.section_2 .content .flex .item .text {
		width: 70%;
		padding: 8px 12px;
		font-size: 1.25rem;
	}

	.section_2 .content .flex .item .text::before {
		right: 12px;
		height: 55%;
	}

	.section_2 .content .flex .item .text::after {
		right: 22px;
		height: 20%;
	}
}

@media screen and (min-width: 1920px) {}

/* ---------------------------------------------------------------------------------------------------- */

.section_3 {
	background-color: #f5f2ea;
}

.section_3 .section_inner {
	padding: 10% 0;
}

.section_3 .section_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
}

.section_3 .heading_1 {
	width: 45%;
}

.section_3 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto 0;
}

.section_3 .content .text_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin: 0 auto 0;
}

.section_3 .content .text_area .text {
	text-align: center;
}

.section_3 .content .text_area .text_1 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #2d3d73;
}

.section_3 .content .text_area .text_2 {
	line-height: 2;
}

.section_3 .content .flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_3 .content .flex .item {
	position: relative;
	width: 100%;
}

.section_3 .content .flex .item .img {
	width: 100%;
}

.section_3 .content .flex .item .text_1 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	padding: 0 8px 0 8px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #fff;
}

.section_3 .content .flex .item .text_2 {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	padding: 8px 60px 8px 16px;
	font-size: 1rem;
	color: #fff;
}

.section_3 .content .flex .item .text_2::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translate(0, -50%);
	width: 24px;
	height: 24px;
	background-color: #ddc100;
	clip-path: polygon(24px 50%, 0% 0%, 0% 24px);
}

@media screen and (min-width: 768px) {
	.section_3 {}

	.section_3 .section_inner {
		padding: 5% 0 5%;
	}

	.section_3 .section_container_inner {}

	.section_3 .heading_area {}

	.section_3 .heading_1 {
		width: 25%;
	}

	.section_3 .content {}

	.section_3 .content .text_area {
		align-items: center;
	}

	.section_3 .content .text_area .text {}

	.section_3 .content .text_area .text_1 {}

	.section_3 .content .text_area .text_2 {}

	.section_3 .content .flex {

	}

	.section_3 .content .flex .item {
		width: calc((100% - (24px * 1)) / 2);
	}

	.section_3 .content .flex .item .img {}

	.section_3 .content .flex .item .text {}

	.section_3 .content .flex .item .text_1 {
		font-size: 2.2rem;
	}

	.section_3 .content .flex .item .text_2 {
		font-size: 0.8rem;
	}

	.section_3 .content .flex .item:nth-of-type(4) .text_1 {
		text-align: center;
	}
}

@media screen and (min-width: 1280px) {
	.section_3 .section_inner {}

	.section_3 .section_container_inner {}

	.section_3 .heading_1 {
		width: 20%;
	}

	.section_3 .content {
		width: 70%;
	}

	.section_3 .content .flex {
		gap: 36px;
	}

	.section_3 .content .flex .item {
		width: calc((100% - (36px * 1)) / 2);
	}

	.section_3 .content .flex .item .text {}

	.section_3 .content .flex .item .text_1 {
		font-size: 2.6rem;
	}

	.section_3 .content .flex .item .text_2 {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1440px) {
	.section_3 .heading_1 {
		width: 20%;
	}

	.section_3 .content .text_area .text {}

	.section_3 .content .text_area .text_1 {
		font-size: 2.4rem;
	}

	.section_3 .content .text_area .text_2 {
		padding: 16px 48px 16px 16px;
		font-size: 1.125rem;
	}

	.section_3 .content {
		gap: 36px;
	}

	.section_3 .content .flex {
		gap: 36px;
	}

	.section_3 .content .flex .item {
		width: calc((100% - (36px * 1)) / 2);
	}

	.section_3 .content .flex .item .text {}

	.section_3 .content .flex .item .text_1 {
		font-size: 3.2rem;
	}

	.section_3 .content .flex .item .text_2 {
		padding: 16px 48px 16px 16px;
		font-size: 1rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_3 .content .flex .item .text_1 {
		font-size: 4.3rem;
	}

	.section_3 .content .flex .item .text_2 {
		padding: 16px 96px 16px 16px;
		font-size: 1.25rem;
	}

	.section_3 .content .flex .item .text_2::after {
		right: 24px;
		width: 36px;
		height: 36px;
		clip-path: polygon(36px 50%, 0% 0%, 0% 36px);
	}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_4 {}

.section_4 .section_inner {
	padding: 10% 0 0;
}

.section_4 .section_container_inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 36px;
	width: 100%;
	margin: 0 auto 0;
}

.section_4 .heading_1 {
	width: 90%;
}

.section_4 .heading_1 .main {
	position: relative;
	width: 100%;
	padding: 2.5%;
	background-color: #2d3d73;
	text-align: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 1.875rem;
	line-height: 1.5;
	letter-spacing: 0;
	color: #fff;
}

.section_4 .heading_1 .main::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 0);
	width: 48px;
	height: 24px;
	background-color: #2d3d73;
	clip-path: polygon(50% 24px, 0% 0%, 48px 0%);
}

.section_4 .heading_1 .main .highlight {
	color: #ddc100;
}

	.section_4 .heading_1 .main {
		position: relative; /* アイコンの基準 */
		display: block;     /* テキストは今まで通り */
	}

	.section_4 .heading_1 .main .img {
		position: absolute;
		right: 2.5%;          /* 右端に寄せる（必要に応じて調整） */
		top: 50%;             /* 枠の高さの中央 */
		transform: translateY(-50%); /* アイコン自身の高さ分ずらして真ん中に */
		height: 70px;         /* アイコンのサイズ調整 */
		width: auto;
		/*margin-left: -15%;*/
	}

.section_4 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
}

.section_4 .content .flex {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: stretch;
	gap: 12px;
	width: 100%;
}

.section_4 .content .flex .item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 12px;
	width: calc((100% - (12px * 1)) / 2);
	padding: 2.5%;
	background-color: #f5f2ea;
}

.section_4 .content .flex .item::after {
	content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.section_4 .content .flex .item:nth-of-type(odd):after {
    background: #ddc100;
}

.section_4 .content .flex .item:nth-of-type(even):after {
    background: #fceabc;
}

.section_4 .content .flex .item .img {
	width: 50%;
}

.section_4 .content .flex .item .text_1 {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	display: block;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 2.4rem;
	line-height: 1;
}

.section_4 .content .flex .item .text_2 {
	display: block;
	width: max-content;
	max-width: 100%;
	text-align: center;
	font-size: 1rem;
}

@media screen and (min-width: 768px) {
	.section_4 {}

	.section_4 .section_inner {
		padding: 10% 0 0;
	}

	.section_4 .section_container_inner {}

	.section_4 .heading_area {}

	.section_4 .heading_1 {
		width: 90%;
	}

	.section_4 .heading_1 .main {
		position: relative; /* アイコンの基準 */
		display: block;     /* テキストは今まで通り */
	}

	.section_4 .heading_1 .main .img {
		position: absolute;
		right: 2.5%;          /* 右端に寄せる（必要に応じて調整） */
		top: 50%;             /* 枠の高さの中央 */
		transform: translateY(-50%); /* アイコン自身の高さ分ずらして真ん中に */
		height: 80px;         /* アイコンのサイズ調整 */
		width: auto;
		margin-left: 25%;
	}

	.section_4 .content {
		width: 90%;
	}

	.section_4 .content .text_area {
		align-items: center;
	}

	.section_4 .content .text_area .text {}

	.section_4 .content .text_area .text_1 {}

	.section_4 .content .text_area .text_2 {}

	.section_4 .content .flex {}

	.section_4 .content .flex .item {
		width: calc((100% - (12px * 2)) / 3);
		padding: 1.25%;
	}

	.section_4 .content .flex .item .img {}

	.section_4 .content .flex .item .text {}

	.section_4 .content .flex .item .text_1 {
		top: 8px;
		right: 8px;
	}

	.section_4 .content .flex .item .text_2 {}
}

@media screen and (min-width: 1280px) {
	.section_4 .section_inner {}

	.section_4 .section_container_inner {}

	.section_4 .heading_1 {
		width: 70%;
	}

	.section_4 .content {
		width: 70%;
	}

	.section_4 .content .flex {}

	.section_4 .content .flex .item {}

	.section_4 .content .flex .item .text {}

	.section_4 .content .flex .item .text_1 {
		font-size: 2rem;
	}

	.section_4 .content .flex .item .text_2 {
		font-size: 1rem;
	}
}

@media screen and (min-width: 1440px) {
	.section_4 .section_container_inner {
		gap: 48px;
	}

	.section_4 .heading_1 {}

	.section_4 .heading_1 .main {
		font-size: 2.5rem;
	}

	.section_4 .content .text_area .text {}

	.section_4 .content .text_area .text_1 {}

	.section_4 .content .text_area .text_2 {}

	.section_4 .content {
		gap: 36px;
	}

	.section_4 .content .flex {}

	.section_4 .content .flex .item {}

	.section_4 .content .flex .item::after {
		width: 84px;
		height: 84px;
	}

	.section_4 .content .flex .item .img {
		width: 35%;
	}

	.section_4 .content .flex .item .text {}

	.section_4 .content .flex .item .text_1 {
		font-size: 3.75rem;
	}

	.section_4 .content .flex .item .text_2 {
		font-size: 1.375rem;
	}
}

@media screen and (min-width: 1920px) {
	.section_4 .content .flex .item .text_1 {}

	.section_4 .content .flex .item .text_2 {}
}

/* ---------------------------------------------------------------------------------------------------- */

.section_5 {}

.section_5 .section_inner {
	padding: 0 0 30%;
}

.section_5 .section_container_inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
	margin: 0 auto 0;
	padding: 20% 0 30%;
	background-size: 16px 16px;
	background-position: 50% 50%;
	background-image:repeating-linear-gradient( 90deg, rgba(0,0,0,0.05) , rgba(0,0,0,0.05) 1px, transparent 1px, transparent 16px),repeating-linear-gradient( 0deg, rgba(0,0,0,0.05) , rgba(0,0,0,0.05) 1px, #fff 1px, #fff 16px);
}

.section_5 .heading_1 {
	width: max-content;
	margin: 0 auto 0 5%;
}

.section_5 .heading_1 .sub {
	color: #2d3d73;
}

.section_5 .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 90%;
	margin: 0 auto 0;
}

.section_5 .content .flex {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	width: 100%;
}

.section_5 .content .flex .text_area {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	width: 100%;
}

.section_5 .content .flex .text_area .text {}

.section_5 .content .flex .text_area .text_1 {
	font-family: "Zen Maru Gothic", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
	color: #2d3d73;
	margin-bottom: 24px;
}

.section_5 .content .flex .text_area .text_2 {
	font-size: 1.375rem;
}

.section_5 .content .flex .text_area .text_3 {}

.section_5 .content .flex .text_area .text_3 span {
	display: inline;
	background: linear-gradient(transparent 60%, #fff5af 0%);
}

.section_5 .content .flex .img {
	width: 100%;
}

.section_5 .banner {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	display: block;
	width: 90%;
}

@media screen and (min-width: 768px) {
	.section_5 {}

	.section_5 .section_inner {}

	.section_5 .section_container_inner {
		padding: 10% 0 20%;
	}

	.section_5 .heading_1 {}

	.section_5 .heading_1 .sub {}

	.section_5 .content {}

	.section_5 .content .flex {}

	.section_5 .content .flex .text_area {}

	.section_5 .content .flex .text_area .text {}

	.section_5 .content .flex .text_area .text_1 {}

	.section_5 .content .flex .text_area .text_2 {}

	.section_5 .content .flex .text_area .text_3 {}

	.section_5 .content .flex .text_area .text_3 span {}

	.section_5 .content .flex .img {
		width: 70%;
		margin: -20% 0 0 auto;
	}

	.section_5 .banner {
		width: 75%;
	}
}

@media screen and (min-width: 1280px) {
	.section_5 {}

	.section_5 .section_inner {
		padding: 0 0 20%;
	}

	.section_5 .section_container_inner {
		padding: 10% 0 15%;
	}

	.section_5 .heading_1 {
		margin: 0 auto 0 15%;
	}

	.section_5 .heading_1 .sub {}

	.section_5 .content {
		width: 70%;
	}

	.section_5 .content .flex {}

	.section_5 .content .flex .text_area {}

	.section_5 .content .flex .text_area .text {}

	.section_5 .content .flex .text_area .text_1 {}

	.section_5 .content .flex .text_area .text_2 {}

	.section_5 .content .flex .text_area .text_3 {}

	.section_5 .content .flex .text_area .text_3 span {}

	.section_5 .content .flex .img {
		width: 70%;
		margin: -15% 0 0 auto;
	}

	.section_5 .banner {
		width: 60%;
	}
}

@media screen and (min-width: 1440px) {
	.section_5 {}

	.section_5 .section_inner {
		padding: 0 0 20%;
	}

	.section_5 .section_container_inner {
		gap: 72px;
	}

	.section_5 .heading_1 {
		margin: 0 auto 0 15%;
	}

	.section_5 .heading_1 .sub {}

	.section_5 .content {
		width: 70%;
	}

	.section_5 .content .flex {}

	.section_5 .content .flex .text_area {}

	.section_5 .content .flex .text_area .text {}

	.section_5 .content .flex .text_area .text_1 {
		margin-bottom: 48px;
		font-size: 3.75rem;
	}

	.section_5 .content .flex .text_area .text_2 {
		font-size: 1.375rem;
	}

	.section_5 .content .flex .text_area .text_3 {
		font-size: 1.125rem;
	}

	.section_5 .content .flex .text_area .text_3 span {}

	.section_5 .content .flex .img {
        width: 75%;
        margin: -17.5% 0 0 auto;
	}

	.section_5 .banner {
		width: 55%;
	}
}

@media screen and (min-width: 1920px) {
	.section_5 .content .flex .img {
        width: 75%;
        margin: -12.5% 0 0 auto;
	}
}

/* ---------------------------------------------------------------------------------------------------- */
