@font-face {
	font-family: 'DM Sans';
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: url(https://fonts.gstatic.com/s/dmsans/v15/rP2Yp2ywxg089UriI5-g7M8btVsD8Clqq7u6-K6h9Q.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400&display=swap');

* {
	box-sizing: border-box;
	font-family: "Nanum Myeongjo", serif;
}

html,
body {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
}

a {
	color: #000;
	text-decoration: none;
	text-align: center;
	letter-spacing: 8px;
	user-select: none;
}

body {
	background-color: #f2f3ff;

	scroll-behavior: smooth;
}

main {
	padding: 0px 24px;
}

main > * {
	margin-bottom: 90px;
}

main > #nav-bar {
	margin-top: 100px;
}
main > #gallery-wrap {
	margin-bottom: 0px;
	filter: drop-shadow(0 2rem 10rem #dbdff4);
	position: relative;
	width: 100%;
	height: 400px;
	background-color: transparent;
	border-top: 1px solid #fff;
	overflow: hidden;
	border-radius: 30px;
}

main > #gallery-wrap > * {
	position: absolute;
	content-visibility: auto;
	width: 100%;
	top: 0;
	right: 0;
	bottom: auto;
	object-fit: cover;
	min-width: 600px;
}

main > #page-menu {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, auto);
	column-gap: 3%;
}

main > #page-menu > a {
	color: #000;
	text-decoration: none;
	text-align: center;
	font-size: 18px;
	letter-spacing: 8px;
	user-select: none;
}

main > h1 {
	font-family: "Nanum Myeongjo", serif;
	font-size: 40px;
	margin-top: 120px;
	/* margin-left: 30px; */
	letter-spacing: 8px;
	font-weight: 400;
}

main > section {
	box-sizing: border-box;
	margin: 90px 0px;
	letter-spacing: 8px;
	margin-top: 100px;
}

main > section > #news-holder {
	height: 600px;
	background-color: #f00;
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.parent {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 5px;
}
  
main > section > #news-holder > div {
	background-color: red;
	aspect-ratio: 1;
}

main > section > #news-holder > div > img {
	width: 100%
}

main > section > a {
	position: relative;
	margin-top: 30px;
	text-align: left;
	display: block;
}

main > section > a > h2 {
	font-weight: 700;
	font-size: 24px;
}

main > section > a > div {
	width: 100%;
	text-align: right;
}

main > section > a > div > div {
	color: #000;
	text-decoration: none;
}

main > section > #visit-all-news {
	width: 100%;
	text-align: center;
	margin-top: 80px;
}

main > #menu-index {
	display: grid;
	/* height: 400px; */
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

main > #menu-index > div {

	position: relative;
	overflow: hidden;
	border-radius: 12px;
	height: 300px;

	transition: transform 64ms;
}

main > #menu-index > div:active {

	transform: scale(0.95);
}

main > #menu-index > div > img {

	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;

	transition: transform 120ms;
}


main > #menu-index > div > img[top] {

	top: 0;
	bottom: auto;
}

main > #menu-index > div > img[bottom] {

	top: auto;
	bottom: 0;
}

main > #menu-index > div > img[left] {

	left: 0;
	right: auto;
}

main > #menu-index > div > img[right] {

	left: auto;
	right: 0;
}

main > #menu-index > div:hover > img {

	transform: scale(1.03);
}

main > #menu-index > div > div {
	position: absolute;
	background: linear-gradient(rgba(0,0,0,0), rgba(59, 28, 28, 0.8));;
	height: 60%;
	width: 100%;
	bottom: 0;
	object-fit: cover;
	z-index: 1;
}

main > #menu-index > div > div > span {
	display: block;
	position: absolute;
	margin: 10%;
	font-size: 24px;
	letter-spacing: 8px;
	bottom: 0;
	color: #fff;
}

main > #menu-guide {
	font-size: 20px;
	width: 100%;
	text-align: center;
	letter-spacing: 8px;
}

main > #story-index {
	width: 100%;
}

main > #story-index > * {
	background-size: cover;
	color: #fff;
	filter: brightness(80%);
	padding: 120px 0px;
	margin-bottom: 20px;
	border-radius: 30px;
	width: 100%;
	text-align: center;
	font-size: 16px;
	letter-spacing: 6px;
	line-height: 56px;
}

main > #story-index > *:nth-child(1) {
	background-position: top;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(./img/story_1.avif);
}

main > #story-index > *:nth-child(2) {
	background-position: left;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(./img/story_2.avif);
}

