@charset "UTF-8";
/*----------
	top
----------*/
/* TOP汎用 */
.top-heading {
	color: var(--color-prim);
}
.top-heading__main {
	display: block;
	font-family: var(--font-montserrat);
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1.1;
	-webkit-font-smoothing: auto;
}
.top-heading__sub {
	margin-top: 12px;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: var(--line-height-s);
}
@media (min-width: 768px), print {
	.top-heading__main {
		font-size: 4.8rem;
	}
	.top-heading__sub {
		font-size: 2rem;
	}
}

/* メインスライド */
.top-slide {
	margin-bottom: 80px;
}
.top-slide__inner {
	position: relative;
}
.top-slide__img {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 128%;
}
.top-slide__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.top-slide__copy {
	position: absolute;
	bottom: 22%;
	width: 100%;
	padding: 0 20px;
}
.top-slide__copy-lead {
	margin-bottom: 12px;
	font-size: 2.6rem;
	font-weight: 500;
	line-height: 1.7;
	font-family: "微软雅黑";		/* 第三画面   字体*/
}
.top-slide__copy-subtext {
	display: none;
	font-weight: 500;
}
.top-slide__copy--white .top-slide__copy-lead {
	color: #fff;
}
.top-slide__copy--white .top-slide__copy-subtext {
	color: #fff;
}
.top-slide__copy--white .top-slide__btn-text {
	color: #fff;
}
.top-slide__copy--white .top-slide__btn-icon {
	color: #fff;
}
.top-slide__btn {
	display: inline-block;
	min-width: 131px;
}
.top-slide__btn-inner {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 0 10px 10px;
	border-bottom: solid 1px var(--color-border);
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 1.5;
}
.top-slide__btn-text {
	display: block;
	color: var(--color-txt);
	font-weight: 500;
}
.top-slide__btn-icon {
	position: relative;
	top: 0.1em;
}
.top-slide__control {
	position: absolute;
	left: 37%;
	bottom: 0;
	z-index: 1;
	width: calc(100% - 20px);
	max-width: 400px;
	height: 40px;
	/*background-color: #000000;	不显示背景色，则 播放按钮 背景为透明*/
	border-top-right-radius: 20px;	/*右上角 成半弧形*/
	border-top-left-radius: 20px;	/*左上角 成半弧形*/
	padding: 0 36px 0 20px;
}
.top-slide__control-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.top-slide__pagination {
	position: relative;
	display: flex;
	width: 100%;
	gap: 10px;
}
.top-slide__pagination > .swiper-pagination-bullet {
	opacity: 1;
	flex: 1;
	display: block;
	height: 4px;
	background-color: var(--color-border);
	border-radius: 10px;
}
.top-slide__pagination > .swiper-pagination-bullet::before {
	content: "";
	display: block;
	width: 0%;
	height: 4px;
	background-color: var(--color-border);
	border-radius: 10px;
	transition: width 5.5s;
}
.top-slide__pagination:not(.is-loaded) > .swiper-pagination-bullet-active::before {
	width: 100%;
	background-color: #9a0d0d;	/*  原设置 var(--color-prim);   进度条颜色*/
}
.top-slide__pagination:not(.is-loaded) > .swiper-pagination-bullet-active.is-pagination-stop {
	background-color: var(--color-prim);
}
.top-slide__pagination:not(.is-loaded) > .swiper-pagination-bullet-active.is-pagination-stop::before {
	transition: none;
}
.top-slide__start-stop {
	position: relative;
	width: 20px;
	height: 20px;
	margin-left: 19px;
	cursor: pointer;
}
.top-slide__start-stop::before {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-stop);
	position: absolute;
	left: 1px;
	top: 4px;
	display: block;
	font-size: 1.8rem;
	line-height: 12px;
	color: #9a0d0d;	/*原设置var(--color-prim); */
}
.top-slide__start-stop.is-stop::before {
	content: var(--icon-play);
}
.top-slide .swiper-container {
	visibility: hidden;
}
.top-slide .swiper-container.swiper-container-initialized {
	visibility: visible;
}
@media (min-width: 768px), print {
	.top-slide {
		width: 100%;
	}
	.top-slide__img {
		padding-top: 46.5%;
	}
	.top-slide__copy {
		top: 0;
		left: calc(50% - 600px);
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 1200px;
		height: 100%;
		margin: 0 auto;
		padding-bottom: 100px;
		text-align: left;
	}
	.top-slide__copy-lead {
		margin-bottom: 32px;
		font-size: 6rem;
		line-height: 1.5;
	}
	.top-slide__copy-subtext {
		display: block;
		margin-bottom: 28px;
		font-size: 1.8rem;
		line-height: var(--line-height-l);
	}
	.top-slide__copy--white .top-slide__copy-lead {
		color: #fff;
	}
	.top-slide__copy--white .top-slide__copy-subtext {
		color: #fff;
	}
	.top-slide__copy--white .top-slide__btn-inner:hover {
		border-color: #fff;
	}
	.top-slide__copy--white .top-slide__btn-icon {
		color: var(--color-prim);
		background-color: #fff;
	}
	.top-slide__btn {
		min-width: auto;
	}
	.top-slide__btn-inner {
		width: 270px;
		gap: 24px;
		padding: 0 20px 20px;
		border-bottom: solid 1px var(--color-border);
		color: var(--color-prim);
		font-size: 1.6rem;
		line-height: 1.5;
		transition: border-color 0.2s;
	}
	.top-slide__btn-inner:hover {
		border-color: var(--color-prim);
	}
	.top-slide__btn-inner:hover > i {
		transform: translateX(10px);
	}
	.top-slide__btn-text {
		color: var(--color-prim);
		font-size: 1.8rem;
	}
	.top-slide__btn-icon {
		top: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 40px;
		height: 40px;
		background-color: var(--color-prim);
		border-radius: 100%;
		color: #fff;
		transition: transform 0.2s;
	}
	.top-slide__pagination {
		width: auto;
		max-width: 298px;
	}
	.top-slide__pagination > .swiper-pagination-bullet {
		width: 120px;
	}
}

