/* --------------------------------------------------
.basic
-------------------------------------------------- */

.front-page {
	font-size: 15px;
}
.sankaku {
	position: relative;
	display: inline-block;
	padding-left: 1.5em;
}
.sankaku::before {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	background-color: var(--green2);
	width: 12px;
	height: 9px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.front-page .btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 384px;
	min-height: 64px;
	background-color: var(--green1);
	border-radius: 0;
	font-size: 18px;
	font-weight: bold;
	color: var(--white);
	margin: 0 auto;
}
.front-page .btn::before {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translateY(-50%);
	content: "";
	background-color: var(--white);
	width: 12px;
	height: 9px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.front-page .btn-wrap {
	margin-top: 65px;
}
.front-page ul.none {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
@media (min-width: 768px) {
	.front-page .btn {
		transition: opacity 0.3s;
	}
	.front-page .btn:hover {
		opacity: 0.6;
	}
}
@media (max-width: 767px) {
	.front-page .btn-wrap {
		margin-top: 30px;
	}
	.front-page .btn {
		font-size: 15px;
		max-width: 256px;
		min-height: 56px;
	}
}

/* --------------------------------------------------
.fv
-------------------------------------------------- */

/* .carousel */
.front-page .fv {
	position: relative;
}
.front-page .fv .carousel .img-wrap {
	aspect-ratio: 16 / 6;
	overflow: hidden;
}
.front-page .fv .carousel .img-wrap img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: 100%;
	transition: width 0.3s;
}
.front-page .fv .carousel .item {
	position: relative;
}
.front-page .fv .carousel .scale-wrap {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
}
.front-page .fv .carousel .scale-wrap ul {
  display: flex;
  animation :infinity-left 30s infinite linear 0s both;
}
.front-page .fv .carousel .scale-wrap ul li {
	width: 28vw;
}
.front-page .fv .carousel .scale-wrap ul li img {
	width: 100%;
}
@keyframes infinity-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}
@media (max-width: 991px) {
	.front-page .fv {}
	.front-page .fv .carousel .img-wrap {
		aspect-ratio: 3 / 2;
		max-height: 372px;
		width: 100%;
	}
}
@media (max-width: 767px) {
	.front-page .fv .carousel .scale-wrap ul li {
		width: 35vw;
	}
}
@media (max-width: 575px) {
	.front-page .fv .carousel .scale-wrap ul li {
		width: 50vw;
	}
}

/* .carousel-thum */
.front-page .fv .carousel-thum {
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translateY(50%);
	width: 505px;
	background-color: var(--white);
	padding: 8px 0 8px 8px;
	z-index: 1;
}
.front-page .fv .carousel-thum ul {
	margin: 0 -4px;
}
.front-page .fv .carousel-thum ul li {
	position: relative;
	cursor: pointer;
	padding: 0 4px;
}
.front-page .fv .carousel-thum ul li::after {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -12px;
	content: "";
	width: calc(100% - 8px);
	height: 4px;
	background-color: var(--green1);
	opacity: 0;
	transition: 0.3s;
}
.front-page .fv .carousel-thum ul li.slick-current::after {
	opacity: 1;
}
.front-page .fv .carousel-thum .slick-list {
	overflow: visible;
}
.front-page .fv .carousel-thum ul li img {
	transition: width 0.3s;
}
@media (min-width: 768px) {
	.front-page .fv .carousel-thum ul li:hover::after {
		opacity: 1;
	}
}
@media (max-width: 991px) {
	.front-page .fv .carousel-thum {
		position: relative;
		top: -8px;
		right: auto;
		bottom: auto;
		transform: none;
		margin: 0 0 0 auto;
		z-index: 1;
	}
}
@media (max-width: 767px) {
	.front-page .fv .carousel-thum {
		top: -4px;
		width: 256px;
		max-width: 100%;
		margin: 0 auto;
		padding: 4px;
	}
	.front-page .fv .carousel-thum ul {
		margin: 0 -2px;
	}
	.front-page .fv .carousel-thum ul li {
		padding: 0 2px;
	}
	.front-page .fv .carousel-thum ul li::after {
		bottom: -6px;
		height: 2px;
		width: calc(100% - 4px);
	}
}

