.layout {
	gap: 18px;
	min-height: calc(100vh - 55px);
	background:#EDF0F4;
}
.container {
	padding: 30px 20px 60px;
}

.logo {
	width: 100%;
	gap: 7px;
	padding: 0 10px;
	box-sizing: border-box;
}
.logo img {
	flex: 1;
	max-width: 268px;
}

.contents_pos {
	width:100%;
	gap: 15px;
}
.no_login {
	display: flex;
	width: 100%;
	height: 120px;
	padding: 20px;
	align-items: center;
	gap: 20px;
	border-radius: 10px;
	justify-content: center;
	background:#fff url('/common/images/login_box.png?v=1') no-repeat center center;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;

}
.login_info {
	width: 100%;
	padding: 20px;
	gap: 20px;
	border-radius: 10px;
	background: var(--white, #FFF);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	box-sizing: border-box;
}

.notice_pos {
	width: 100%;
	padding: 10px 20px;
	background: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	border-radius: 10px;
	border: 1px white solid;
	justify-content: flex-start;
	align-items: center;
	gap: 10px;
	display: flex;
	word-break: break-all;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	overflow: hidden;
	box-sizing: border-box;
}
.notice_pos h3 {
	font-size: 14px;
}

.home_hub {
	width: 100%;
	padding: 16px 18px 18px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
	border-radius: 18px;
	border: 1px solid #f5f7fa;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.home_hub_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home_hub_head h3 {
	margin: 0;
	font-size: 17px;
	font-weight: 800;
	color: #111827;
	background: #ffe08a;
	padding: 8px 14px;
	border-radius: 12px;
}

.home_hub_grid {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 72px;
	justify-content: flex-start;
	gap: 14px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 2px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.home_hub_grid::-webkit-scrollbar {
	display: none;
}

@media (min-width: 769px) {
	.home_hub_grid {
		grid-auto-flow: unset;
		grid-auto-columns: unset;
		grid-template-columns: repeat(6, minmax(0, 1fr));
		justify-content: stretch;
		gap: 18px;
		overflow: visible;
		padding-bottom: 0;
	}

	.home_hub_item {
		justify-content: center;
	}

	.home_hub_icon {
		width: 62px;
		height: 62px;
		border-radius: 20px;
	}

	.home_hub_icon svg {
		width: 31px;
		height: 31px;
	}

	.home_hub_icon img {
		width: 31px;
		height: 31px;
	}
}

.home_hub_item {
	border: 0;
	background: transparent;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	cursor: pointer;
	font-family: inherit;
}

.home_hub_icon {
	width: 56px;
	height: 56px;
	border-radius: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 0 1px 0 rgba(255,255,255,0.65);
}

.home_hub_icon svg {
	width: 28px;
	height: 28px;
}

.home_hub_icon img {
	width: 28px;
	height: 28px;
	display: block;
	object-fit: contain;
}

.home_hub_icon.icon_game {
	background: #fff8e6;
	color: #d97706;
}

.home_hub_icon.icon_moim {
	background: #ecfdf3;
	color: #15803d;
}

.home_hub_icon.icon_competition {
	background: #eef4ff;
	color: #2563eb;
}

.home_hub_icon.icon_nation {
	background: #f3e8ff;
	color: #7c3aed;
}

.home_hub_icon.icon_map {
	background: #effaf6;
	color: #0f766e;
}

.home_hub_icon.icon_chat {
	background: #fff1f2;
	color: #e11d48;
}

.home_hub_icon.icon_ranking {
	background: #eef2ff;
	color: #4f46e5;
}

.home_hub_label {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	color: #1f2937;
	text-align: center;
	word-break: keep-all;
}

.login_info .mb_photo {
	position: relative;
	width: 80px;
	height: 80px;
	background: #D9D9D9;
	border-radius: 9px;
	overflow: hidden;
}
.login_info .mb_photo img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.login_info .mb_info {
	width: calc(100% - 100px);
	gap: 1px;
}
.login_info .mb_info .info {
	font-size: 14px;
	color: var(--subtext_02);
	gap: 3px;
}
.login_info .mb_info .info > * {
	width: 100%;
	gap: 2px 12px;
}
.login_info .mb_info .info p {
	position: relative;
}
.login_info .mb_info .info p:after {
	content: '|';
	position: absolute;
	top: 0;
	right: -8px;
}
.login_info .mb_info .info p:last-child:after {
	display: none;
}
.login_info .mb_info .bar {
	position: relative;
	width: 100%;
	height: 8px;
	border-radius: 100px;
	background: #D9D9D9;
	overflow: hidden;
	margin-top: 2px;
}
.login_info .mb_info .bar span {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	background: #FFC000;
}

.login_info .mb_info .mb_nick {
	position: relative;
	color: #090909;
	font-size: 24px;
	font-weight: 700;
	padding-right: 27px;
	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	box-sizing: border-box;
}
.login_info .mb_info .mb_nick a {
	/*position: absolute;
	top: 0;
	right: 0;
    */
}
.login_info .mb_info .mb_info_data {
	justify-content: flex-start;
	align-items: center;
	gap: 6px;
	display: inline-flex;
}
.login_info .mb_info .mb_info_data .mb_info_data_text {
	color: var(--subtext_02); font-size: 14px; font-family: Pretendard Variable; font-weight: 400; line-height: 14px; word-wrap: break-word
}
.login_info .favorite {
	position: relative;
	width: 100%;
}
.login_info .favorite select {
	width: 100%;
	height: 37px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid var(--stroke, #E0E5EC);
	background: #FFF;
	outline: none;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	text-align:left;
	text-transform: uppercase;
	font-family: inherit;
	border-radius: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url("/common/images/arrow-down.svg")no-repeat calc(100% - 20px) 50%;
	box-sizing: border-box;
}
.login_info .favorite .btn_fv {
	width: 100%;
	height: 37px;
	padding: 10px 20px;
	border-radius: 10px;
	border: 1px solid var(--stroke, #E0E5EC);
	background: #fff url("/common/images/arrow-down.svg")no-repeat calc(100% - 20px) 50%;
}
.login_info .favorite ul {
	display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 3;
    padding: 20px;
    border: 1px solid var(--stroke, #E0E5EC);
    border-radius: 10px;
    margin-top: 10px;
    max-height: calc(100vh - 355px);
    overflow-y: auto;
    box-sizing: border-box;
}
.login_info .favorite ul li {
	padding: 5px 0;
}

.game_pos {
	width:100%;
	padding: 15px 20px;
	background: var(--white);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10);
	border-radius: 10px;
	border: 1px solid #F5F7FA;
	gap: 10px;
	box-sizing: border-box;
}
.game_pos h3 {
	background: var(--yellow);
	text-align: center;
	padding: 8px 20px;
	border-radius: 7px;
	font-size: 16px;
	font-weight: 700;
}
.game_pos .game_pos_row {
	gap: 10px;
}
.game_pos .game_pos_row > div {
	width: calc(33.333% - 7px);
	border-radius: 7px;
	border: 1px solid var(--yellow);
	text-align: center;
	padding: 14px 10px 12px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.game_pos .game_pos_row > div .title {
	font-size: 16px;
	font-weight: 700;
}
.game_pos .game_pos_row > div .icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.game_pos .game_pos_row > div .icon svg {
	width: 24px;
	height: 24px;
}
.game_pos .game_pos_row > div .icon_game {
	background: #fff8e6;
	color: #d97706;
}
.game_pos .game_pos_row > div .icon_moim {
	background: #ecfdf3;
	color: #15803d;
}
.game_pos .game_pos_row > div .icon_competition {
	background: #eef4ff;
	color: #2563eb;
}
.game_pos .game_pos_row > div .body {
	font-size: 12px;
	line-height: 1.3;
	margin-top: 6px;
}
.game_pos .game_pos_row > div.w100 {
	width: 100%;
	text-align: left;
}
.game_pos .game_pos_row > div.w100 img {
	width: 20px;
	vertical-align: middle;
	margin-right: 10px;
}
.link_pos {
	width: 100%;
/*
		display: flex;
		align-items: flex-start;
		align-content: flex-start;
		gap: 10px;
		align-self: stretch;
		flex-wrap: wrap;
*/
gap: 10px;
}
.link_pos .link_data {

	width: calc(33.333% - 7px);

	border-radius: 10px;
	border: 1px solid var(--underline);
	background: var(--white);
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
	padding: 20px;
	box-sizing: border-box;

	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 10px;
	display: flex
/*
	display: flex;
	align-items: flex-start;
	align-content: flex-start;
	gap: 10px;
	align-self: stretch;
	flex-wrap: wrap;
	border-radius: 10px;
	border: 1px solid var(--underline, #F5F7FA);
	background: #FFF;
	padding:20px;


	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10)
*/
}
.link_pos .link_data .link_data_title {
	justify-content: center;
	align-items: center;
	gap: 10px;
	display: inline-flex
}
.link_pos .link_data .link_data_title div {
	font-size: 14px;
	font-weight: 700;

}
.link_pos .link_data .link_data_title div img {
	margin-right:10px;
	vertical-align:-5px;
}
.link_pos .link_data .link_data_content {
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	display: inline-flex;
}
.link_pos .link_data .link_data_content div {
	color: #090909;
	font-size: 14px;
	font-family: Pretendard;
	font-weight: 400;
	word-wrap: break-word
}


.visual {
	width: 100%;
}
.visual .swiper {
	border-radius: 10px;
}
.visual .swiper-slide {
	border-radius: 10px;
	overflow: hidden;
}



.visual1 {
	width: 100%;
}
.visual1 .swiper {
	border-radius: 10px;
}
.visual1 .swiper-slide {
	border-radius: 10px;
	overflow: hidden;
}


.vertical_slide {
	width: 100%;
	background:#fff;
	padding:2%;
	border-radius:10px;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.home_hub {
		padding: 14px 14px 16px;
		border-radius: 16px;
	}

	.home_hub_grid {
		grid-auto-columns: 68px;
		gap: 12px;
	}

	.home_hub_icon {
		width: 52px;
		height: 52px;
		border-radius: 16px;
	}

	.home_hub_label {
		font-size: 13px;
	}
}
.vertical_slide .gallery-container {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	overflow: hidden;
	gap: 10px;
	height: 600px;
}
.vertical_slide .gallery-main {
	flex: 1;
	height: 100%;
	border-radius: 10px;
}
.vertical_slide .gallery-main .swiper-slide {
	border-radius: 10px;
}
.vertical_slide .gallery-main .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
.vertical_slide .gallery-thumbs {
	order: 1;
	width: 100px;
	height: 600px;
}
.vertical_slide .gallery-thumbs .swiper-slide {
	border-radius: 5px;
	border: 1px solid #f1f1f1;
	overflow: hidden;
	box-sizing: border-box;
}
.vertical_slide .gallery-thumbs .swiper-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
}
.vertical_slide .gallery-thumbs .swiper-slide-thumb-active {
	border: 2px solid #000;
}



#competitionList {
	background:#fff;
	border-radius: 10px;
  display: flex;
  width: 100%;
	padding:5px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
}

#competitionList .list {
  display: flex;
  width: 100%;

  align-items: flex-start;

  border-radius: 10px;
  border: 1px solid var(--underline, #F5F7FA);
  background: var(--white, #FFF);

  /* contents_drop */
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

#competitionList .list .mov_img {
  width:20%;
}
#competitionList .list .conts {
  width:76%;
}

#competitionList .list .thumb {
  position: relative;
  width: 100%;
  height:160px;
  overflow: hidden;
  border-radius: 10px;
}
#competitionList .list img {
  width:100%;
  border: 1px solid var(--underline);
}
#competitionList .swiper-pagination-bullet-active {
  background-color: var(--yellow);
}