/* news */
.top-news {
	margin-bottom: 60px;
}
.top-news__list {
	flex-wrap: wrap;
}
.top-news__button {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.top-news {
		margin-bottom: 130px;
	}
	.top-news__list .c-news__detail {
		grid-template-columns: auto 1fr;
	}
	.top-news__list .c-news__headline {
		grid-column: 1/3;
		grid-row: 2;
		margin-top: 15px;
	}
	.top-news__button {
		margin-top: 60px;
	}
}

/* 藤倉化成早わかり */
.top-guide {
	margin-bottom: 80px;
}
.top-guide__card {
	overflow: hidden;
	width: 100%;
	max-width: 335px;
	min-height: 463px;
	margin: 0 auto;
	background: #1f81db url(/assets/images/top/bg_quick_guide_sp.png) no-repeat center top;
	background-size: 335px auto;
	border-radius: 10px;
	padding: 222px 20px 40px;
}
.top-guide__card-title {
	font-family: var(--font-montserrat);
	font-weight: bold;
	font-size: 1.6rem;
	color: #fff;
	-webkit-font-smoothing: auto;
}
.top-guide__card-heading {
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.5;
	color: #fff;
}
.top-guide__card-text {
	margin-top: 7px;
	font-size: 1.6rem;
	color: #fff;
	line-height: var(--line-height-l);
}
.top-guide__card-button {
	min-width: 275px;
	margin-top: 12px;
}
@media (min-width: 768px), print {
	.top-guide {
		margin-bottom: 120px;
	}
	.top-guide__card {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 415px;
		max-width: none;
		min-height: auto;
		background: url(/assets/images/top/bg_quick_guide.png) no-repeat right top;
		background-size: cover;
		padding: 0 0 5px 80px;
	}
	.top-guide__card-title {
		margin-bottom: 2px;
		font-size: 2rem;
	}
	.top-guide__card-heading {
		font-size: 3.2rem;
	}
	.top-guide__card-text {
		width: 333px;
		margin-top: 17px;
	}
	.top-guide__card-button {
		margin-top: 36px;
	}
}