/* .button-wrap */
.front-page .fv .button-wrap {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 40px;
}
.front-page .fv .button-wrap a {
	position: relative;
	display: inline-block;
	font-size: 60px;
	font-weight: bold;
	color: var(--white);
	background-image: url("../img/top/slide/arrow-fv.png");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 32px;
	padding-left: 56px;
}
.front-page .fv .button-wrap a span {
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
.front-page .fv .button-wrap a::after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 100%;
	height: 4px;
	background-color: var(--white);
	text-shadow: 0 0 2px rgba(0,0,0,0.25);
}
@media (max-width: 767px) {
	.front-page .fv {
		overflow: hidden;
	}
	.front-page .fv .button-wrap {
		bottom: 18px;
	}
	.front-page .fv .button-wrap a {
		font-size: 30px;
		background-size: 16px;
		padding-left: 26px;
	}
	.front-page .fv .button-wrap a::after {
		height: 1px;
		bottom: 2px;
	}
}

/* --------------------------------------------------
.page-body
-------------------------------------------------- */

.front-page section:first-child {
	margin-top: 120px;
}
@media (max-width: 991px) {
	.front-page section:first-child {
		margin-top: 90px;
	}
}

/* --------------------------------------------------
.sec-header
-------------------------------------------------- */

.front-page .sec-header {
	padding: 55px 0 65px;
}
.front-page .sec-title {
	font-size: 35px;
	font-weight: bold;
	margin: 0;
}
@media (max-width: 767px) {
	.front-page .sec-header {
		padding: 27px 0 40px;
	}
	.front-page .sec-title {
		font-size: 25px;
	}
}

/* --------------------------------------------------
.highlight-topics-sec
-------------------------------------------------- */

.front-page .highlight-topics-sec {
	padding-bottom: 60px;
	overflow: hidden;
}
@media (max-width: 767px) {
	.front-page .highlight-topics-sec {
		padding-bottom: 0;
	}
}

/* --------------------------------------------------
.important-sec
-------------------------------------------------- */

.front-page .important-sec {
	margin-top: 0 !important;
	padding: 25px 0 120px;
}
.front-page .important-sec .sec-inner {
	display: flex;
	gap: 45px;
	max-width: calc(100% + (50vw - 50%) - 535px);
}
.front-page .important-sec .important-title {
	line-height: 1.8;
	font-size: 15px;
	margin: 0;
	flex: 0 0 fit-content;
}
.front-page .important-sec .notice-wrap {}
.front-page .important-sec .notice-wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.front-page .important-sec .notice-wrap li {
	padding: 0;
	margin: 0;
}
.front-page .important-sec .notice-wrap li:not(:last-child) {
	margin-bottom: 10px;
}
.front-page .important-sec .notice-wrap a {
	position: relative;
	display: inline-block;
	padding-left: 1.35em;
	color: var(--green2);
	text-decoration: underline;
}
.front-page .important-sec .notice-wrap a::before {
	content: "";
	position: absolute;
	top: 0.675em;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 8px;
	border-style: solid;
	border-width: 4px 0 4px 12px;
	border-color: transparent transparent transparent var(--green1);
}
@media (max-width: 1199px) {
	.front-page .important-sec {
		max-width: 100% ;
		padding: 100px 0 120px;
	}
	.front-page .important-sec .sec-inner {
		max-width: 100%;
	}
}
@media (max-width: 991px) {
	.front-page .important-sec {
		padding: 30px 0 100px;
	}
}
@media (max-width: 767px) {
	.front-page .important-sec {
		max-width: 100%;
		padding: 25px 0 80px;
	}
	.front-page .important-sec .sec-inner {
		display: block;
	}
	.front-page .important-sec .important-title {
		margin-bottom: 7px;
	}
	.front-page .important-sec .notice-wrap {
		font-size: 13px;
	}
	.front-page .important-sec .notice-wrap li:not(:last-child) {
			margin-bottom: 8px;
	}
	.front-page .important-sec .notice-wrap a {
		padding-left: 1.2em;
	}
	.front-page .important-sec .notice-wrap a::before {
		width: 8px;
		height: 6px;
		border-width: 3px 0 3px 8px;
	}
}

/* --------------------------------------------------
.brand-sec
-------------------------------------------------- */