#competitionList .list .mov {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
  width:100%;
  border-radius: 10px;
}

#competitionList .list .mov embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#competitionList .list .mov iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.comment span.commentCnt {
  background:url('/common/images/message.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
}

.comment span.hit {
  font-size: 14px;
}

.comment span.likeCnt {
  background:url('/common/images/heart.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
}
.comment span.likeCnt.on {
  background:url('/common/images/heart_on.svg') no-repeat left 1px;
  font-size: 14px;
}
.comment span.share {
  background:url('/common/images/share.svg') no-repeat left 1px;
  padding-left:20px;
  font-size: 14px;
  cursor:pointer;
}
.comment span.share.iconOnly {
  display:inline-block;
  width:18px;
  height:18px;
  padding-left:18px;
  box-sizing:border-box;
  overflow:hidden;
  color:transparent;
  font-size:0;
  line-height:18px;
  background-position:center;
  background-size:18px 18px;
  vertical-align:middle;
}
.comment span.shingo {
  background:url('/common/images/icon-problem.png') no-repeat left 1px;
  padding-left:24px;
  font-size: 14px;
  cursor:pointer;
}


.list .writer {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
}
.list .writer .flex {
  flex: 1;
  gap: 5px;
  font-size: 14px;
  justify-content: end;
}
.list .writer .date {
  color: #9c9c9c;
  font-size: 13px;
}


.content_pos {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
}
.list .content_pos .comment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding:5px;
  width: 100%;
}
.list .content_pos .comment > .flex {
  gap: 15px;
}
.content_pos .writer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  font-size: 14px;
  text-align: left;
}
.content_pos .writer > .flex {
  gap: 5px;
  align-items: start;
  flex-direction: column;
}
.content_pos .writer .date {
  color: #9c9c9c;
}
.link {padding:10px;}
.content_pos .content {
  color: var(--subtext_02, var(--sub_text_02, #4B4B4B));
  font-size: 15px;
  font-weight: 500;
  width:100%;
}
.content_pos .content p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.content_pos .content button {
  background: #e5e5e5;
  margin-top: 5px;
  float: right;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
}



.form {
	margin-top: 20px;
}
.form .item {
	position: relative;
	width: calc(25% - 8px);
	margin-right: 10px;
	margin-bottom: 20px;
	box-sizing: border-box;
	transition: background .2s;
	background: #FFFFFF;
	box-shadow: 0px 0px 10px rgba(186, 192, 198, 0.3);
	border-radius: 5px;
	padding: 20px;
}
.form .item:nth-child(4n) {
	margin-right: 0;
}
.form .item:hover {
	background: #F2F2F2;
}
.form .item .sort {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: #6200EA;
    color: #fff;
    font-weight: bold;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 5px 0 5px 0;
    text-align: center;
}
.form .item .thumb {
	position: relative;
	width: calc(100% - -40px);
	height: 0;
	padding-bottom: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin: -20px -20px 15px;
}
.form .item .thumb img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.form .item .brand {
    font-size: 12px;
    color: #BAC0C6;
}
.form .item .name {
	margin-top: 10px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: -0.5px;
	height: 32px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.form .item .sales {
	margin-top: 15px;
	font-size: 12px;
	color: #BAC0C6;
	font-weight: 300;
	text-decoration: line-through;
}
.form .item .flex {
	align-items: center;
	transform: rotate(0.03deg);
}
.form .item .flex .percent {
	order: 1;
	font-size: 10px;
	color: #fff;
	background: rgba(98, 0, 234, 0.3);
	border-radius: 5px;
	padding: 4px 8px;
	margin-left: 5px;
	font-weight: 600;
}
.form .item .flex .price {
	order: 0;
	font-size: 15px;
	font-weight: bold;
}
.form .item .icon .icons {
	position: relative;
	width: 40px;
	height: 40px;
	margin-right: 10px;
}
.form .item .icon .icons img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 100%;
}
.form .item .icon span {
	flex: 1;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


@media screen and (max-width: 1024px) {
	.vertical_slide .gallery-container {
		height: 500px;
	}
	.vertical_slide .gallery-thumbs {
		height: 500px;
	}
}
@media screen and (max-width: 768px) {
	.vertical_slide .gallery-container {
		height: 400px;
	}
	.vertical_slide .gallery-thumbs {
		height: 400px;
	}
}
@media screen and (max-width: 480px) {
	.link_pos .link_data {
		padding: 20px 12px;
	}

	.vertical_slide .gallery-container {
		height: 300px;
	}
	.vertical_slide .gallery-thumbs {
		height: 300px;
	}

	#competitionList .list .mov_img {
		width:30%;
		object-fit: fill;
	}
	#competitionList .list .conts {
		width:68%;
	}

	#competitionList .list .thumb {
		position: relative;
		width: 100%;
		height:100px;
		overflow: hidden;

		border-radius: 10px;
	}

	.content_pos {
		display: flex;
		padding: 8px;
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		align-self: stretch;
	}
	.content_pos .content p {
		overflow: hidden;
		text-overflow: ellipsis;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
	}

	.form .item {
		width: calc(50% - 5px);
		margin-right: 10px!important;
	}
	.form .item:nth-child(2n) {
		margin-right: 0!important;
	}

}
@media screen and (max-width: 380px) {
	.logo img {
		max-width: 200px;
	}

	.link_pos .link_data {
		width: calc(50% - 5px);
	}
}
