@charset "UTF-8";

.about-page .common-top,
.about-page .common-top .en-title {
	color: var(--akamaru-color-white);
}

/* about-lead */

.about-lead {
	margin-bottom: var(--space-xl);
}

.about-lead .breadcrumb li:first-child a {
	color: #fff;
}
.about-lead .breadcrumb li + li:before {
	color: #fff;
}

.about-lead .breadcrumb li a {
	color: #ff4f4f;
}

.about-lead_bg {
	background-color: var(--akamaru-color-navy_main);
}
.about-lead_content {
	padding: var(--space-xl) 0;
}

.about-lead_content-block {
	color: var(--akamaru-color-white);
}

.about-lead_content {
	flex-wrap: nowrap;
	gap: var(--space-md);
	padding-right: 2%;
	align-items: center;
}
.about-lead_content-block {
	flex: 1 1 50%;
}

.about-lead_content-block .title {
	font-size: var(--fz-36);
	margin-bottom: var(--space-sm);
}

.about-lead_content-block .text-wrapper {
	max-width: 680px;
}

.about-lead_content-block .text {
	font-size: var(--fz-20);
	margin-bottom: clamp(10px, 1.388vw, 20px);
}

.about-lead_content-block .text:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 1620px) {
	.about-lead_content {
		justify-content: center;
	}
	.about-lead_content-block,
	.about-lead_thumbnail {
		flex-basis: 50%;
	}
	.about-lead_thumbnail img {
		width: 100%;
		max-height: 800px;
		object-fit: cover;
		object-position: center 20%;
	}
}

@media screen and (max-width: 900px) {
	.about-lead_content {
		flex-direction: column;
		padding-left: 1em;
		padding-right: 1em;
		align-items: baseline;
		width: 95%;
		margin: 0 auto;
	}
	.about-lead_thumbnail img {
		width: 100%;
		max-height: 900px;
		aspect-ratio: 16 / 9;
		object-fit: cover;
		object-position: top;
	}
}

@media screen and (max-width: 500px) {
	.about-lead_thumbnail img {
		aspect-ratio: 1 / 1;
	}
	.about-lead_content-block .title {
		font-size: 20px;
	}
	.about-lead_content-block .text {
		font-size: 14px;
	}
}

/*  about-dedication*/

.about-page .section-title .title {
	font-size: var(--fz-40);
	line-height: 1.4;
}

.about-dedication_block {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: nowrap;
	gap: clamp(20px, 4vw, 80px);
	margin-bottom: var(--space-2xl);
}

.about-dedication_block-content {
	flex: 1 1 40%;
	display: flex;
	justify-content: flex-start;
	flex-direction: row-reverse;
	gap: clamp(15px, 2vw, 30px);
}

.about-dedication_block-content .title,
.about-dedication_block-content .text {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	text-orientation: upright;
}

.about-dedication_block-content .title {
	font-size: var(--fz-32);
	margin-left: 0;
	letter-spacing: 0.18em;
}

.about-dedication_block-content .text {
	line-height: var(--lh-loose);
	letter-spacing: 0.15em;
}

.about-dedication_block-thumbnail {
	flex: 1 1 90%;
}

.about-dedication_block-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-dedication_variant-wrapper {
	background-color: #e9e9e9;
}

.about-dedication_variant {
	display: flex;
	align-items: center;
	gap: clamp(30px, 5vw, 140px);
	max-width: 1620px;
	padding: clamp(30px, 6vw, 100px);
	position: relative;
	justify-content: flex-end;
}
.about-dedication_variant .inner {
	max-width: 1620px;
}

.about-dedication_variant-gallery-top {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(20px, 2.5vw, 40px);
	position: absolute;
	top: -5.555vw;
	left: 0;
}

