/* --------------------
section.firstview
-------------------- */
.backgroung_slides {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}
.backgroung_slides img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	animation: 25s linear infinite mvFade;
}
.backgroung_slides img:nth-child(1) {
	animation-delay: 0s;
}
.backgroung_slides img:nth-child(2) {
	animation-delay: 5s;
}
.backgroung_slides img:nth-child(3) {
	animation-delay: 10s;
}
.backgroung_slides img:nth-child(4) {
	animation-delay: 15s;
}
.backgroung_slides img:nth-child(5) {
	animation-delay: 20s;
}

@keyframes mvFade {
	0% {
		opacity: 0;
	}
	4% {
		opacity: 1;
	}
	16% {
		opacity: 1;
	}
	24% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

/* --------------------
section.firstview
-------------------- */
.firstview {
	position: sticky;
	top: 0;
	overflow: hidden;
}
.firstview > .wrapper {
	display: grid;
	grid-template-columns: repeat(22, 1fr);
	grid-template-rows: 1fr 1fr auto;
	align-items: center;
	height: 100vh;
}


.firstview .fv_title {
	grid-column: 2 / 7;
	grid-row: 1 / 2;
	align-self: end;
	padding-top: 48px;
	color: var(--color-white);
	font-size: 14px;
}

.firstview .fv_fade_1,
.firstview .fv_fade_2,
.firstview .fv_fade_3 {
	opacity: 0;
	will-change: opacity, transform, clip-path;
	animation-fill-mode: forwards;
}

.firstview .fv_fade_1 {
	animation: 1.2s ease 1.0s both fvFadeInUp;
}

.firstview .fv_text {
	grid-column: 2 / 7;
	grid-row: 2 / 3;
	align-self: start;
	padding-top: 48px;
	color: var(--color-white);
	font-family: var(--font-new-spirit);
	font-size: 12px;
}

.firstview .fv_fade_2 {
	animation: 1.2s ease 2.0s both fvFadeInUp;
}

.firstview .owan_slides {
	grid-column: 7 / 17;
	grid-row: 1 / 4;
	opacity: 1;
	pointer-events: auto;
}
.firstview .owan_slides img {
	max-height: 100%;
	width: auto;
	margin: auto;
	border-radius: 10px;
}
.firstview .owan_slides .caption {
	padding-top: 30px;
	color: var(--color-white);
	font-size: 12px;
	text-align: center;
}

.firstview .owan_slides .stack_carousel {
	position: relative;
	overflow: visible;
	height: min(60vh, 780px);
}
.firstview .owan_slides .stack_stage {
	position: relative;
	width: 100%;
	height: 100%;
}
.firstview .owan_slides .stack_slide {
	position: absolute;
	left: 50%;
	top: 50%;
	width: calc(100% - 120px);
	height: calc(100% - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: translate(-50%, -46%) scale(1.02);
	transform-origin: center;
	transition: opacity 420ms ease, transform 520ms ease;
}
.firstview .owan_slides .stack_slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}
.firstview .owan_slides .stack_caption {
	position: absolute;
	left: 50%;
	bottom: -34px;
	transform: translateX(-50%);
	white-space: nowrap;
	padding-top: 0;
}
.firstview .owan_slides .stack_pagination {
	display: flex;
	flex-direction: column;
	height: min(100px, 30vh);
	justify-content: space-between;
	position: absolute;
	top: 50%;
	left: calc(100% - 84px);
	transform: translateY(-50%);
	z-index: 40;
}

@media (min-width: 901px) and (max-width: 1500px) {
	.firstview .owan_slides .stack_pagination {
		left: calc(100% - 84px + (1500px - 100vw) * 0.125);
	}
}
.firstview .owan_slides .stack_pagination_dot {
	position: relative;
	width: 6px;
	height: 6px;
	--stack-dot-progress: 0;
	overflow: visible;
	background-color: var(--color-white);
	opacity: 1;
	border-radius: 50%;
	transition: background-color 0.25s ease, opacity 0.25s ease;
}

.firstview .owan_slides .stack_pagination_dot::after {
	content: '';
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	background: conic-gradient(
		var(--color-red) 0deg,
		var(--color-red) calc(var(--stack-dot-progress) * 1turn),
		transparent calc(var(--stack-dot-progress) * 1turn),
		transparent 1turn
	);
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
	mask: radial-gradient(farthest-side, transparent calc(100% - 2px), #000 calc(100% - 2px));
	opacity: 0;
	pointer-events: none;
}

.firstview .owan_slides .stack_pagination_dot.is-active {
	background-color: var(--color-red);
}

.firstview .owan_slides .stack_pagination_dot.is-active::after {
	opacity: 1;
}

.firstview .owan_slides .stack_pagination_dot.is-active .stack_pagination_dot_progress {
	opacity: 1;
	animation: none;
}

@keyframes stackDotProgress {
	to {
		stroke-dashoffset: 0;
	}
}

.fv_catchy_layer {
	position: fixed;
	top: 50%;
	right: clamp(60px, calc(100% / 2 - 650px), 620px);
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	z-index: 20;
}

.fv_catchy_layer .fv_catchy_slices {
	display: flex;
	flex-direction: row;
	width: clamp(170px, 15.5vw, 220px);
	max-width: 100%;
	align-items: start;
	gap: 0;
	margin: 0;
}

.fv_catchy_layer .fv_catchy_slice {
	display: block;
	flex: 1 1 0;
	min-width: 0;
	max-width: 100%;
	height: auto;
	width: 100%;
	clip-path: inset(0 0 100% 0);
	will-change: clip-path, opacity, transform;
	animation-fill-mode: forwards;
}

.fv_catchy_layer .fv_catchy_slice_1 {
	order: 3;
	animation: 2.2s ease 3.0s both fvRevealFromTop;
}

.fv_catchy_layer .fv_catchy_slice_2 {
	order: 2;
	animation: 2.2s ease 3.8s both fvRevealFromTop;
}

.fv_catchy_layer .fv_catchy_slice_3 {
	order: 1;
	animation: 2.2s ease 4.6s both fvRevealFromTop;
}

@keyframes fvFadeInUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fvRevealFromTop {
	0% {
		opacity: 0;
		clip-path: inset(0 0 100% 0);
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		clip-path: inset(0 0 0 0);
		transform: translateY(0);
	}
}

.catchy_words {
	display: flex;
	flex-direction: row-reverse;
	gap: clamp(20px, 2.8vw, 42px);
	color: var(--color-white);
	font-family: var(--font-catchy);
	font-size: clamp(28px, 2.7vw, 40px);
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 3px rgb(0 0 0 / 0.35);
	cursor: default;
}

.catchy_words .line {
	writing-mode: vertical-rl;
	text-orientation: upright;
	display: flex;
	gap: 0.16em;
}

.catchy_words .char {
	display: inline-block;
	animation: 2.8s ease-in-out infinite catchyWaveX;
	animation-delay: calc(var(--i) * 0.08s);
	will-change: transform;
}

@keyframes catchyWaveX {
	0% {
		transform: translateX(20px);
	}
	50% {
		transform: translateX(-20px);
	}
	100% {
		transform: translateX(20px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.firstview .fv_fade_1,
	.firstview .fv_fade_2,
	.firstview .fv_catchy_slice,
	.catchy_words .char {
		opacity: 1;
		animation: none;
		clip-path: none;
		transform: none;
	}
}

.firstview .location {
	position: fixed;
	left: 80px;
	bottom: 80px;
	z-index: 30;
	font-family: var(--font-new-spirit);
	font-size: 16px;
	color: var(--color-white);
	line-height: 2;
}

.firstview .scrolldown {
	position: fixed;
	right: 80px;
	bottom: 80px;
	z-index: 30;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	font-family: var(--font-new-spirit);
	font-size: 16px;
	color: var(--color-white);
	line-height: 1;
	cursor: default;
}

.firstview .scrolldown.is_page_top {
	cursor: pointer;
}

@media (max-width: 900px) {

	.firstview {
		position: sticky;
		top: 0;
		overflow: visible;
		z-index: 1;
	}

	.firstview > .wrapper {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 90px repeat(4, auto) minmax(360px, 52vh) minmax(150px, 24vh);
		height: auto;
		min-height: 100vh;
		min-height: 100svh;
		min-height: 100dvh;
	}

	.firstview .fv_title {
		grid-column: 1 / 3;
		grid-row: 2 / 3;
		padding-bottom: 0;
	}
	.firstview .fv_text {
		grid-column: 1 / 3;
		grid-row: 4 / 5;
		padding-block: 45px;
		text-align: right;
	}

	.firstview .owan_slides {
		grid-column: 1 / 3;
		grid-row: 3 / 4;
		align-self: end;
	}

	.firstview .owan_slides .stack_carousel {
		height: min(40vh, 520px);
	}
	.firstview .owan_slides .stack_slide {
		width: calc(100% - 56px);
		height: calc(100% - 60px);
	}
	.firstview .owan_slides .stack_pagination {
		left: calc(100vw / 2 + 120px);
	}

	.firstview .fv_catchy {
		grid-column: 1 / 3;
		grid-row: 7 / 8;
		display: flex;
		justify-content: center;
		align-items: center;
		padding-block: clamp(20px, 4vh, 48px) clamp(28px, 6vh, 64px);
		padding-inline: 0;
	}
	.firstview .fv_catchy_slices {
		margin-left: 0;
		margin-right: 0;
	}
	.firstview .fv_catchy .catchy_words {
		font-size: clamp(32px, 6.8vw, 50px);
		gap: clamp(14px, 3.2vw, 24px);
		overflow: visible;
	}
	.firstview .fv_catchy .catchy_words .line {
		gap: 0.12em;
	}

	.fv_catchy_layer {
		position: relative;
		/*top: auto;*/
		padding-top: 60vh;
		right: auto;
		transform: none;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		height: 140vh;
		margin-top: -18vh;
		pointer-events: none;
		z-index: 2;
		background: linear-gradient(180deg, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0.6) 30%, rgb(0 0 0 / 0.6) 100%);
	}

	.fv_catchy_layer .fv_catchy_slices {
		position: sticky;
		top: 14vh;
		width: clamp(140px, 42vw, 180px);
		max-width: 100%;
	}

	.firstview .location {
		left: 24px;
		bottom: 24px;
		font-size: 12px;
	}
	.firstview .scrolldown {
		right: 24px;
		bottom: 24px;
		font-size: 12px;
	}

}


/* --------------------
section.sec_catchy
-------------------- */
.sec_catchy {
	top: -35vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	height: 150vh;
	padding-block: 75vh 25vh;
	background: linear-gradient(180deg, rgb(0 0 0 / 0) 0%, rgb(0 0 0 / 0.6) 30%, rgb(0 0 0 / 0.6) 100%);
	text-align: center;
}
.sec_catchy.is_hidden {
	opacity: 0;
}

.sec_catchy > .wrapper {
	position: sticky;
	top: 25vh;
}

.sec_catchy .catchy_text {
	display: flex;
	flex-direction: row-reverse;
	gap: clamp(22px, 3.4vw, 48px);
	justify-content: center;
	align-items: flex-start;
	height: 40vh;
	color: var(--color-white);
}
.sec_catchy .catchy_text p {
	writing-mode: vertical-rl;
	font-size: clamp(12px, calc(1.55vw - 4px), 16px);
	letter-spacing: clamp(0.005em, calc(0.03vw - 0.02em), 0.02em);
	text-align: left;
	line-height: clamp(1.7, calc(1.1vw + 0.25), 2.05);
}
.sec_catchy .catchy_text p i {
	font-style: normal;
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/* --------------------
section title reveal
-------------------- */
:is(.section, .footer .sec_contact) .contents_heading > .title.title_reveal .char {
	display: inline-block;
	opacity: 0;
	transform: translateY(0.6em);
	transition: opacity 420ms ease, transform 420ms ease;
	transition-delay: calc(var(--char-index, 0) * 34ms);
	will-change: transform, opacity;
}

:is(.section, .footer .sec_contact) .contents_heading > .title.title_reveal.is_visible .char {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	:is(.section, .footer .sec_contact) .contents_heading > .title.title_reveal .char {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

.sec_catchy .link_arrow_white {
	position: absolute;
	left: clamp(0px, calc(48px - ((100vw - var(--wrapper-max)) / 2)), 48px);
	bottom: 0;
}

@media (min-width: 901px) and (max-width: 980px) {
	.fv_catchy_layer .fv_catchy_slices {
		width: clamp(138px, 14.5vw, 156px);
	}

	.sec_catchy .catchy_text p {
		font-size: 11.5px;
	}
}

@media (max-width: 900px) {

	.sec_catchy {
		top: -35vh;
		display: flex;
		justify-content: center;
		align-items: flex-start;
		height: 150vh;
		padding-block: 160px;
		z-index: 3;
		background: rgb(0 0 0 /0.6);
	}

	.sec_catchy > .wrapper {
		position: sticky;
		top: 20vh;
	}

	.sec_catchy .catchy_text {
		flex-direction: column;
		height: unset;
		gap: 2em;
	}

	.sec_catchy .catchy_text p {
		writing-mode: horizontal-tb;
		line-height: 1.8;
		margin-left: 48px
	}
	.sec_catchy .catchy_text p i {
		writing-mode: horizontal-tb;
	}
	/*.sec_catchy .catchy_text p br {
		display: none; 
	}*/

	.sec_catchy .link_arrow_white {
		position: relative;
		inset: unset;
		display: block;
		padding-top: 84px;
		text-align: right;
	}

}


/* --------------------
section texture overlay
-------------------- */
:is(.sec_methods, .sec_products, .sec_bespoke, .sec_news, .sec_contact) {
	position: relative;
	z-index: 30;
}

.footer .sec_contact {
	z-index: 40;
}

.footer .bgc_f_b {
	z-index: 50;
}

.footer .bgc_f_c {
	z-index: 60;
}

@media (max-width: 900px) {
	.footer .sec_contact {
		z-index: 40;
	}

	.footer .bgc_f_b {
		z-index: 50;
	}

	.footer .bgc_f_c {
		z-index: 60;
	}
}

:is(.sec_methods, .sec_products, .sec_bespoke, .sec_news, .sec_contact)::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../../images/wafuu_texture_overlay.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 320px 320px;
	opacity: 0.45;
	pointer-events: none;
	z-index: 0;
}

:is(.sec_methods, .sec_products, .sec_bespoke, .sec_news, .sec_contact) > .wrapper {
	position: relative;
	z-index: 2;
}

/* Apply the same texture to masked wave areas */
.section:is(.sec_methods, .sec_products, .sec_bespoke, .sec_news)::before,
.footer .sec_contact::before {
	background-image: url("../../images/wafuu_texture_overlay.png");
	background-size: 320px 320px;
	background-position: center top;
	background-repeat: repeat;
	background-color: var(--section-bg);
	background-blend-mode: multiply;
}


/* --------------------
section.sec_methods
-------------------- */
.sec_methods > .wrapper {
	display: grid;
	grid-template-columns: 489px minmax(0, 1fr);
	grid-template-rows: auto 1fr;
	column-gap: clamp(24px, 3vw, 56px);
}

.sec_methods .contents_heading,
.sec_methods .contents_wrap {
	grid-column: 1 / 2;
	max-width: 489px;
}

.sec_methods .contents_heading {
	padding-top: 48px;
	grid-row: 1 / 2;
}
.sec_methods .contents_wrap {
	grid-row: 2 / 3;
}

.sec_methods .text {
	line-height: 2;
	margin-bottom: 48px;
}

.sec_methods .illustration {
	grid-column: 2 / 3;
	grid-row: 1 / 3;
	justify-self: end;
	width: 100%;
	max-width: 720px;
}

@media (max-width: 900px) {

	.sec_methods > .wrapper {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, auto);
		row-gap: 48px;
	}

	.sec_methods .contents_heading,
	.sec_methods .contents_wrap {
		max-width: unset;
	}

	.sec_methods .contents_heading {
		grid-column: 1;
		grid-row: 1 / 2;
		margin-bottom: 0;
		padding-top: 0;
	}

	.sec_methods .contents_wrap {
		grid-column: 1;
		grid-row: 3 / 4;
	}

	.sec_methods .link_arrow_black {
		display: inline-block;
		margin-bottom: 120px;
	}

	.sec_methods .illustration {
		grid-column: 1;
		grid-row: 2 / 3;
	}

}


/* --------------------
section.sec_products
-------------------- */
.sec_products .text {
	max-width: 640px;
	margin-left: 320px;
	padding-bottom: 48px;
	line-height: 2;
}

.sec_products .link_arrow_black {
	display: inline-block;
	margin-bottom: 80px;
}

.sec_products .products_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: minmax(180px, auto);
	gap: 40px;
}

.sec_products .products_item {
	display: flex;
	flex-direction: column;
}

.sec_products .products_item .thumb {
	margin-bottom: 24px;
	border-radius: 8px;
	overflow: hidden;
}

.sec_products .products_item .name {
	font-size: 20px;
	margin-bottom: 8px;
}

.sec_products .products_item .price {
	font-family: var(--font-new-spirit);
	font-size: 16px;
}
.sec_products .products_item .price .currency {
	font-size: 10px;
	vertical-align: 0.12em;
}
.sec_products .products_item .price small {
	font-size: 10px;
}

.sec_products .products_item.item_1 {
	grid-area: 1 / 1 / 3 / 2;
}
.sec_products .products_item.item_2 {
	grid-area: 1 / 2 / 3 / 3;
	align-self: end;
}
.sec_products .products_item.item_3 {
	grid-area: 1 / 3 / 3 / 5;
}
.sec_products .products_item.item_4 {
	grid-area: 3 / 1 / 4 / 2;
}
.sec_products .products_item.item_5 {
	grid-area: 3 / 3 / 4 / 4;
}
.sec_products .products_item.item_6 {
	grid-area: 3 / 4 / 4 / 5;
}

@media (max-width: 900px) {

	.sec_products .contents_wrap {
		padding-bottom: 220px;
		position: relative;
	}

	.sec_products .text {
		max-width: unset;
		margin-left: unset;
	}

	.sec_products .products_item .name {
		font-size: 16px;
	}


	.sec_products .right {
		position: absolute;
		bottom: 0;
		right: 0;
	}

	.sec_products .link_arrow_black {
		margin-bottom: 120px;
	}

	.sec_products .products_grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: 380px auto auto auto;
	}

	.sec_products .products_item.item_1 {
		grid-area: 1 / 1 / 2 / 2;
		align-self: start;
	}
	.sec_products .products_item.item_2 {
		grid-area: 1 / 2 / 2 / 3;
		align-self: end;
	}

	.sec_products .products_item.item_3 {
		grid-area: 2 / 1 / 3 / 3;
	}
	.sec_products .products_item.item_4 {
		grid-area: 3 / 1 / 4 / 2;
	}
	.sec_products .products_item.item_5 {
		grid-area: 4 / 1 / 5 / 2;
	}
	.sec_products .products_item.item_6 {
		grid-area: 4 / 2 / 5 / 3;
	}

}

/* --------------------
section.sec_bespoke
-------------------- */
.sec_bespoke .text {
	max-width: 640px;
	margin-left: 320px;
	padding-bottom: 80px;
	line-height: 2;
}

@media (min-width: 901px) and (max-width: 1370px) {

	.sec_bespoke .text {
		margin-left: clamp(140px, 16vw, 240px);
		max-width: clamp(360px, calc(100% - 640px), 560px);
		padding-right: clamp(24px, 4vw, 64px);
		box-sizing: border-box;
	}

}

.sec_bespoke .process_collage {
	min-height: 400px;
}

.sec_bespoke .process_img {
	position: absolute;
	border-radius: 8px;
	overflow: hidden;
}
.sec_bespoke .process_img:before {
	content: none;
}

.sec_bespoke .process_img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sec_bespoke .process_img:where(:nth-child(1)) {
	width: 280px;
	height: 420px;
	top: -25px;
	right: 80px;
}

.sec_bespoke .process_img:where(:nth-child(2)) {
	width: 240px;
	height: 150px;
	top: 554px;
	left: 80px;
}

.sec_bespoke .process_img:where(:nth-child(3)) {
	width: 400px;
	height: 300px;
	bottom: 0;
	right: 440px;
}

.sec_bespoke .process_img:where(:nth-child(4)) {
	width: 160px;
	height: 200px;
	top: -170px;
	right: 320px;
}

.sec_bespoke .process_img:where(:nth-child(5)) {
	width: 171px;
	height: 128px;
	bottom: 130px;
	right: 300px;
}

@media (max-width: 900px) {

	.sec_bespoke .text {
		max-width: unset;
		margin-left: unset;
		padding-bottom: 36px;
	}

	.sec_bespoke .process_collage {
		position: relative;
		max-width: 500px;
		width: 100%;
		height: 547px;
		margin-inline: auto;
		margin-bottom: 68px;
	}


	.sec_bespoke .process_img:where(:nth-child(1)) {
		width: 160px;
		height: 240px;
		top: 60px;
		right: 0;
	}
	.sec_bespoke .process_img:where(:nth-child(2)) {
		width: 152px;
		height: 95px;
		top: 170px;
		left: 0;
	}
	.sec_bespoke .process_img:where(:nth-child(3)) {
		width: 280px;
		height: 211px;
		bottom: 0;
		left: 10px;
	}
	.sec_bespoke .process_img:where(:nth-child(4)) {
		width: 80px;
		height: 100px;
		top: 0;
		right: 140px;
	}
	.sec_bespoke .process_img:where(:nth-child(5)) {
		width: 120px;
		height: 90px;
		bottom: 30px;
		right: 10px;
	}

}


/* --------------------
section.sec_news
-------------------- */
.sec_news {
	min-height: unset;
}
.sec_news .contents_wrap {
	display: grid;
	grid-template-columns: repeat(18, 1fr);
}

.sec_news .news_list {
	grid-column: 6 / 19;
	grid-row: 1;
	border-top: 1px solid rgb(255 255 255 / 0.2);
}

.sec_news .news_item {
	display: grid;
	grid-template-columns: 240px auto;
	padding-block: 24px;
	border-bottom: 1px solid rgb(255 255 255 / 0.2);
	transition: opacity var(--transition);
}

.sec_news .news_item .tag_list {
	grid-column: 1 / 2;
}

.sec_news .news_item .date {
	grid-column: 2 / 3;
	font-family: var(--font-new-spirit);
	font-size: 14px;
}

.sec_news .news_item .title {
	grid-column: 2 / 3;
	position: relative;
	padding-right: 1.5em;
	font-size: 20px;
}
.sec_news a.news_item .title:after {
	content: '→';
	position: absolute;
	right: 0;
	bottom: 0;
}

.sec_news .news_list + div {
	grid-column: 1 / 4;
	grid-row: 1;
	align-self: end;
}

@media (max-width: 900px) {

	.sec_news .contents_wrap {
		display: block;
	}

	.sec_news .news_item {
		display: flex;
		flex-flow: column nowrap;
	}

	.sec_news .news_item .tag_list {
		padding-bottom: 24px;
	}

	.sec_news .news_item .date {
		padding-bottom: 12px;
	}

	.sec_news .news_item .title {
		font-size: 16px;
	}

	.sec_news .news_list + div {
		position: relative;
		padding-top: 36px;
		text-align: left;
	}

}

/* --------------------
section.sec_contact
-------------------- */
.sec_contact .contents_wrap {
	display: grid;
	grid-template-columns: repeat(18, 1fr);
}

.sec_contact .text{
	grid-column: 1 / 5;
	line-height: 2;
}

.sec_contact .cards {
	grid-column: 7 / 19;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.sec_contact .card {
	display: grid;
	row-gap: 32px;
	border-radius: 8px;
	background: var(--color-white);
	padding: 48px 40px;
	text-align: center;
	color: var(--color-black);
}

.sec_contact .card .card_title {
	font-size: 20px;
}

.sec_contact .card .illustration {
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec_contact .card .illustration img {
	width: 200px;
	height: 100px;
}

@media (max-width: 900px) {

	.sec_contact .contents_wrap {
		display: block;
	}

	.sec_contact .cards {
		grid-template-columns: 1fr;
		margin-top: 48px;
	}

}

/* ==================================================
Temporary: sec_products bottom spacing for desktop only
Delete this block later
================================================== */
@media (min-width: 901px) {
	.section.sec_products {
		padding-bottom: 240px;
	}

	.section.sec_news {
		padding-bottom: 240px;
	}
}

@media (max-width: 900px) {

	.section.sec_products {
		padding-bottom: 0px;
	}

	.section.sec_news {
		padding-bottom: 140px;
	}

}