main > #story-index > *:nth-child(3) {
	background-position: left;
	background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(./img/story_3.avif);
}

main > #workshop-index {
	width: 100%;
	font-size: 16px;
	letter-spacing: 6px;
	line-height: 56px;
}

main > #workshop-index > h2 {
	font-size: 20px;
}

main > #workshop-index > span {
	font-size: 14px;
	line-height: 35px;
	display: block;
}

main > #workshop-index > span {
	display: block;
}

main > #workshop-index > img[src$='.avif'] {
	width: 100%;
	border-radius: 30px;
}

main > #workshop-index > img[src$='.svg'] {
	width: 70%;
	margin: 40px 15%;
}

main > #workshop-index > #application-guide {
	text-align: center;
}

main > #contact-index {
	width: 100%;
	/* text-align: center; */
	font-size: 20px;
	letter-spacing: 6px;
	line-height: 56px;
}

main > #contact-index > img {
	width: 70%;
	margin: 40px 15%;
}

main > #contact-index > * {
	font-size: 20px;
	letter-spacing: 2px;
}

main > #contact-index > :not(input[type=button], label) {
	width: 100%;
	padding: 12px 18px;
	border: 1px solid #000;
	border-radius: 24px;
	margin-bottom: 12px;
}

main > #contact-index > textarea {
	resize: vertical;
}

main > #contact-index > input[type=button] {
	padding: 16px 20px;
	border-radius: 24px;
	color: #f2f3ff;
	background-color: #02030f;
	transition: background-color 160ms;
}

main > #contact-index > label,
main > #contact-index > br {
	font-size: 14px;
	text-align: left;
}

main > #contact-index > input[type=button]:hover {
	color: #02030f;
	background-color: transparent;
	cursor: pointer;
}


/* body > #mobile-nav {
	position: fixed;
	transform: translate3d(0,0,0);
	-webkit-transform: translateZ(0);
	left: 0;
	top: 0;
	width: 80px;
	height: 80px;

	transition: background-color 180ms;

	z-index: 11;
}

body > #mobile-nav > * {
	position: absolute;
	height: 2px;
	width: 40px;
	left: 24px;
	backdrop-filter: invert(100%);
}

body > #mobile-nav > *:nth-child(1) {
	top: 29px;
}

body > #mobile-nav > *:nth-child(2) {
	top: 39px;
}

body > #mobile-nav > *:nth-child(3) {
	top: 49px;
}

body > #mobile-nav-tab {
	position: fixed;
	transform: translate3d(0, 0, 0);
	-webkit-transform: translateZ(0);
	left: 0;
	top: -70%;
	width: 100%;
	height: 70%;
	padding-top: 128px;

	background-color: #fff;

	transition: top 180ms, filter 180ms;

	z-index: 10;
}

body > #mobile-nav-tab[isopen=true] {
	top: 0%;
	filter: drop-shadow(0 0 0.75rem #dbdff4);
}

body > #mobile-nav-tab > a {
	display: block;
	margin-bottom: 40px;
} */

.stick {
	position: fixed
}

footer {
	background-color: #11131f;
	color: #f2f3ff;
	min-height: 700px;
}

#wa-cake-desc > span {
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	line-height: 24px;
}

#workshop-image-holder {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 12px;
	width: 100%;
	height: 400px;
}

#workshop-image-holder > * {
	border-radius: 30px;
	background-size: cover;
	background-position: center;
}

#workshop-image-holder > *:nth-child(1) {
	background-image: url(./img/ws_mono.avif);
}

#workshop-image-holder > *:nth-child(2) {
	background-image: url(./img/ws_series.avif);
}

#workshop-image-holder > *:nth-child(3) {
	background-image: url(./img/ws_yum.avif);
}

footer > div {
	display: grid;
	grid-template-columns: 2fr 1fr;
	height: 100%;
	padding: 36px 24px;
}

footer > div > div {
	letter-spacing: 8px;
}

footer > div > div:nth-child(2) {
	display: grid;
	grid-template-rows: 1fr 1fr;
}

footer > div > div:nth-child(2) > div {
	text-align: right;
}

footer > div > div > h2 {
	font-size: 20px;
}

footer > div > div > h3 {
	font-size: 16px;
}

footer > div > div > div > h3 > a {
	color: #fff;
}

footer > div > div > h4 {
	font-size: 14px;
}

footer > div > div > iframe {
	height: 100%;
	width: 100%;
	border-radius: 30px;
}