/* 事業案内 */
.top-business {
	margin-bottom: 80px;
}
.top-business__img {
	margin-top: 20px;
}
.top-business__summary {
	margin-top: 30px;
}
.top-business__links {
	margin-top: 30px;
}
.top-business__button {
	margin-top: 40px;
}
@media (min-width: 768px), print {
	.top-business {
		margin-bottom: 120px;
	}
	.top-business__img {
		margin-top: 0;
	}
	.top-business__summary {
		margin-top: 30px;
	}
	.top-business__links {
		margin-top: 40px;
	}
	.top-business__button {
		margin-top: 60px;
	}
	.top-business__container {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 40px;
	}
	.top-business__item--2 {
		grid-column: 2/3;
		grid-row: 1/4;
	}
}

/* 製品情報 */
.top-products__image {
	overflow: hidden;
	position: relative;
	z-index: 1;
	height: 0;
	padding-bottom: 61.6%;
	border-top-left-radius: 50px;
}
.top-products__image img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	object-position: center;
}
.top-products__content {
	position: relative;
	z-index: 1;
	padding: 30px 20px 80px;
	background-color: #fff;
}
.top-products__summary {
	margin-top: 20px;
}
.top-products__button {
	margin-top: 30px;
}
@media (min-width: 768px), print {
	.top-products {
		position: relative;
	}
	.top-products__image {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 596px;
		padding-bottom: 0;
	}
	.top-products__content {
		display: flex;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		max-width: 1200px;
		height: 596px;
		margin: 0 auto;
		padding: 0;
		background-color: inherit;
	}
	.top-products__summary {
		margin-top: 40px;
	}
	.top-products__button {
		margin-top: 40px;
	}
}

/* 研究開発 */
.top-research {
	background-color: var(--color-bg);
	padding: 80px 20px;
}
.top-research__img {
	margin-bottom: 30px;
}
.top-research__summary {
	margin-top: 20px;
}
.top-research__button {
	margin-top: 30px;
}
@media (min-width: 768px), print {
	.top-research {
		padding: 127px 0 120px;
	}
	.top-research__container {
		display: grid;
		grid-template-columns: calc(50% - 20px) calc(50% + 20px);
		gap: 0;
		max-width: 1200px;
		margin: 0 auto;
	}
	.top-research__img {
		width: 740px;
		margin-bottom: 0;
	}
	.top-research__summary {
		margin-top: 40px;
	}
	.top-research__button {
		margin-top: 40px;
	}
	.top-research__item--1 {
		order: 2;
	}
	.top-research__item--2 {
		order: 1;
		padding-right: 80px;
	}
}

/* 企業情報 */
.top-company__title {
	margin-bottom: 45px;
}
@media (min-width: 768px), print {
	.top-company__title {
		margin-bottom: 40px;
	}
}

/* IR情報 */
.top-ir__title {
	margin-bottom: 45px;
}
@media (min-width: 768px), print {
	.top-ir__title {
		margin-bottom: 40px;
	}
}

/* サステナビリティ */
.top-csr__title {
	margin-bottom: 45px;
}
@media (min-width: 768px), print {
	.top-csr {
		margin-bottom: 120px;
	}
	.top-csr__title {
		margin-bottom: 40px;
	}
}