.front-page .brand-sec {
	padding: 100px 0;
}
.front-page .brand-sec .sec-inner {
	padding-right: 75px;
}
.front-page .brand-sec .brand-row {
	display: grid;
	grid-template-columns: 49% 51%;
}
.front-page .brand-sec .brand-col {}
.front-page .brand-sec .img-wrap {
	position: relative;
	height: 100%;
}
.front-page .brand-sec .img01 {
	width: 100%;
}
.front-page .brand-sec .logo {
	position: absolute;
	bottom: 0;
	left: 0;
	max-width: 90%;
}
.front-page .brand-sec .green-box {
	position: relative;
	color: var(--white);
	background-color: var(--green1);
	padding: 50px 0 30px;
}
.front-page .brand-sec .green-box .container {
	max-width: 460px;
}
.front-page .brand-sec .brand-title {
	font-size: 40px;
	color: var(--white);
	margin-bottom: 0.65em;
	letter-spacing: 0.05em;
}
.front-page .brand-sec .brand-title .small {
	display: block;
	font-size: 25px;
}
.front-page .brand-sec .p {
	line-height: 2;
	padding: 0;
	margin-bottom: 35px;
}
.front-page .brand-sec .link-wrap {
	font-size: 18px;
	font-weight: 700;
}
.front-page .brand-sec .link-wrap ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.front-page .brand-sec .link-wrap li {
	padding: 20px 0;
	margin: 0;
	border-top: solid 1px rgba(255, 255, 255, 0.4);
}
.front-page .brand-sec .link-wrap a {
	position: relative;
	padding-left: 1.5em;
	color: var(--white);
}
.front-page .brand-sec .link-wrap a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 8px;
	border-style: solid;
	border-width: 4px 0 4px 12px;
	border-color: transparent transparent transparent var(--white);
}
.front-page .brand-sec .link-wrap a.external-link {
	display: flex;
	align-items: center;
}
.front-page .brand-sec .link-wrap a.external-link::after {
	content: "";
	display: block;
	margin-left: 0.5em;
	width: 1.25em;
	height: 1em;
	background-image: url(../img/common/ico-external-white.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}
.front-page .brand-sec .img02 {
	position: absolute;
	top: -40px;
	left: 128px;
	transform: translateX(-100%);
}
.front-page .brand-sec .img03 {
	position: absolute;
	right: -100px;
	bottom: 55px;
}
.front-page .brand-sec .img-sp {
	display: none;
}
@media (max-width: 1199px) {
	.front-page .brand-sec .img01 {
		margin-top: 60px;
	}
	.front-page .brand-sec .img02 {
		left: 100px;
	}
}
@media (max-width: 991px) {
	.front-page .brand-sec .brand-row {
		grid-template-columns: 1fr;
	}
	.front-page .brand-sec .sec-inner {
		padding: 0;
	}
	.front-page .brand-sec .img-wrap {
		margin-bottom: -35px;
		z-index: 1;
	}
	.front-page .brand-sec .img-sp {
		display: block;
	}
	.front-page .brand-sec :is(.img01, .img02, .img03, .logo) {
		display: none;
	}
	.front-page .brand-sec .green-box {
		max-width: 640px;
		transform: translateX(34px);
		margin-left: auto;
	}
}
@media (max-width: 767px) {
	.front-page .brand-sec {
		padding: 80px 0;
	}
	.front-page .brand-sec .green-box {
		transform: translateX(16px);
		padding: 35px 0 20px;
	}
	.front-page .brand-sec .green-box .container {
		padding-left: 32px;
		padding-right: 32px;
	}
	.front-page .brand-sec .brand-title {
		font-size: 30px;
		margin-bottom: 20px;
	}
	.front-page .brand-sec .brand-title .small {
		font-size: 18px;
	}
	.front-page .brand-sec .p {
		line-height: 1.8;
		margin-bottom: 26px;
	}
	.front-page .brand-sec .link-wrap {
		font-size: 13px;
	}
	.front-page .brand-sec .link-wrap li {
		padding: 16px 0;
	}
	.front-page .brand-sec .link-wrap a {
		padding-left: 1.25em;
	}
	.front-page .brand-sec .link-wrap a::before {
		width: 8px;
		height: 6px;
		border-width: 3px 0 3px 8px;
	}
}


/* --------------------------------------------------
.category-list-sec
-------------------------------------------------- */

.front-page .category-list-sec .sec-header {
	border-top: 2px solid var(--green1);
}
.front-page .category-list-sec .category-list .list-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.front-page .category-list-sec .category-list .list-col {}
.front-page .category-list-sec .category-list dl {
	display: flex;
	height: 100%;
	background-color: var(--beige2);
	margin: 0;
}
.front-page .category-list-sec .category-list dl dt {
	flex: 0 0 38.69%;
	margin: 0;
}
.front-page .category-list-sec .category-list dt a {
	display: block;
	height: 100%;
	align-items: center;
}
.front-page .category-list-sec .category-list dt a img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.front-page .category-list-sec .category-list dd {
	padding: 25px 33px;
	margin: 0;
}
.front-page .category-list-sec .category-list .cat-title {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
}
.front-page .category-list-sec .category-list .cat-title a {
	text-decoration: underline;
}
.front-page .category-list-sec .category-list .cat-caption {
	line-height: 1.8;
	margin-bottom: 30px;
}
.front-page .category-list-sec .category-list .more-wrap {
	line-height: 1.8;
}
.front-page .category-list-sec .category-list a.more {
	font-weight: 500;
	position: relative;
	padding-left: 24px;
}
.front-page .category-list-sec .category-list a.more::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 12px;
	height: 8px;
	border-style: solid;
	border-width: 4px 0 4px 12px;
	border-color: transparent transparent transparent var(--green1);
}
@media (min-width: 768px) {
	.front-page .category-list-sec .category-list a {
		transition: opacity 0.3s;
	}
	.front-page .category-list-sec .category-list a:hover {
		opacity: 0.6;
	}
	.front-page .category-list-sec .category-list .list-col > .cat-title {
		display: none;
	}
}
@media (max-width: 767px) {
	.front-page .category-list-sec .category-list .list-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.front-page .category-list-sec .category-list .cat-title {
		font-size: 18px;
		margin-bottom: 7px;
	}
	.front-page .category-list-sec .category-list .cat-title a {
		position: relative;
		padding-left: 16px;
		text-decoration: none;
	}
	.front-page .category-list-sec .category-list .cat-title a::before {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 8px;
		height: 6px;
		border-style: solid;
		border-width: 3px 0 3px 8px;
		border-color: transparent transparent transparent var(--green1);
	}
	.front-page .category-list-sec .category-list dl {
		height: auto;
	}
	.front-page .category-list-sec .category-list dd {
		align-self: center;
		padding: 25px;
	}
	.front-page .category-list-sec .category-list dd .cat-title {
		display: none;
	}
	.front-page .category-list-sec .category-list .cat-caption {
		margin-bottom: 0;
	}
	.front-page .category-list-sec .category-list .more-wrap {
		display: none;
	}
}


