/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	overflow: hidden;
}
/* -----------------------------------------------
= page-title
----------------------------------------------- */
.page-title {
	position: relative;
}
.page-title .set {
	position: absolute;
	left: 13px;
	bottom: 5px;
	color: #fff;
}
.page-title .category {
	font-family: var(--en);
	font-size: calc(1.2rem / 1.6);
	line-height: 1.2;
	letter-spacing: .04em;
}
.page-title h1 {
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-title {
	max-width: 1500px;
	margin-inline: auto;
}
.page-title .set {
	left: 100px;
	bottom: 30px;
}
.page-title .category {
	margin-bottom: 10px;
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .04em;
}
.page-title h1 {
	font-size: calc(2.4rem / 1.6);
	letter-spacing: .08em;
}
.page-title img {
	max-height: calc(100vh - 60px);
	height: 600px;
	object-fit: cover;
	object-position: 50% 100%;
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.lead {
	margin: 20px 13px 30px;
	font-size: calc(1.4rem / 1.6);
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.lead {
	max-width: 1180px;
	margin: 120px auto 100px;
	padding-inline: 30px;
	font-size: calc(1.8rem / 1.6);
	line-height: 2;
	letter-spacing: .06em;
}
}/* @media */
/* -----------------------------------------------
= index
----------------------------------------------- */
.index {
	margin: 0 13px 60px;
}
.index h2 {
	margin-bottom: 20px;
	font-family: var(--en);
	font-size: calc(1.4rem / 1.6);
	font-weight: 400;
	letter-spacing: .04em;
}
.index li {
	padding-bottom: 5px;
	border-bottom: 0.5px dotted #cbcbcb;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(15 / 13);
	letter-spacing: .04em;
}
.index li + li {
	margin-top: 15px;
}
.index a {
	display: inline-block;
	padding-left: 30px;
	background: url(../../img/about/index-icon-arrow.svg) no-repeat left 5px bottom 2px / auto 12px;
}
@media print, screen and (min-width: 768px) {/* PC */
.index {
	max-width: 1180px;
	margin: 0 auto 160px;
	padding-inline: 30px;
}
.index h2 {
	margin-bottom: 30px;
	font-size: calc(2rem / 1.6);
}
.index li {
	border-bottom-width: 1px;
	font-size: calc(1.8rem / 1.6);
}
.index li + li {
	margin-top: 20px;
}
.index a {
	display: inline-block;
	padding-left: 42px;
	background-position: left 6px bottom 4px;
	background-size: auto 16px;
}
}/* @media */
@media (hover:hover) {
.index a {
	transition: color .3s;
}
.index a:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= side
----------------------------------------------- */
.btn-side {
	position: fixed;
	right: 0;
	bottom: 60px;
	z-index: 5;
	padding: 9px 88px 9px 20px;
	color: #fff;
	background:  #b9b9b1;
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	font-weight: 400;
}
.btn-side::after {
	content: "";
	position: absolute;
	top: 20px;
	right: 10px;
	width: 33px;
	height: 12px;
	background: url(../../img/index/icon-index.svg) no-repeat 50% / 100% auto;
}
.btn-close {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 30px;
	height: 30px;
}
.btn-close::before,
.btn-close::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 0.5px;
	background: #808080;
}
.btn-close::before {
	transform: rotate(-45deg);
}
.btn-close::after {
	transform: rotate(45deg);
}
.side.index {
	position: fixed;
	right: 0;
	bottom: 60px;
	z-index: 6;
	width: 100%;
	margin: 0;
	background: #f2f2ee;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s;
}
.side.index[aria-hidden="false"] {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
.side.index .inner {
	display: flex;
	gap: 0 40px;
	padding: 15px 0 15px 20px;
}
.side.index .inner h2 {
	font-family: var(--zen);
}
.side.index .inner ol {
	flex: 1;
	padding-top: 5px;
}
.side.index li {
	margin-left: 2em;
	text-indent: -2em;
	padding-bottom: 0;
	border-bottom: none;
	font-size: calc(1.2rem / 1.6);
	line-height: calc(17 / 12);
	letter-spacing: .06em;
}
.side.index a {
	padding-left: 0;
	background: transparent;
}
@media print, screen and (min-width: 768px) {/* PC */
.btn-side {
	right: auto;
	left: 0;
	padding: 6px 70px 6px 20px;
	font-size: calc(2.4rem / 1.6);
	transform: rotate(-90deg);
	transform-origin: top left;
	opacity: 0;
	pointer-events: none;
	transition: opacity .4s;
}
.btn-side::after {
	top: 17px;
	right: 6px;
	transform: rotate(90deg);
}
.btn-side.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.side.index {
	right: auto;
	left: 0;
	width: 100%;
	max-width: 1000px;
	margin-bottom: 0;
	padding: 0;
	box-sizing: border-box;
}
.side.index .inner {
	padding-right: 80px;
}
.side.index li {
	margin-left: 0;
	text-indent: 0;
	font-size: calc(1.8rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.btn-side {
	transition: color .3s;
}
.btn-side:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= block
----------------------------------------------- */
.block {
	margin: 0 13px 70px;
	scroll-margin-top: 45px;
}
.block .title .num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	margin: 0 auto 10px;
	color: #fff;
	background: linear-gradient(135deg,#ff7d51,#e93c2d);
	border-radius: 50%;
	font-family: var(--zen);
	font-size: calc(1.6rem / 1.6);
	text-align: center;
	letter-spacing: 0;
}
.block .title h2 {
	margin-bottom: 35px;
	color: var(--red);
	font-family: var(--zen);
	font-size: calc(2.6rem / 1.6);
	font-weight: 600;
	line-height: calc(33 / 26);
	text-align: center;
	letter-spacing: 0;
}
.block .line-title {
	margin-bottom: 15px;
	padding: 3px;
	color: #fff;
	background: linear-gradient(135deg,#f25f69,#ed1b29,#f25f69);
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.block .line-sub-title {
	margin-bottom: 25px;
	padding-bottom: 5px;
	color: var(--red);
	border-bottom: 0.5px solid #f25f69;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.block .next {
	position: relative;
	max-width: 285px;
	margin: 0 auto;
	background: #fff;
	border-radius: 9px;
}
.block .next::before {
	content: "";
	position: absolute;
	inset: -1.5px;
	z-index: -1;
	background: linear-gradient(135deg,#ff7d51,#e93c2d);
	border-radius: 9px;
}
.block .next::after {
	content: "";
	position: absolute;
	top: -10px;
	left: calc(50% - 5px);
	bottom: -10px;
	z-index: -1;
	width: 10px;
	height: calc(100% + 20px);
	background: #fff;
}
.block .next p {
	position: relative;
	padding: 35px 10px;
	color: var(--red);
	font-family: var(--zen);
	font-size: calc(1.3rem / 1.6);
	text-align: center;
	letter-spacing: .02em;
}
.block .next p::before {
	content: "";
	position: absolute;
	top: -20px;
	left: calc(50% - 0.5px);
	width: 1px;
	height: 25px;
	background: #e93c2d;
	animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
.block .next p::after {
	content: "";
	position: absolute;
	bottom: -37px;
	left: calc(50% - 4px);
	width: 8.18px;
	height: 49.02px;
	background: url(../../img/about/block-icon-next-sp.svg) no-repeat 50% 100% / auto 100%;
	animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	50% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	50.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
.block .related {
	margin-bottom: 60px;
}
.block .related h5 {
	margin-bottom: 20px;
	color: var(--red);
	border-top: 0.5px solid var(--red);
	border-bottom: 0.5px solid var(--red);
}
.block .related h5 button {
	position: relative;
	width: 100%;
	padding-block: 10px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	line-height: calc(18 / 13);
	text-align: center;
	letter-spacing: .04em;
}
.block .related h5 button::before,
.block .related h5 button::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 10px;
	width: 20px;
	height: 1px;
	background: var(--red);
}
.block .related h5 button::after {
	transform: rotate(90deg);
}
.block .related h5 button[aria-expanded="true"]::after {
	display: none;
}
.block .detail-more {
	overflow: hidden;
	height: 0;
	transition: height 0.3s ease;
}
.block .related ul {
	max-width: 315px;
	margin-inline: auto;
	padding-top: 7px;
}
.block .related li {
	position: relative;
}
.block .related li + li {
	margin-top: 22px;
}
.block .related li a {
	display: block;
}
.block .related li a p {
	display: inline-block;
	position: absolute;
	top: -7px;
	left: -7px;
	padding: 5px 12px;
	color: #fff;
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .04em;
}
@media print, screen and (min-width: 768px) {/* PC */
.block {
	max-width: 1180px;
	margin: 0 auto 190px;
	padding-inline: 30px;
	scroll-margin-top: 60px;
}
.block .title .num {
	width: 90px;
	height: 90px;
	margin: 0 auto 20px;
	font-size: calc(3.2rem / 1.6);
}
.block .title h2 {
	margin-bottom: 60px;
	font-size: calc(5.2rem / 1.6);
	line-height: calc(66 / 52);
}
.block .line-title {
	margin-bottom: 55px;
	padding: 3px;
	font-size: calc(3.2rem / 1.6);
}
.block .line-sub-title {
	max-width: 900px;
	margin: 0 auto 45px;
	border-bottom-width: 1px;
	font-size: calc(2.8rem / 1.6);
}
.block .next {
	max-width: 400px;
	border-radius: 12px;
}
.block .next::before {
	inset: -3px;
	border-radius: 12px;
}
.block .next::after {
	left: calc(50% - 7px);
	width: 14px;
	height: calc(100% + 20px);
}
.block .next p {
	padding: 35px 5px;
	font-size: calc(1.8rem / 1.6);
}
.block .next p::before {
	top: -24px;
	left: calc(50% - 1px);
	width: 2px;
	height: 33px;
}
.block .next p::after {
	bottom: -49px;
	left: calc(50% - 8.18px);
	width: 16.36px;
	height: 65.36px;
	background: url(../../img/about/block-icon-next-pc.svg) no-repeat 50% 100% / auto 100%;
}
.block .related {
	margin-bottom: 160px;
}
.block .related h5 {
	margin-bottom: 15px;
	border-top-width: 1px;
	border-bottom-width: 1px;
}
.block .related h5 button {
	padding-block: 30px;
	font-size: calc(1.8rem / 1.6);
}
.block .related h5 button::before,
.block .related h5 button::after {
	right: 20px;
	width: 40px;
}
.block .related ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 40px 35px;
	max-width: none;
	padding-top: 50px;
}
.block .related li {
	width: 340px;
}
.block .related li + li {
	margin-top: 0;
}
.block .related li a p {
	top: -8px;
	left: -10px;
	padding: 5px 18px;
	background: var(--red);
	font-size: calc(1.6rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.block .related li a::before {
	transition: .3s;
}
.block .related li a:hover::before {
	background: #fff;
}
.block .related li a:hover::after {
	filter: invert(29%) sepia(0%) saturate(1175%) hue-rotate(45deg) brightness(93%) contrast(86%);
}
}/* @media */
/* -----------------------------------------------
= about01
----------------------------------------------- */
.about01 .keywords {
	margin-bottom: 70px;
	padding: 10px 10px 60px;
	background: url(../../img/about/about01-keywords-bg-sp.jpg) no-repeat 50% / cover;
}
.about01 .keywords .text {
	margin-bottom: 8px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	line-height: calc(20 / 13);
	text-align: center;
	letter-spacing: .04em;
}
.about01 .keywords .theme {
	max-width: 312px;
	height: 67px;
	margin: 0 auto 12px;
	padding: 24px 0;
	overflow-y: auto;
	background: url(../../img/about/about01-keywords-map-sp.png) no-repeat 50% / 100% auto;
	text-align: center;
}
.about01 .keywords .theme img {
	max-width: 260px;
}
.about01 .keywords .list {
	position: relative;
	max-width: 318px;
	margin: 0 auto;
}
.about01 .keywords .list h3 {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2px 12px;
	background: #fff;
	font-size: calc(1rem / 1.6);
	font-weight: 700;
	line-height: 1;
	text-align: center;
	letter-spacing: .04em;
}
.about01 .keywords .list h3::before {
	content: "";
	position: absolute;
	inset: -2px;
	z-index: -1;
	background: rgba(255,255,255,.6);
}
.about01 .keywords .list ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
}
.about01 .keywords .list li {
	display: grid;
	place-content: center;
	min-height: 82px;
	color: #fff;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	line-height: calc(20 / 13);
	text-align: center;
	letter-spacing: .04em;
}
.about01 .keywords .list li:nth-child(1) {
	background: url(../../img/about/about01-keywords-list-bg01.jpg) no-repeat 50% / cover;
}
.about01 .keywords .list li:nth-child(2) {
	background: url(../../img/about/about01-keywords-list-bg02.jpg) no-repeat 50% / cover;
}
.about01 .keywords .list li:nth-child(3) {
	background: url(../../img/about/about01-keywords-list-bg03.jpg) no-repeat 50% / cover;
}
.about01 .keywords .list li:nth-child(4) {
	background: url(../../img/about/about01-keywords-list-bg04.jpg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.about01 .keywords {
	margin-bottom: 140px;
	padding: 54px 60px 205px;
	background: url(../../img/about/about01-keywords-bg-pc.jpg) no-repeat 50% / cover;
}
.about01 .keywords .text {
	margin-bottom: 40px;
	font-size: calc(2rem / 1.6);
	line-height: calc(32 / 20);
}
.about01 .keywords .img {
	max-width: 1040px;
	margin: 0 auto 40px;
}
.about01 .keywords .list {
	max-width: 1060px;
}
.about01 .keywords .list h3 {
	padding: 27px 20px;
	font-size: calc(2.4rem / 1.6);
}
.about01 .keywords .list h3::before {
	inset: -8px;
}
.about01 .keywords .list ul {
	gap: 7px;
}
.about01 .keywords .list li {
	min-height: 272px;
	font-size: calc(2.4rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= division
----------------------------------------------- */
.division {
	margin-bottom: 60px;
}
.division .title {
	margin-bottom: 30px;
	padding: 10px;
	color: #fff;
	text-align: center;
}
.division01 .title {
	background: url(../../img/about/about02-division-title01-bg.jpg) no-repeat 70% 50% / cover;
}
.division02 .title {
	background: url(../../img/about/about02-division-title02-bg.jpg) no-repeat 70% 50% / cover;
}
.division03 .title {
	background: url(../../img/about/about02-division-title03-bg.jpg) no-repeat 70% 50% / cover;
}
.division04 .title {
	background: url(../../img/about/about02-division-title04-bg.jpg) no-repeat 70% 50% / cover;
}
.division .title .en {
	margin-bottom: 15px;
	font-size: calc(1rem / 1.6);
	letter-spacing: .04em;
}
.division .title h3 {
	margin-bottom: 15px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(2.4rem / 1.6);
	font-weight: 700;
	line-height: calc(28 / 24);
	letter-spacing: .04em;
}
.division .title .tag {
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .04em;
}
.division .sub-title {
	position: relative;
	margin: 0 -5px 15px;
	padding-top: 20px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: calc(2rem / 1.6);
	line-height: calc(26 / 20);
	text-align: center;
	letter-spacing: .04em;
}
.division .sub-title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 42px;
	height: 6px;
}
.division01 .sub-title {
	color: #396f00;
}
.division02 .sub-title {
	color: #e56400;
}
.division03 .sub-title {
	color: #e33e50;
}
.division04 .sub-title {
	color: #1c41a3;
}
.division01 .sub-title.num01::before {
	background: url(../../img/about/about02-division01-sub-title01.svg) no-repeat 50% / cover;
}
.division01 .sub-title.num02::before {
	background: url(../../img/about/about02-division01-sub-title02.svg) no-repeat 50% / cover;
}
.division01 .sub-title.num03::before {
	background: url(../../img/about/about02-division01-sub-title03.svg) no-repeat 50% / cover;
}
.division01 .sub-title.num04::before {
	background: url(../../img/about/about02-division01-sub-title04.svg) no-repeat 50% / cover;
}
.division02 .sub-title.num01::before {
	background: url(../../img/about/about02-division02-sub-title01.svg) no-repeat 50% / cover;
}
.division02 .sub-title.num02::before {
	background: url(../../img/about/about02-division02-sub-title02.svg) no-repeat 50% / cover;
}
.division02 .sub-title.num03::before {
	background: url(../../img/about/about02-division02-sub-title03.svg) no-repeat 50% / cover;
}
.division02 .sub-title.num04::before {
	background: url(../../img/about/about02-division02-sub-title04.svg) no-repeat 50% / cover;
}
.division03 .sub-title.num01::before {
	background: url(../../img/about/about02-division03-sub-title01.svg) no-repeat 50% / cover;
}
.division03 .sub-title.num02::before {
	background: url(../../img/about/about02-division03-sub-title02.svg) no-repeat 50% / cover;
}
.division03 .sub-title.num03::before {
	background: url(../../img/about/about02-division03-sub-title03.svg) no-repeat 50% / cover;
}
.division03 .sub-title.num04::before {
	background: url(../../img/about/about02-division03-sub-title04.svg) no-repeat 50% / cover;
}
.division04 .sub-title.num01::before {
	background: url(../../img/about/about02-division04-sub-title01.svg) no-repeat 50% / cover;
}
.division04 .sub-title.num02::before {
	background: url(../../img/about/about02-division04-sub-title02.svg) no-repeat 50% / cover;
}
.division04 .sub-title.num03::before {
	background: url(../../img/about/about02-division04-sub-title03.svg) no-repeat 50% / cover;
}
.division04 .sub-title.num04::before {
	background: url(../../img/about/about02-division04-sub-title04.svg) no-repeat 50% / cover;
}
.division .text {
	margin-bottom: 30px;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(24 / 14);
	letter-spacing: .04em;
}
.division .note {
	margin-bottom: 30px;
	font-size: calc(1.2rem / 1.6);
	line-height: calc(18 / 12);
	letter-spacing: .04em;
}
.division .text + .note {
	margin-top: -25px;
}
.division .products {
	max-width: 315px;
	margin: 0 auto 20px;
}
.division .products li + li {
	margin-top: 22px;
}
.division .products li {
	position: relative;
}
.division .products li p {
	display: inline-block;
	position: absolute;
	top: -7px;
	left: -7px;
	padding: 5px 12px;
	color: #fff;
	font-size: calc(1.2rem / 1.6);
	letter-spacing: .04em;
}
.division01 .products li p {
	background: #68913c;
}
.division02 .products li p {
	background: #eb8a3e;
}
.division03 .products li p {
	background: #e65262;
}
.division04 .products li p {
	background: #647dc0;
}
.division .btn {
	margin-bottom: 40px;
}
.division .btn a {
	display: block;
	padding: 5px;
	border: 0.5px solid;
	font-size: calc(1.1rem / 1.6);
	line-height: calc(14 / 11);
	text-align: center;
	letter-spacing: 0;
}
.division01 .btn a {
	color: #396f00;
	border-color: #396f00;
}
.division02 .btn a {
	color: #e56400;
	border-color: #e56400;
}
.division03 .btn a {
	color: #e33e50;
	border-color: #e33e50;
}
.division04 .btn a {
	color: #1c41a3;
	border-color: #1c41a3;
}
.division .btn a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 8.75px;
	height: 8.75px;
	margin-left: 3px;
	background: url(../../img/about/about02-division-icon-external.svg) no-repeat 50% / cover;
}
.division01 .btn a::after {
	filter: invert(31%) sepia(94%) saturate(4044%) hue-rotate(69deg) brightness(90%) contrast(101%);
}
.division02 .btn a::after {
	filter: invert(34%) sepia(100%) saturate(1698%) hue-rotate(13deg) brightness(101%) contrast(102%);
}
.division03 .btn a::after {
	filter: invert(29%) sepia(55%) saturate(4328%) hue-rotate(337deg) brightness(99%) contrast(80%);
}
.division04 .btn a::after {
	filter: invert(19%) sepia(60%) saturate(2743%) hue-rotate(216deg) brightness(95%) contrast(98%);
}
.division .sub-title-sub {
	margin-bottom: 10px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.division01 .sub-title-sub {
	color: #396f00;
}
.division02 .sub-title-sub {
	color: #e56400;
}
.division03 .sub-title-sub {
	color: #e33e50;
}
.division04 .sub-title-sub {
	color: #1c41a3;
}
.division .theme {
	max-width: 370px;
	height: 98px;
	margin: 0 auto 36px;
	padding: 24px 0;
	overflow-y: auto;
	background: url(../../img/about/about02-divison01-map-sp.jpg) no-repeat 50% / 100% auto;
	text-align: center;
}
.division01 .theme img {
	max-width: 220px;
}
.division02 .theme img {
	max-width: 220px;
}
.division03 .theme img {
	max-width: 235px;
}
.division04 .theme img {
	max-width: 342px;
}
.division .solution {
	margin-bottom: 40px;
	padding: 21px 17px;
}
.division01 .solution {
	background: url(../../img/about/about02-division01-solution-bg-sp.jpg) no-repeat 50% / cover;
}
.division02 .solution {
	background: url(../../img/about/about02-division02-solution-bg-sp.jpg) no-repeat 50% / cover;
}
.division03 .solution {
	background: url(../../img/about/about02-division03-solution-bg-sp.jpg) no-repeat 50% / cover;
}
.division04 .solution {
	background: url(../../img/about/about02-division04-solution-bg-sp.jpg) no-repeat 50% / cover;
}
.division .solution li {
	padding: 12px 20px;
	background:rgba(255,255,255,.9);
}
.division .solution li + li {
	margin-top: 20px;
}
.division .solution li h5 {
	margin-bottom: 8px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
}
.division .solution li h5::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	margin-right: 3px;
}
.division01 .solution li h5::before {
	background: #68913c;
}
.division02 .solution li h5::before {
	background: #eb8a3e;
}
.division03 .solution li h5::before {
	background: #e65262;
}
.division04 .solution li h5::before {
	background: #6478be;
}
.division04 .solution {
	padding-block: 80px;
}
.division .solution li p {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(20 / 13);
	letter-spacing: .04em;
}
.division .asset {
	margin-bottom: 15px;
	padding: 30px 20px 20px;
	background: url(../../img/about/about02-division01-asset-bg.jpg) no-repeat 50% / cover;
}
.division .asset > ul > li {
	padding: 0 20px 20px;
	background: #fff;
}
.division .asset > ul > li + li {
	margin-top: 30px;
}
.division .asset li h5 {
	position: relative;
	top: -15px;
	width: 140px;
	margin: 0 auto 5px;
	padding: 6px;
	color: #fff;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .04em;
}
.division01 .asset li h5 {
	background: linear-gradient(90deg,#86a763,#396f00);
}
.division02 .asset li h5 {
	background: linear-gradient(90deg,#eb8a3e,#e56400);
}
.division03 .asset li h5 {
	background: linear-gradient(90deg,#e65262,#d82850);
}
.division04 .asset li h5 {
	background: linear-gradient(90deg,#6478be,#1c4188);
}
.division .asset li ul li {
	position: relative;
	padding-left: 13px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	line-height: calc(20 / 13);
	letter-spacing: .04em;
}
.division .asset li ul li::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 8px;
	height: 8px;
}
.division01 .asset li ul li::before {
	background: #86a763;
}
.division02 .asset li ul li::before {
	background: #eb8a3e;
}
.division03 .asset li ul li::before {
	background: #e65262;
}
.division04 .asset li ul li::before {
	background: #6478be;
}
.division .asset li ul li + li {
	margin-top: 20px;
}
.division .asset li ul li span {
	display: block;
	font-size: calc(1.2rem / 1.6);
	font-weight: 500;
	line-height: calc(18 / 12);
}
.division01 .related h5 {
	color: #68913c;
	border-top-color: #86a763;
	border-bottom-color: #86a763;
}
.division02 .related h5 {
	color: #eb8a3e;
	border-top-color: #eb8a3e;
	border-bottom-color: #eb8a3e;
}
.division03 .related h5 {
	color: #e33e50;
	border-top-color: #e65262 ;
	border-bottom-color: #e65262;
}
.division04 .related h5 {
	color: #1c41a3;
	border-top-color: #647dc0;
	border-bottom-color: #647dc0;
}
.division01 .related h5 button::before,
.division01 .related h5 button::after {
	background: #68913c;
}
.division01 .related li a p {
	background: #68913c;
}
.division02 .related h5 button::before,
.division02 .related h5 button::after {
	background: #eb8a3e;
}
.division02 .related li a p {
	background: #eb8a3e;
}
.division03 .related h5 button::before,
.division03 .related h5 button::after {
	background: #e65262;
}
.division03 .related li a p {
	background: #e65262;
}
.division04 .related h5 button::before,
.division04 .related h5 button::after {
	background: #647dc0;
}
.division04 .related li a p {
	background: #647dc0;
}
@media print, screen and (min-width: 768px) {/* PC */
.division {
	margin-bottom: 240px;
}
.division .title {
	margin-bottom: 60px;
	padding: 30px;
}
.division .title .en {
	margin-bottom: 45px;
	font-size: calc(1.8rem / 1.6);
}
.division .title h3 {
	margin-bottom: 45px;
	font-size: calc(4.8rem / 1.6);
}
.division .title .tag {
	font-size: calc(1.8rem / 1.6);
}
.division .sub-title {
	margin-bottom: 30px;
	padding-top: 40px;
	font-size: calc(4rem / 1.6);
}
.division .sub-title::before {
	width: 84px;
	height: 12px;
}
.division .text {
	margin-bottom: 60px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(36 / 20);
	text-align: center;
}
.division .text strong {
	font-size: calc(2rem / 1.6);
	line-height: calc(36 / 20);
}
.division .note {
	margin-bottom: 60px;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(36 / 14);
	text-align: center;
}
.division .text + .note {
	margin-top: -55px;
}
.division .products {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px 31px;
	max-width: 870px;
	margin: 0 auto 32px;
}
.division .products li + li {
	margin-top: 0;
}
.division .products li p {
	top: -8px;
	left: -10px;
	padding: 5px 18px;
	font-size: calc(1.6rem / 1.6);
}
.division .btn {
	max-width: 870px;
	margin: 0 auto 97px;
}
.division .btn a {
	padding: 10px;
	border-width: 1px;
	font-size: calc(1.6rem / 1.6);
}
.division .btn a[target="_blank"]::after {
	width: 17.5px;
	height: 17.5px;
	margin-left: 15px;
}
.division .sub-title-sub {
	margin-bottom: 15px;
	font-size: calc(2rem / 1.6);
}
.division .img {
	margin-bottom: 55px;
}
.division .solution {
	margin-bottom: 100px;
	padding: 80px;
}
.division01 .solution {
	background: url(../../img/about/about02-division01-solution-bg-pc.jpg) no-repeat 50% / cover;
}
.division02 .solution {
	background: url(../../img/about/about02-division02-solution-bg-pc.jpg) no-repeat 50% / cover;
}
.division03 .solution {
	background: url(../../img/about/about02-division03-solution-bg-pc.jpg) no-repeat 50% / cover;
}
.division04 .solution {
	padding-block: 156px;
	background: url(../../img/about/about02-division04-solution-bg-pc.jpg) no-repeat 50% / cover;
}
.division .solution ul {
	max-width: 792px;
	margin-inline: auto;
}
.division .solution li {
	padding: 20px 40px;
}
.division .solution li + li {
	margin-top: 40px;
}
.division .solution li h5 {
	margin-bottom: 8px;
	font-size: calc(2.2rem / 1.6);
}
.division .solution li h5::before {
	width: 12px;
	height: 12px;
	margin-right: 6px;
}
.division .solution li p {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.division .asset {
	margin-bottom: 90px;
	padding: 70px 40px 40px;
	background: url(../../img/about/about02-division01-asset-bg.jpg) no-repeat 50% / cover;
}
.division .asset > ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 44px;
}
.division .asset > ul > li {
	padding: 0 30px 30px;
}
.division .asset > ul > li + li {
	margin-top: 0;
}
.division .asset li h5 {
	top: -30px;
	width: 280px;
	margin: 0 auto 10px;
	padding: 12px;
	font-size: calc(2.4rem / 1.6);
}
.division .asset li ul li {
	padding-left: 20px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(28 / 18);
}
.division .asset li ul li::before {
	top: 8px;
	left: 0;
	width: 10px;
	height: 10px;
}
.division .asset li ul li + li {
	margin-top: 20px;
}
.division .asset li ul li span {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(20 / 14);
}
}/* @media */
/* -----------------------------------------------
= about03
----------------------------------------------- */
.about03 .img01 {
	display: block;
	max-width: 375px;
	margin: 0 auto;
}
.about03 .system {
	margin-bottom: 20px;
	padding: 35px 15px;
	background: url(../../img/about/about03-system-bg.jpg) no-repeat 50% / cover;
}
.about03 .system .box {
	display: flex;
	gap: 0 10px;
	padding: 10px;
	background: rgba(42,0,0,.35);
}
.about03 .system .box + .box {
	position: relative;
	margin-top: 15px;
}
.about03 .system .box + .box::before {
	content: "";
	position: absolute;
	top: -34px;
	left: 52px;
	width: 6px;
	height: 44px;
	background: #fff;
}
.about03 .system h5,
.about03 .system li,
.about03 .system p {
	padding: 5px 10px;
	color: var(--red);
	background: #fff;
	font-size: calc(.9rem / 1.6);
	font-weight: 700;
	line-height: calc(12 / 9);
	letter-spacing: .04em;
}
.about03 .system h5 {
	display: grid;
	place-content: center;
	width: 68px;
	text-align: center;
}
.about03 .system ul {
	flex: 1;
}
.about03 .system li + li {
	margin-top: 7px;
}
.about03 .system p {
	width: 100%;
	text-align: center;
}
.about03 .text {
	margin-bottom: 30px;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(24 / 14);
	letter-spacing: .04em;
}
.about03 .img02 {
	display: block;
	max-width: 375px;
	margin: 0 auto 30px;
}
.about03 .sales {
	margin-bottom: 40px;
}
.about03 .sales .inner {
	margin-bottom: 30px;
}
.about03 .sales .item + .item {
	margin-top: 50px;
}
.about03 .sales h5 {
	margin-bottom: 30px;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
	text-align: center;
}
.about03 .sales .item img {
	display: block;
	max-width: 289px;
	margin: 0 auto;
	padding-right: 25px;
}
.about03 .sales .item + .item img {
	max-width: 307px;
	padding-right: 0;
}
.about03 .sales .legend {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 1em;
}
.about03 .sales .legend li {
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
	letter-spacing: .04em;
}
.about03 .sales .legend li:nth-child(1) span {
	color: #02b1cb;
}
.about03 .sales .legend li:nth-child(2) span {
	color: #0a69a5;
}
.about03 .sales .legend li:nth-child(3) span {
	color: #283352;
}
.about03 .sales .legend li:nth-child(4) span {
	color: #05aa89;
}
.about03 .sales .legend li:nth-child(5) span {
	color: #70b95f;
}
.about03 .sales .legend li:nth-child(6) span {
	color: #727d83;
}
.about03 .sales .legend li:nth-child(7) span {
	color: #b1b8bb;
}
@media print, screen and (min-width: 768px) {/* PC */
.about03 {
	max-width: 1100px;
}
.about03 .img01 {
	max-width: 1064px;
	margin: 0 auto 30px;
}
.about03 .system {
	margin-bottom: 40px;
	padding: 70px 30px;
}
.about03 .system .box {
	gap: 0 50px;
	max-width: 814px;
	margin-inline: auto;
	padding: 40px 40px 20px;
}
.about03 .system .box:last-child {
	padding-bottom: 40px;
}
.about03 .system .box + .box {
	margin-top: 28px;
}
.about03 .system .box + .box::before {
	top: -48px;
	left: 124px;
	width: 12px;
	height: 88px;
}
.about03 .system h5,
.about03 .system li,
.about03 .system p {
	padding: 10px 20px;
	font-size: calc(1.8rem / 1.6);
}
.about03 .system h5 {
	width: 137px;
}
.about03 .system li + li {
	margin-top: 16px;
}
.about03 .text {
	margin-bottom: 80px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(36 / 18);
}
.about03 .text strong {
	font-size: calc(2rem / 1.6);
}
.about03 .img02 {
	max-width: none;
	width: calc(100% + 90px);
	margin: 0 -45px 100px;
}
.about03 .sales {
	margin-bottom: 50px;
}
.about03 .sales .inner {
	display: flex;
	gap: 0 78px;
	margin-bottom: 50px;
}
.about03 .sales .item + .item {
	margin-top: 0;
}
.about03 .sales h5 {
	margin-bottom: 40px;
	font-size: calc(2.4rem / 1.6);
}
.about03 .sales .item img {
	max-width: 482px;
	padding-right: 0;
}
.about03 .sales .item + .item img {
	max-width: 512px;
}
.about03 .sales .legend li {
	font-size: calc(2rem / 1.6);
}
}/* @media */
/* -----------------------------------------------
= about04
----------------------------------------------- */
.about04 img {
	display: block;
	max-width: 318px;
	margin: 0 auto 10px;
}
.about04 .text {
	margin-bottom: 30px;
	font-size: calc(1.4rem / 1.6);
	line-height: calc(24 / 14);
	letter-spacing: .04em;
}
.about04 .next {
	margin-block: 60px 100px;
}
.about04 .msg {
	color: var(--red);
	font-family: var(--zen);
	font-size: calc(2.2rem / 1.6);
	font-weight: 600;
	line-height:calc(36 / 22);
	text-align: center;
	letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {/* PC */
.about04 img {
	max-width: 636px;
	margin: 0 auto 35px;
}
.about04 .line-sub-title {
	max-width: 860px;
}
.about04 .text {
	max-width: 860px;
	margin: 0 auto 90px;
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.about04 .next {
	margin-block: 150px 180px;
}
.about04 .msg {
	font-size: calc(4.4rem / 1.6);
}
}/* @media */