.about-dedication_variant-gallery-top img {
	width: min(420px, 80%);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-dedication_variant-gallery-top .thumbnail01 {
	margin-left: auto;
}

.about-dedication_variant-gallery-bottom {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	height: auto;
	margin-bottom: var(--space-3xl);
}

.about-dedication_variant-gallery-bottom img {
	max-height: 810px;
	object-fit: cover;
}

.about-dedication_variant-content {
	flex: 0 0 auto;
	display: flex;
	flex-direction: row-reverse;
	gap: clamp(15px, 2vw, 30px);
	justify-content: flex-start;
}

.about-dedication_variant-content .title,
.about-dedication_variant-content .text {
	writing-mode: vertical-rl;
	-webkit-writing-mode: vertical-rl;
	text-orientation: upright;
	letter-spacing: 0.15em;
}

.about-dedication_variant-content .title {
	font-size: var(--fz-32);
	line-height: 1.8;
}

.about-dedication_variant-content .text {
	line-height: var(--lh-loose);
	max-height: 540px;
}

.about-dedication_block-second {
	flex-direction: row-reverse;
}

.about-dedication_variant .inner {
	max-width: 1620px;
}

@media screen and (min-width: 1620px) {
	.about-dedication_variant-content {
		justify-content: center;
	}
}

@media screen and (max-width: 1300px) and (min-width: 769px) {
	.about-dedication_variant-gallery-top {
		display: none;
	}
}

@media screen and (max-width: 1024px) {
	.about-dedication_variant {
		flex-wrap: wrap;
		justify-content: center;
	}
	.about-dedication_variant-content {
		align-items: center;
	}
}

@media screen and (max-width: 768px) {
	.about-dedication {
		padding-bottom: var(--space-xl);
	}

	.about-page .section-title .title {
		font-size: 22px;
	}

	.about-dedication_block {
		flex-direction: column-reverse;
		gap: var(--space-md);
		padding: 0 var(--space-sm);
		margin-bottom: 60px;
	}

	.about-dedication_block-content {
		flex-direction: column;
		gap: var(--space-xs);
	}

	.about-dedication_block-content .title,
	.about-dedication_block-content .text {
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		text-orientation: mixed;
	}

	.about-dedication_block-thumbnail img {
		aspect-ratio: 16 / 9;
	}

	.about-dedication_variant-wrapper {
		padding: var(--space-lg) 0;
		padding-top: 60px;
	}

	.about-dedication_variant {
		flex-direction: column;
		align-items: stretch;
		gap: var(--space-md);
		padding: 0;
		position: static;
	}
	.about-dedication_variant-gallery-top {
		position: static;
		display: flex;
		gap: var(--space-sm);
		padding: 0 var(--space-sm);
	}

	.about-dedication_variant-gallery-top img {
		width: 100%;
		box-shadow: none;
		aspect-ratio: 3 / 2;
		object-fit: cover;
	}
	.about-dedication_variant-content {
		flex-direction: column;
		gap: var(--space-xs);
		padding: 0 var(--space-sm);
		align-items: flex-start;
	}

	.about-dedication_variant-content .title,
	.about-dedication_variant-content .text {
		writing-mode: horizontal-tb;
		-webkit-writing-mode: horizontal-tb;
		text-orientation: mixed;
	}
	.about-dedication_variant-gallery-bottom {
		margin-bottom: var(--space-md);
	}

	.about-dedication_variant-gallery-bottom img {
		width: 100%;
		aspect-ratio: 16 / 9;
		object-fit: cover;
	}
}

@media screen and (max-width: 500px) {
	.about-dedication_block-content .title {
		font-size: 20px;
		line-height: 1.6;
		letter-spacing: 0.08em;
	}
	.about-dedication_variant-content .title {
		font-size: 20px;
		line-height: 1.6;
		letter-spacing: 0.08em;
	}
	.about-dedication_block-content .text,
	.about-dedication_variant-content .text {
		font-size: 14px;
		line-height: 1.9;
		letter-spacing: 0.05em;
	}

	.about-dedication_variant-gallery-bottom img {
		max-height: 240px;
	}
}

/* .about-between */

.about-between-thumbnail {
	position: relative;
	margin-bottom: var(--space-xl);
}

.about-between-thumbnail img {
	max-height: 925px;
	object-fit: cover;
}

.about-between-thumbnail:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background-image: url('../../images/decoration-curve_top.png');
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 3.472vw;
}

.about-between-thumbnail:after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	background-image: url('../../images/decoration-curve_bottom.png');
	background-repeat: no-repeat;
	background-size: 100%;
	width: 100%;
	height: 3.472vw;
}

@media screen and (max-width: 768px) {
	.about-between-thumbnail img {
		aspect-ratio: 4 / 3;
		object-position: left;
	}
}

/* about-schedule */

.about-schedule {
	margin-bottom: var(--space-xl);
}

.about-schedule-item {
	width: 90%;
	margin: 0 auto;
}

.about-schedule-item:last-child {
	border-bottom: none;
}

.about-schedule-item_container {
	display: flex;
	align-items: stretch;
	gap: clamp(30px, 5vw, 80px);
}

.about-schedule-item_left {
	flex: 1 1 55%;
	display: flex;
	gap: clamp(15px, 3vw, 40px);
	position: relative;
}