/* --------------------------------------------------
.front-page .common-banner-sec
-------------------------------------------------- */

.front-page .common-banner-sec {
}
@media (min-width: 768px) {
}
@media (max-width: 991px) {
}
@media (max-width: 767px) {
}

/* --------------------------------------------------
.cases-list-sec
-------------------------------------------------- */

.front-page .cases-list-sec {
	background-color: var(--beige2);
	padding: 30px 0 95px 0;
}
.front-page .cases-list-sec .search-results .list-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
}
.front-page .cases-list-sec .search-results .list-col {
	width: 25%;
	padding: 0 25px;
}
@media (max-width: 991px) {
	.front-page .cases-list-sec .search-results .list-row {
		margin: 0 -8px;
	}
	.front-page .cases-list-sec .search-results .list-col {
		padding: 0 8px;
	}
}
@media (max-width: 767px) {
	.front-page .cases-list-sec .search-results .list-col {
		width: 50%;
	}
}
/* .article-cases */
.front-page .cases-list-sec .search-results .article-cases {
	position: relative;
}
.front-page .cases-list-sec .search-results .article-cases .new {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--white);
	background-color: #f00;
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	font-size: 12px;
	padding: 3px 4px;
}
.front-page .cases-list-sec .search-results .article-cases .thumbnail {
	margin-bottom: 20px;
}
.front-page .cases-list-sec .search-results .article-cases .thumbnail img {
	border: solid 1px var(--gray5);
	width: 100%;
	max-width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}
