@import url('https://gistcdn.githack.com/mfd/09b70eb47474836f25a21660282ce0fd/raw/e06a670afcb2b861ed2ac4a1ef752d062ef6b46b/Gilroy.css');
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/variable/woff2/SUIT-Variable.css');
@import url('https://cdn.jsdelivr.net/gh/sunn-us/SUIT/fonts/static/woff2/SUIT.css');

:root {
	
	/* Key Color */

	--blue: #2d79ff;
	--red: #ff2c60;
	--green: #4cd964;
	--yellow: #ffca00;
	--light-blue: #5ac8fa;
	--navy-dark: #1b2b47;
	--navy-darker: #011333;
	--orange: #ff7440;
	--purple: #7858ff;
	--black: #000;
	--white: #fff;
	--mask: rgba(0, 0, 0, .5);
	--scrollbar: rgba(0, 0, 0, .1);

	/*	Text Color */

	--primary-text: #303133;
	--regular-text: #606266;
	--secondary-text: #909399;
	--placeholder-text: #a8abb2;
	--disabled-text: #c0c4cc;
	--gray: #a5b2bb;

	/*	Border Color */

	--darker-border: #cdd0d6;
	--dark-border: #d4d7de;
	--base-border: #dcdfe6;
	--light-border: #e4e7ed;
	--lighter-border: #ebeef5;

	/*	Fill Color */

	--darker-fill: #e6e8eb;
	--dark-fill: #ebedf0;
	--base-fill: #f0f2f5;
	--light-fill: #f5f7fa;
	--lighter-fill: #fafafa;

	--border-radius: 20px;

	/* Gap */
	--grid-gap: 12px;
}
@media (max-width: 431px) {
	:root {
		--grid-gap: 10px;
	}
}
@media (min-width: 1280px) {
	:root {
		--grid-gap: 16px;
	}
}
body, div, dl, dt, dd, ul, ol, li, nav, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td, a {
	margin: 0px;
	padding: 0px;
	border-width: 0px;
	border-style: solid;
	border-color: transparent;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	-o-transform-origin: left top;
	transform-origin: left top;
	background-repeat: no-repeat;


}

html {
	background-color: ;
	height: 100%;
	overflow-x: hidden;
	overflow-y: scroll;
	box-sizing: border-box;
	font-weight: 400;
	color: #000;
}

html, body {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-family: 'SUIT', sans-serif;
/*	font-feature-settings: 'ss01','ss18';*/
}
.full {
	width: 100%;
	min-height: 100vh;
}

.test {
	box-shadow: 0 0 0 1px red inset; 
}


html {
	background-color: #FFC900;
}




/* Common */

.wrap {
	margin: 0 auto;
	padding: 40px;
	transition: padding 0.1s ease;
}
@media (max-width: 767px) {
	.wrap {
		padding: 20px;
		transition: padding 0.1s ease;
	}
}
@media (min-width: 1280px) {
	.wrap {
		padding: 80px;
		transition: padding 0.1s ease;
	}
}

.cover {
  width: 80%;
  height: 100vh;
  background: url('img/blooon-w.svg') no-repeat center center;
  background-size: contain;
}
header {
	width: 100%;
	height: 100vh;
}
section {
	display: grid;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	grid-gap: var(--grid-gap);
}

h1 {
/*	font-family: 'Gilroy', sans-serif;*/
font-size: 130px;
font-weight: 100;
line-height: 100%;
font-feature-settings: 'ss01','ss18';
}
h2 {
	font-size: 21px;
	font-weight: 400;
	line-height: 120%;
	margin-bottom: 16px;
	letter-spacing: -0.2 px;
}
h3 {
	font-size: 21px;
	font-weight: 600;
	line-height: 140%;
	margin-bottom: 16px;
	letter-spacing: -0.2 px;
}
h5 {
	font-size: 18px;
	font-weight: 600;
	line-height: 140%;
	margin-bottom: 16px;
	letter-spacing: -0.26 px;
}
p {
	font-size: 14px;
	font-weight: 300;
	line-height: 170%;
	letter-spacing: -0.18px;
}
small {
	font-size: 12px;
	line-height: 140%;
	letter-spacing: -0.2 px;
	color: var(--gray);
}

/* Color */

div[bg="blue"] {
	background-color: var(--blue);
}

/* Title */

.title {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 16px;
}
.title > div {
	display: flex;
	width: 100%;
}
.title > div > img {
	width: 100%;
}

/* Composition */

.composition {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: var(--grid-gap);
	transition: all 0.5s ease;
}
@media (max-width: 767px) {
	.composition {
		grid-template-columns: repeat(2, 1fr);
		transition: all 0.5s ease;
	}
}
.composition > div {
	display: grid;
	position: relative;
	overflow : hidden;
	border-radius: var(--border-radius);
}
.composition > div > div {
	position: absolute;
	display: inline-block;
	width: 100%;
	top: 0;
	left: 0;
}
.composition > .description {
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: visible;
}
.composition > div img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.composition > div[span="none"] {
	aspect-ratio: 1 / 1;
}
.composition > div[span="2x1"] {
	grid-column: span 2;
	aspect-ratio: clac(2 - var(--grid-gap)) / 1;
}
@media (max-width: 767px) {
	.composition > div[span="2x1"] {
		grid-column: span 2;
		aspect-ratio: 2.05 / 1;
	}
}
.composition > div[span="1x2"] {
	grid-row: span 2;
	aspect-ratio: 1 / clac(2 + var(--grid-gap));
}
.composition > div[span="2x2"] {
	grid-column: span 2;
	grid-row: span 2;
	aspect-ratio: 1 / 1 !important;
}

/* Order */

@media (max-width: 767px) {
	.composition > div:nth-of-type(10) {
		grid-row-start: 8;
		grid-row-end: 8;
		grid-column-start: 1;
		grid-column-end: 1;
	}
}