.about-schedule-item_left .item-header {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.about-schedule-item_left .item-header img:first-child {
	width: clamp(90px, 6vw, 120px);
}

.about-schedule-item_left .item-header .item-decoration {
	flex: 1;
	width: 15px;
	background-image: url('../../images/about-schedule_decoration.svg');
	background-repeat: repeat-y;
	background-size: 100% auto;
}
.about-schedule-item_left .item-content {
	flex: 1;
	padding: clamp(25px, 3vw, 40px);
}

.about-schedule-item_left .item-title {
	font-size: var(--fz-28);
	margin-bottom: clamp(20px, 2.5vw, 30px);
	letter-spacing: 0.1em;
}

.about-schedule-item_left .item-block + .item-block {
	margin-top: clamp(25px, 3.4722vw, 50px);
}

.about-schedule-item_left .item-block {
	position: relative;
	padding: clamp(20px, 2.5vw, 32px);
	margin-bottom: clamp(24px, 3vw, 40px);
	background: #fff;
	border-left: 4px solid #c06a20;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-schedule-item_left .item-block .title {
	font-size: var(--fz-22);
	font-weight: 600;
	color: #3a2a1a;
	margin-bottom: 0.75em;
	padding: 0;
	background: none;
}

/* 本文 */
.about-schedule-item_left .item-block .text {
	font-size: var(--fz-16);
	line-height: var(--lh-loose);
	letter-spacing: 0.08em;
	color: #444;
	padding: 0;
}

.about-schedule-item_thumbnail {
	flex: 1 1 45%;
	margin: var(--space-sm);
	overflow: hidden;
}

.about-schedule-item_thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: 972px;
	aspect-ratio: 3 / 4;
}

@media screen and (max-width: 1024px) {
	.about-schedule-item_container {
		flex-direction: column-reverse;
		margin-bottom: var(--space-lg);
	}
	.about-schedule-item_thumbnail {
		order: -1;
		margin-top: 0;
		margin-bottom: 0;
	}
	.about-schedule-item_thumbnail img {
		max-height: none;
		aspect-ratio: 16 / 9;
		width: 85%;
		margin-left: auto;
	}
}

@media screen and (max-width: 768px) {
	.about-schedule-item_container {
		margin-bottom: 90px;
		gap: 10px;
	}
	.about-schedule-item_left {
		flex-direction: column;
		align-items: center;
	}
	.about-schedule-item_left:before {
		left: 50%;
		transform: translateX(-50%);
	}
	.about-schedule-item_left .item-content {
		width: 100%;
		padding: 0;
	}
	.about-schedule-item_left .item-block {
		margin-bottom: 10px;
	}
	.about-schedule-item_left .item-block + .item-block {
		margin-top: 10px;
	}
	.about-schedule-item_left .item-block .title {
		font-size: 18px;
	}
	.about-schedule-item_thumbnail img {
		width: 100%;
	}
	.about-schedule-item_thumbnail {
		margin: 0;
	}
	.about-schedule-item_left .item-title {
		text-align: center;
	}
	.about-schedule-item_left .item-header img:first-child {
		width: 80px;
	}
	.about-schedule-item_left .item-title {
		font-size: 20px;
	}
}

@media screen and (max-width: 500px) {
	.about-schedule-item_left .item-content {
		padding: 0;
	}
	.about-schedule-item_container {
		margin-bottom: 40px;
	}
}

/* about-factory */

.about-factory .section-title {
	margin-bottom: var(--space-md);
}

.about-factory_container {
	width: 90%;
	margin: 0 auto;
	padding-top: var(--space-md);
	padding-bottom: var(--space-lg);
	color: var(--akamaru-color-white);
}

.about-factory_bg {
	background-color: var(--akamaru-color-navy_main);
}

.about-factory_header {
	margin-bottom: var(--space-xl);
}

.about-factory_header-title {
	margin-bottom: clamp(20px, 2.777vw, 40px);
	padding-bottom: clamp(20px, 2.777vw, 40px);
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
}

.about-factory_header-title .en-title {
	font-size: clamp(24px, 3.3333vw, 48px);
	font-family: var(--font-en);
	letter-spacing: 0.05em;
}
.about-factory_header-title .ja-title {
	font-size: var(--fz-24);
}

.about-factory_header-description {
	letter-spacing: 0.05em;
	margin-bottom: clamp(20px, 2.777vw, 40px);
}

.about-factory_header_thumbnail img {
	width: 100%;
	max-height: 1012px;
	object-fit: cover;
}