.front-page .cases-list-sec .search-results .article-cases .text-wrap {}
.front-page .cases-list-sec .search-results .article-cases .title {
	line-height: 1.5;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 7px;
}
.front-page .cases-list-sec .search-results .article-cases .title a {
	text-decoration: underline;
}
.front-page .cases-list-sec .search-results .article-cases .title .pdf {
	display: inline-block;
	width: 1.33em;
	height: 0.83em;
	margin-left: 0.25em;
	background-image: url(../img/common/ico-pdf.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
.front-page .cases-list-sec .search-results .article-cases .category {
	font-size: 13px;
	line-height: 1;
	font-weight: bold;
	margin-top: 10px;
}
.front-page .cases-list-sec .search-results .article-cases .category ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
}
.front-page .cases-list-sec .search-results .article-cases .category li {
	margin: 0;
	padding: 0;
}
.front-page .cases-list-sec .search-results .article-cases .category a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	line-height: 1.2;
	min-width: 89px;
	padding: 0.375em 1em 0.275em;
	color: var(--white);
	background-color: #666666;
}
.front-page .cases-list-sec .search-results .article-cases .industry {
	font-size: 15px;
	line-height: 1.6;
}
.front-page .cases-list-sec .search-results .article-cases .industry .separate {
	color: #AAAAAA;
}
.front-page .cases-list-sec .search-results .article-cases .tag {
	font-size: 13px;
	line-height: 1;
	font-weight: bold;
	margin-top: 10px;
	display: none;
}
.front-page .cases-list-sec .search-results .article-cases .tag ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
}
.front-page .cases-list-sec .search-results .article-cases .tag li {
	margin: 0;
	padding: 0;
}
.front-page .cases-list-sec .search-results .article-cases .tag a {
	font-weight: 300;
}
@media (max-width: 767px) {
	.front-page .cases-list-sec {
		padding-bottom: 55px;
	}
	.front-page .cases-list-sec .search-results .article-cases .title {
		font-size: 15px;
		line-height: 1.6;
	}
	.front-page .cases-list-sec .search-results .article-cases .thumbnail {
		margin-bottom: 12px;
	}
	.front-page .cases-list-sec .search-results .article-cases .category a {
		min-width: 76px;
		font-feature-settings: "palt";
		padding: 0.475em 0.5em 0.375em;
	}
}

/* --------------------------------------------------
.info-sec
-------------------------------------------------- */

.front-page .info-sec {
	padding: 30px 0 135px 0;
}
.front-page .info-sec .article-list ul li {
	display: flex;
	border-top: 1px solid var(--gray7);
	padding: 30px 0;
}
.front-page .info-sec .article-list ul li:last-child {
	border-bottom: 1px solid var(--gray7);
}
.front-page .info-sec .article-list .meta {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex: 0 0 255px;
}
.front-page .info-sec .article-list .date {
	flex: 0;
	padding: 2px 0;
}
.front-page .info-sec .article-list .category-wrap {
	position: relative;
	flex: 0;
}
.front-page .info-sec .article-list .category {
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 112px;
	min-height: 24px;
	line-height: 1.2;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
	background-color: #666666;
	color: var(--white);
	padding: 4px 12px 2px;
}
.front-page .info-sec .article-list .title {
	font-size: 100%;
	font-weight: 300;
	line-height: 1.6;
	margin: 0;
}
.front-page .info-sec .article-list .title a {
	text-decoration: underline;
}
@media (min-width: 768px) {
	.front-page .info-sec .article-list .category-wrap::before {
		position: absolute;
		left: -30px;
		top: 0;
		content: "";
		width: 1px;
		height: 100%;
		background-color: var(--gray7);
	}
	.front-page .info-sec .article-list .title {
		flex: 1;
		padding-left: 30px;
	}
}
@media (max-width: 767px) {
	.front-page .info-sec {
		padding: 0 0 60px;
	}
	.front-page .info-sec .article-list ul {
		margin-bottom: 45px;
	}
	.front-page .info-sec .article-list ul li {
		display: block;
		padding: 23px 0 18px;
	}
	.front-page .info-sec .article-list .meta {
		flex-direction: row-reverse;
		max-width: 100%;
		margin-bottom: 13px;
		gap: 10px;
	}
	.front-page .info-sec .article-list .date {
		padding: 0;
	}
	.front-page .info-sec .article-list .category-wrap {
		flex: 1;
	}
	.front-page .info-sec .article-list .category {
		font-feature-settings: "palt";
	}
}