/* 採用情報 */
.top-recruit__card {
	overflow: hidden;
	width: 100%;
	max-width: 335px;
	min-height: 463px;
	margin: 0 auto;
	background: #D3F0FA url(/assets/images/top/bg_recruit_sp.jpg) no-repeat center top;
	background-size: 335px auto;
	border-radius: 10px;
	padding: 222px 20px 40px;
}
.top-recruit__card-title {
	font-family: var(--font-montserrat);
	font-weight: bold;
	font-size: 1.6rem;
	color: var(--color-prim);
	-webkit-font-smoothing: auto;
}
.top-recruit__card-heading {
	font-weight: 500;
	font-size: 2.2rem;
	line-height: 1.5;
	color: var(--color-prim);
}
.top-recruit__card-text {
	margin-top: 7px;
	font-size: 1.6rem;
	line-height: var(--line-height-l);
}
.top-recruit__card-button {
	min-width: 275px;
	margin-top: 20px;
}
@media (min-width: 768px), print {
	.top-recruit__card {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: 415px;
		max-width: none;
		min-height: auto;
		background: url(/assets/images/top/bg_recruit.jpg) no-repeat right top;
		background-size: cover;
		padding: 0 0 5px 80px;
	}
	.top-recruit__card-title {
		margin-bottom: 2px;
		font-size: 2rem;
	}
	.top-recruit__card-heading {
		font-size: 3.2rem;
	}
	.top-recruit__card-text {
		width: 333px;
		margin-top: 17px;
	}
	.top-recruit__card-button {
		margin-top: 36px;
	}
}

/* フッター上 お問い合わせ */
.top-contact {
	padding-bottom: 30px;
	background: var(--color-prim);
}
.top-contact__inner {
	text-align: center;
}
.top-contact__area {
	position: relative;
	display: block;
	padding: 33px 20px 76px;
	color: #fff;
	font-weight: 500;
	line-height: var(--line-height-l);
}
.top-contact__area::after {
	font-family: iconfont !important; /* stylelint-disable-line declaration-no-important,font-family-no-missing-generic-family-keyword */
	speak: none;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	content: var(--icon-arrow2-r);
	position: absolute;
	bottom: 30px;
	right: 20px;
	width: 36px;
	height: 36px;
	background-color: #fff;
	border-radius: 100px;
	color: var(--color-prim);
	font-size: 1.6rem;
	line-height: 36px;
	text-align: center;
}
.top-contact__area + .top-contact__area {
	border-top: solid 1px #fff;
	padding-bottom: 86px;
}
.top-contact__area + .top-contact__area::after {
	bottom: 40px;
}
.top-contact__icon {
	margin-bottom: 10px;
	text-align: center;
}
.top-contact__icon img {
	width: 45px;
}
.top-contact__title {
	margin-bottom: 10px;
	font-size: 1.8rem;
	font-weight: bold;
}
.top-contact__text {
	font-size: 1.6rem;
	text-align: left;
}
@media (min-width: 768px), print {
	.top-contact {
		min-width: 1240px;
		padding-bottom: 50px;
	}
	.top-contact__inner {
		display: flex;
		align-items: center;
	}
	.top-contact__area {
		display: flex;
		align-items: center;
		width: 50%;
		min-height: 260px;
		padding: 30px 120px 30px 100px;
		text-align: left;
	}
	.top-contact__area::after {
		bottom: calc(50% - 20px);
		right: 60px;
		width: 40px;
		height: 40px;
		line-height: 40px;
		transition: right 0.2s;
	}
	.top-contact__area + .top-contact__area {
		border-top: none;
		border-left: solid 1px #fff;
		padding-bottom: 30px;
	}
	.top-contact__area + .top-contact__area::after {
		bottom: calc(50% - 20px);
	}
	.top-contact__area:hover::after {
		right: 50px;
	}
	.top-contact__icon {
		width: 80px;
		margin: 0 30px 0 0;
	}
	.top-contact__icon img {
		width: 80px;
	}
	.top-contact__textarea {
		flex: 1;
	}
	.top-contact__title {
		margin-bottom: 5px;
		font-size: 2rem;
	}
}
/*# sourceMappingURL=index.css.map */