.about-factory_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(280px, 1fr));
	gap: 24px;
}

.about-factory_item {
	flex: 0 0 calc((100% - 2 * clamp(20px, 2.5vw, 40px)) / 3);
	background: #fff;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.about-factory_item .thumbnail {
	overflow: hidden;
}

.about-factory_item .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.about-factory_item:hover .thumbnail img {
	transform: scale(1.05);
}

.about-factory_item .wrapper {
	padding: clamp(20px, 2.5vw, 32px);
}

.about-factory_item .title {
	font-size: var(--fz-22);
	font-weight: 600;
	margin-bottom: 0.5em;
	color: #2e2e2e;
}

.about-factory_item .text {
	font-size: var(--fz-15);
	line-height: var(--lh-loose);
	letter-spacing: 0.08em;
	color: #555;
}

.about-factory-rice {
	color: var(--akamaru-color-navy_main);
	margin-bottom: var(--space-xl);
}
@media screen and (max-width: 1024px) {
	.about-factory-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 768px) {
	.about-factory_container {
		padding: 90px 0;
	}
	.about-factory_header-title .en-title {
		font-size: var(--fz-36);
	}
	.about-factory_item .title {
		font-size: 16px;
	}
	.about-factory_list {
		grid-template-columns: repeat(2, minmax(160px, 1fr));
		gap: 16px;
	}
	.about-factory_header_thumbnail img {
		aspect-ratio: 4 / 3;
	}
	.about-factory_item .thumbnail img {
		aspect-ratio: 16 / 9;
	}

	.about-factory_item .text {
		font-size: 13px;
		line-height: 1.8;
	}
	.about-factory_header-description {
		font-size: 13px;
	}
	.about-factory_header {
		margin-bottom: 60px;
	}
}

@media screen and (max-width: 500px) {
	.about-factory_item {
		flex: 1 1 100%;
	}
	.about-factory_container {
		padding: 40px 0;
	}
	.about-factory_list {
		grid-template-columns: 1fr;
	}
	.about-factory_item {
		flex: 0 0 100%;
	}
}

/* about-staff */

.about-Staff {
	margin-bottom: var(--space-2xl);
}

.about-staff_container {
	width: 70%;
	margin: 0 auto;
}
.about-staff_list {
	gap: var(--space-sm);
}

.about-Staff .about-between-thumbnail img {
	max-height: 1150px;
	object-fit: cover;
}

.about-staff_item {
	flex: 1 1 45%;
	background: #fff;
	padding: clamp(20px, 2.5vw, 32px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.about-staff_item .item-thumbnail {
	position: relative;
	margin-bottom: clamp(20px, 2.777vw, 40px);
}

.about-staff_item .item-thumbnail::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.25) 100%);
}

.about-staff_item .item-thumbnail img {
	width: 100%;
	max-height: 780px;
	object-fit: cover;
	object-position: top;
}

.about-staff_item .item-header {
	display: flex;
	flex-direction: column;
	padding-bottom: 14px;
	margin-bottom: clamp(14px, 2vw, 24px);
	border-bottom: 1px solid var(--akamaru-color-gray_main);
}

.about-staff_item .ja-name {
	font-size: var(--fz-28);
	font-weight: 600;
	letter-spacing: 0.05em;
}

.about-staff_item .ja-name .mini {
	font-size: var(--fz-18);
	margin-left: 5px;
}

.about-staff_item .en-name {
	order: -1;
	font-size: var(--fz-12);
	letter-spacing: 0.2em;
	color: var(--akamaru-color-red_accent01);
	opacity: 0.8;
}

.about-staff_item .text {
	position: relative;
	font-size: var(--fz-16);
	line-height: var(--lh-loose);
	letter-spacing: 0.08em;
	color: #444;
	padding-left: 1em;
}

.about-staff_item .text::before {
	content: '“';
	position: absolute;
	left: 0;
	top: -0.2em;
	font-size: 2em;
	color: var(--akamaru-color-red_accent01);
	opacity: 0.3;
}

@media screen and (max-width: 1024px) {
	.about-staff_container {
		width: 90%;
	}
}

@media screen and (max-width: 768px) {
	.about-Staff .about-between-thumbnail img {
		aspect-ratio: 4 / 3;
		object-position: center;
	}
}
@media screen and (max-width: 600px) {
	.about-staff_item {
		flex: 1 1 100%;
	}
	.about-staff_item .item-thumbnail img {
		aspect-ratio: 4 / 3;
	}
}
