@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
HOME
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	height: initial;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- ページヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-header {
	display: grid;
	position: relative;
	z-index: 0;
	padding-top: 100px;
	align-content: space-between;
}

.home-header-img {
	position: absolute;
	inset: 0 auto auto 0;
	z-index: -1;
	width: 100%;
	height: calc(100% + 40px);
	object-fit: cover;
	object-position: 80% center;
}

.home-header .heading_enja-en {
	letter-spacing: 0.05em;
}

.home-header-news {
	display: grid;
	padding-left: var(--padding-inline);
	grid-template-columns: minmax(auto, 610px);
	justify-content: end;
	align-items: center;
}

.home-header-news .heading {
	position: relative;
	z-index: 1;
	margin-right: -0.5em;
	color: var(--color_main);
	font-weight: 700;
	font-size: 24px;
	line-height: 1;
}

.home-header-news .post-link {
	display: grid;
	padding: 1.2em;
	border-radius: 100vw 0 0 100vw;
	background: #fff;
	font-weight: 500;
	grid-template-columns: auto 1fr;
	column-gap: 1em;
	align-items: center;
}

.home-header-news .post-link:hover {
	background: rgb(255, 255, 255, 0.9);
}

.home-header-news .post-heading {
	display: -webkit-box;
	overflow: hidden;
	font-weight: inherit;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

@media (min-width: 768px) {
.home-header {
	padding-top: 175px;
}

.home-header-news {
	grid-template-columns: auto minmax(auto, 610px);
}

.home-header-news .heading {
	font-size: 40px;
}

.home-header-news .post-link {
	padding-left: 4em;
}
}

@media (max-width: 767.9px) {
.home-header-news .heading {
	margin-bottom: -0.3em;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- About
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-about .content {
	display: grid;
	position: relative;
	max-width: 1400px;
	margin-inline: auto;
	gap: 40px 1%;
}

.home-about .text {
	position: relative;
	z-index: 1;
	padding-inline: var(--padding-inline);
}

.home-about .description {
	font-size: clamp(16px, calc(100vw * 16 / 768), 24px);
}

.home-about .img {
	display: block;
	max-width: 55%;
	border-radius: var(--border-radius);
}

.home-about .img01 {
	margin: 0 0 -17% 2%;
}

.home-about .img02 {
	max-width: 33%;
	margin: 0 6% 6% auto;
}

.home-about .img03 {
	margin:  0 0 -36% auto;
}

.home-about .copy {
	position: absolute;
	inset: auto 0 0.4em;
	color: var(--color_sub);
	font-weight: 700;
	font-size: clamp(64px, calc(100vw * 96 / 768), 128px);
	font-family: var(--font_en);
	line-height: 1;
	white-space: nowrap;
	transform: translateX(-0.2em);
}

@media (min-width: 768px) {
.home-about .content {
	grid-template-columns: minmax(auto, 620px) 50%;
	justify-content: end;
}
}

@media (max-width: 767.9px) {
.home-about .image {
	padding-left: var(--padding-inline);
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- メニュー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-menu {
	background: var(--color_sub_light);
}

.home-menu .img {
	width: 100%;
	border-radius: var(--border-radius);
}

.home-menu .description {
	font-size: clamp(16px, calc(100vw * 16 / 768), 22px);
}

@media (min-width: 768px) {
.home-menu .inner {
	display: grid;
	column-gap: 6%;
}

.home-menu .heading_enja {
	align-self: end;
}

.home-menu .img {
	height: 522px;
	object-fit: cover;
	grid-row: 1 / 4;
}
}

@media (max-width: 767.9px) {
.home-menu .heading_enja {
	text-align: center;
}

.home-menu .description {
	margin-top: 1em;
}

.home-menu .button {
	margin-inline: auto;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 事業内容
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@media (min-width: 768px) {
.home-business .inner {
	grid-template-columns: auto 56%;
}

.home-business .img {
	grid-column: 2;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 採用情報
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-recruit {
	padding-top: initial;
}

@media (min-width: 768px) {
.home-recruit .inner {
	grid-template-columns: 56% auto;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 取扱製品情報
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-product {
	padding-top: initial;
}

@media (min-width: 768px) {
.home-product .inner {
	grid-template-columns: auto 56%;
}

.home-product .img {
	grid-column: 2;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 会社概要
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.home-company-intro {
	display: grid;
	margin: 0 auto 50px;
	gap: 30px 10px;
}

.home-company-intro .img {
	border-top-left-radius: 50px;
}

.home-company-intro .text {
	padding-inline: var(--padding-inline);
}

.home-company-intro .copy {
	margin-bottom: 1.2em;
	color: var(--color_main);
	font-weight: 500;
	font-size: clamp(24px, calc(100vw * 26 / 768), 36px);
	line-height: 1.5;
}

.home-company-intro .description {
	font-size: clamp(16px, calc(100vw * 16 / 768), 22px);
}

.home-company-detail-ul {
	display: grid;
	gap: 50px 4%;
}

.home-company-detail-li .img {
	width: 100%;
	max-height: 300px;
	border-radius: var(--border-radius);
	object-fit: cover;
}

.home-company-detail-li .heading {
	margin-block: 0.8em 0.5em;
	color: var(--color_main);
	font-size: clamp(20px, calc(100vw * 20 / 768), 24px);
	text-align: center;
}

@media (min-width: 768px) {
.home-company .heading_enja {
	text-align: center;
}

.home-company-intro {
	margin-bottom: -90px;
	grid-template-columns: minmax(auto, 460px) min(61%, calc(50% + 154px));
	justify-content: end;
}

.home-company-intro .img {
	width: 100%;
	height: 700px;
	object-fit: cover;
	object-position: 70% 40%;
	grid-row: 1;
	grid-column: 2;
}

.home-company-detail-ul {
	grid-template-columns: 1fr 1fr 1fr;
}

.home-company-detail-li:nth-child(2) {
	animation-delay: 0.5s;
}

.home-company-detail-li:nth-child(3) {
	animation-delay: 0.7s;
}
}

@media (max-width: 767.9px) {
.home-company-intro .img {
	width: calc(100% - var(--padding-inline));
	justify-self: end;
}

.home-company-intro .button {
	margin-inline: auto;
}
}
