/* common */
:root {
	--color-brand: #8676e5;
	--color-background: #f9f5e9;
	--color-blue: #5f83d6;
	--color-purple: #6459a1;
}
body {
	font-family: "Pretendard", Pretendard, -apple-system, BlinkMacSystemFont,
		system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo",
		"Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
		"Segoe UI Symbol", sans-serif;
	background: var(--color-background);
}
.container {
	position: relative;
	width: 100%;
	max-width: 1400px;
	padding: 0 16px;
	margin: 0 auto;
}
.site-header {
	position: relative;
	display: flex;
	align-items: center;
	padding: 46px 30px 66px 30px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	color: #000;
}
.site-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 222px;
}
.header-left > a {
	display: block;
	width: 93px;
}
.header-left .input-wrap {
	position: relative;
	margin-top: 18px;
	margin-bottom: 14px;
}
.header-left .input-wrap input {
	width: 277px;
	height: 50px;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	padding: 15px 57px 15px 18px;
	background: #fff;
	border: none;
	border-radius: 25px;
}
.header-left .input-wrap button {
	position: absolute;
	top: 14px;
	right: 18px;
}
.site-header .header-right {
	margin-left: auto;
}
.header-right .item-wrap {
	display: flex;
	column-gap: 15px;
}
.header-right .item-wrap .item {
	display: block;
	width: 110px;
	height: 110px;
	font-size: 20px;
	font-weight: 900;
	line-height: 110px;
	color: #fff;
	border-radius: 50%;
	background: var(--color-blue);
	text-align: center;
}
.header-right .item-wrap .item.item-share {
	background: #4ed3c6;
}
.item-share-wrap {
	position: relative;
}
.item-share-wrap .share-list {
	position: absolute;
	bottom: -68px;
	left: 0;
	display: none;
	width: 110px;

	padding: 6px;
	background: #fff;
	text-align: center;
}
.item-share-wrap .share-list,
.item-share-wrap .share-list button {
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	color: #000;
}
.header-right .share-list.open {
	display: block;
}
.header-right .item-list {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	column-gap: 13px;
	margin-top: 34px;
}

/* main */
body.is-home.is-intro .site-header,
body.page-add .site-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	padding: 0;
	margin: 0;
	text-indent: -9999px;
	user-select: none;
	pointer-events: none;
}
body.is-intro .page-board {
	display: none;
}
body:not(.is-intro) .page-intro {
	display: none;
}
.page-board {
	background: url(../images/back.png) no-repeat top center / auto 390px;
}
.slide-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	row-gap: 40px;
	min-height: 570px;
	padding: 40px 0;
	text-align: center;
}
.slide-inner > img {
	position: absolute;
	bottom: 5px;
	right: 15px;
	width: 50%;
	z-index: -1;
	/* animation: peopleUpDown 1s linear infinite; */
}
.slide-inner > img:first-of-type {
	left: 15px;
	right: auto;
	/* animation-delay: 0.5s; */
}
.line-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
.board-item {
	display: inline-block;
	padding: 14px 20px;
}
.board-item .text {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.2;
	color: #fff;
	text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.board-item .name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 7px;
}
.is-white .board-item .text {
	color: #555;
	text-shadow: none;
}
.is-white .board-item .name {
	color: rgba(0, 0, 0, 0.5);
}
.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 720px;
	margin: 160px auto 120px;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.swiper-button-next,
.swiper-button-prev {
	top: 50%;
	transform: translateY(-50%);
	width: 61px;
	height: 115px;
}
.swiper-button-prev:after,
.swiper-button-next:after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../images/ico-prev.png) no-repeat center / cover;
}
.swiper-button-next:after {
	background-image: url(../images/ico-next.png);
}

/* @keyframes peopleUpDown {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(5px);
    }
    100%{
        transform: translateY(0px);
    }
} */

/* add */
body.page-add .site-main {
	padding-top: 64px;
	padding-bottom: 95px;
}
body.page-add .site-main .container {
	width: 672px;
	max-width: 100%;
}
body.page-add .add-title {
	font-size: 48px;
	font-weight: 900;
	line-height: 1.2;
	color: var(--color-blue);
}
body.page-add .add-desc {
	width: 546px;
	max-width: 100%;
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	color: #000;
	margin-top: 40px;
}
#memo-acf-form {
	margin-top: 40px;
}
#memo-acf-form .acf-required {
	display: none;
}
#memo-acf-form .acf-fields > .acf-field {
	border-top: none;
}
#memo-acf-form .acf-field {
	padding: 0;
}
#memo-acf-form .acf-field + .acf-field {
	margin-top: 30px;
}
#memo-acf-form .acf-field + .acf-field.acf-field-true-false {
	margin-top: 60px;
}
#memo-acf-form .acf-field-text,
#memo-acf-form .acf-field-radio {
	display: flex;
	align-items: flex-start;
}
#memo-acf-form .acf-field-text .acf-label,
#memo-acf-form .acf-field-radio .acf-label {
	width: 80px;
	padding-right: 13px;
}
#memo-acf-form .acf-field-text .acf-label {
	position: static;
}
#memo-acf-form .acf-field-text .description {
	position: absolute;
	bottom: 0;
	left: 81px;
}
#memo-acf-form .acf-field-text .acf-input,
#memo-acf-form .acf-field-radio .acf-input {
	flex: 1;
}
#memo-acf-form .acf-field-text .acf-input {
	padding-bottom: 36px;
}
#memo-acf-form .acf-field-text input {
	height: 48px;
	font-size: 20px;
	padding: 5px 15px;
	border: 1px solid #b48f63;
	border-radius: 0;
}
#memo-acf-form .acf-label > label {
	font-size: 24px;
	font-weight: 700;
	line-height: 48px;
	color: #000;
	margin-bottom: 0;
}
#memo-acf-form .description,
#memo-acf-form .policy-list {
	font-size: 18px;
	font-weight: 500;
	line-height: 24px;
	color: #000;
	margin-top: 0;
}
#memo-acf-form .policy-list {
	font-size: 16px;
	list-style: disc;
	padding-left: 21px;
	margin-top: 11px;
	margin-bottom: 26px;
}
#memo-acf-form .acf-input-wrap + .description {
	margin-top: 12px;
}
#memo-acf-form .acf-true-false label {
	display: flex;
	align-items: center;
	column-gap: 18px;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	color: #000;
}
#memo-acf-form .acf-true-false input[type="checkbox"] {
	background: #fff;
	width: 36px;
	height: 36px;
	margin: 0;
	border: 2px solid #ccc;
	visibility: visible;
}
#memo-acf-form .acf-true-false input[type="checkbox"]:checked {
	background-color: #ccc;
	background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e") !important;
}
#memo-acf-form ul.acf-radio-list li label {
	display: inline-block;
	width: 42px;
	height: 42px;
	border: 3px solid transparent;
	border-radius: 50%;
	text-indent: -9999px;
	cursor: pointer;
}
#memo-acf-form ul.acf-radio-list li label.selected {
	border-color: #000;
}
#memo-acf-form .acf-form-submit {
	display: flex;
	column-gap: 18px;
	justify-content: center;
	align-items: center;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 5px solid var(--color-blue);
}
#memo-acf-form .acf-form-submit .acf-button {
	width: 200px;
	height: 64px;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	background: var(--color-blue);
	border: none;
	border-radius: 64px;
}

/* intro */
.page-intro {
	padding: 180px 0;
	text-align: center;
}
.page-intro .container {
	width: 752px;
	max-width: 100%;
}
.page-intro .desc-wrap {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	line-height: 64px;
	color: #5e5454;
}
.page-intro .intro-logo-wrap {
	position: sticky;
	top: 0;
	width: 100%;
	padding: 48px 0;
	margin: 88px auto 102px auto;
	background: linear-gradient(
		180deg,
		var(--color-background) 76%,
		transparent 100%
	);
	z-index: 1;
}
.page-intro .intro-logo-wrap img {
	width: 222px;
}
.page-intro #imgIntro-1 {
	position: absolute;
	top: 0;
	left: -111px;
	width: 136px;
	z-index: 2;
}
.page-intro #imgIntro-2 {
	position: absolute;
	top: calc(100% - 200px);
	right: -240px;
	width: 326px;
	z-index: 2;
}
.page-intro #imgIntro-3 {
	position: absolute;
	bottom: calc(100% + 14px);
	left: -137px;
	width: 170px;
	z-index: 2;
}
.page-intro #imgIntro-4 {
	position: absolute;
	bottom: -36px;
	left: -157px;
	width: 240px;
	z-index: 2;
}
.page-intro #imgIntro-5 {
	position: absolute;
	bottom: -32px;
	right: -167px;
	width: 250px;
	z-index: 2;
}
.page-intro .intro-content-img {
	margin: 280px 0;
}
.page-intro .progress-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 14px;
	background: #d9d9d9;
	z-index: 100;
}
.page-intro .progress-bar .bar {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background: var(--color-brand);
}
#logoPjc {
	position: fixed;
	top: 33px;
	left: 40px;
	width: 93px;
	z-index: 100;
}
#goToBoard {
	position: fixed;
	bottom: 60px;
	right: 30px;
	display: block;
	width: 110px;
	height: 110px;
	font-size: 20px;
	font-weight: 900;
	line-height: 110px;
	color: #fff;
	background: var(--color-brand);
	border-radius: 50%;
	text-align: center;
	z-index: 100;
}
#goToBoard.is-end {
	animation: blink 1s ease-in-out infinite;
}
#goToBoard.top {
	top: 30px;
	bottom: auto;
}
@keyframes blink {
	0% {
		background-color: var(--color-brand);
	}
	50% {
		background-color: var(--color-background);
	}
	100% {
		background-color: var(--color-brand);
	}
}

/* list */
body.post-type-archive-memo .site-main {
	padding-bottom: 150px;
}
body.post-type-archive-memo .site-main .container {
	width: 672px;
	max-width: 100%;
}
.archive-list {
	border-top: 3px solid var(--color-purple);
}
.archive-list .item {
	display: flex;
	align-items: center;
	column-gap: 18px;
	padding: 0 15px 0 20px;
	border-bottom: 1px solid var(--color-purple);
}
.archive-list .back {
	width: 17px;
	height: 17px;
	border: 1px solid transparent;
	border-radius: 50%;
}
.archive-list .back.is-white {
	border-color: #000;
}
.archive-list .content {
	width: 55%;
	font-size: 18px;
	font-weight: 900;
	line-height: 50px;
	color: #000;
}
.archive-list .name {
	font-size: 14px;
	font-weight: 700;
	line-height: 50px;
	color: #333;
}
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 8px;
	padding: 0 30px;
	margin-top: 36px;
}
.nav-links .page-numbers {
	width: 40px;
	height: 40px;
	font-size: 18px;
	font-weight: 900;
	line-height: 40px;
	color: #8980b3;
	background: #fff;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 5px;
	text-align: center;
}
.nav-links .page-numbers.current {
	color: #fff;
	background: #8980b3;
}
.nav-links .prev,
.nav-links .next {
	text-indent: -9999px;
}
.nav-links .prev {
	background-image: url('data:image/svg+xml,<svg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 1.5L3 9L10 16.5" stroke="%238980B3" stroke-width="3"/></svg>');
}
.nav-links .next {
	background-image: url('data:image/svg+xml,<svg width="12" height="18" viewBox="0 0 12 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 1.5L9 9L2 16.5" stroke="%238980B3" stroke-width="3"/></svg>');
}
.lp {
	display: block;
	overflow: hidden;
	margin: 64px 0;
}

/* landing */
.landing-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100vh;
	padding: 20px;
}
.landing-wrap img {
	width: 538px;
}

/* media */
/* pc */

@media screen and (min-width: 769px) {
	.board-item {
		margin-left: 0 !important;
	}
	.mo-btn-search {
		display: none;
	}
}
/* mo */
@media screen and (max-width: 768px) {
	/* common */
	.site-header {
		align-items: flex-start;
		padding: 16px 16px 86px 16px;
		font-size: 14px;
	}
	.site-title {
		top: 30px;
		transform: translate(-50%, 0);
		width: 145px;
	}
	.header-left > a {
		width: 60px;
		margin-top: 4px;
	}
	.header-left form {
		position: absolute;
		bottom: 50px;
		left: 0;
		width: 100%;
		text-align: center;
	}
	.header-left form:before {
		content: "";
		position: absolute;
		top: 7px;
		left: 16px;
		width: calc(100% - 32px);
		height: 1px;
		background: #000;
		z-index: -1;
	}
	.header-left form:not(.open) .input-wrap {
		display: none;
	}
	.header-left form .input-wrap {
		position: absolute;
		top: -11px;
		right: 51px;
		width: calc(100% - 67px);
		margin: 0;
		z-index: 1;
	}
	.header-left .input-wrap input {
		width: 100%;
		height: 35px;
		font-size: 12px;
		padding: 5px 33px 5px 12px;
		border-radius: 0;
	}
	.header-left .input-wrap button {
		top: 9px;
		right: 13px;
		width: 16px;
	}
	.header-left form p {
		display: inline-block;
		padding: 0px 13px;
		background: var(--color-background);
		text-align: center;
	}
	.header-left .mo-btn-search {
		position: absolute;
		top: -11px;
		right: 16px;
		width: 35px;
		height: 35px;
		background: #000;
		border-radius: 50%;
	}

	.header-right {
		width: 80px;
	}
	.header-right .item-wrap {
		flex-direction: column-reverse;
		row-gap: 6px;
	}
	.header-right .item-wrap .item {
		width: 80px;
		height: 80px;
		line-height: 80px;
		font-size: 16px;
		border-radius: 8px;
	}
	.header-right .item-wrap .item.item-share {
		height: 40px;
		line-height: 40px;
	}
	.header-right .item-list {
		display: none;
	}
	.item-share-wrap .share-list,
	.item-share-wrap .share-list button {
		font-size: 12px;
	}
	.item-share-wrap .share-list {
		bottom: -70px;
		width: 80px;
		height: auto;
		padding: 3px;
	}

	/* intro */
	.page-intro {
		padding: 80px 0 250px 0;
	}
	.page-intro .desc-wrap {
		font-size: 16px;
		line-height: 42px;
	}
	.page-intro .intro-logo-wrap {
		width: calc(100% + 32px);
		padding: 30px 0;
		margin: 60px -16px;
		background: linear-gradient(
			180deg,
			var(--color-background) 82%,
			transparent 100%
		);
	}
	.page-intro .intro-logo-wrap img {
		width: 145px;
	}
	.page-intro #imgIntro-1 {
		top: 50px;
		left: -14px;
		width: 64px;
	}
	.page-intro #imgIntro-2 {
		top: calc(100% - 20px);
		right: 0%;
		width: 200px;
		z-index: 0;
	}
	.page-intro .intro-content-img {
		margin: 220px 0;
	}
	.page-intro #imgIntro-3 {
		left: -16px;
		width: 100px;
		z-index: 0;
	}
	.page-intro #imgIntro-4 {
		bottom: -240px;
		left: -11px;
		width: 180px;
	}
	.page-intro #imgIntro-5 {
		bottom: -240px;
		right: -11px;
		width: 180px;
	}
	.page-intro .progress-bar {
		height: 10px;
	}
	#logoPjc {
		top: 20px;
		left: 16px;
		width: 60px;
	}
	#goToBoard {
		bottom: 36px;
		right: 16px;
		width: 80px;
		height: 80px;
		font-size: 16px;
		line-height: 80px;
	}
	#goToBoard.top {
		top: 20px;
	}

	/* board */
	.page-board {
		background-size: auto 340px;
		background-position: center 229px;
		background-attachment: fixed;
		overflow: hidden;
	}
	.page-board > .container {
		padding: 0;
	}
	.slide-inner {
		row-gap: 5px;
		height: 100%;
		padding: 10px;
		overflow: hidden;
	}
	.line-wrapper {
		gap: 5px;
		flex-direction: column;
		justify-content: center;
	}
	.board-item {
		padding: 12px 10px;
		transform: none !important;
	}
	.board-item .text {
		font-size: 16px;
	}
	.board-item .name {
		font-size: 10px;
	}
	.slide-inner > img {
		bottom: auto;
		top: 95px;
		right: auto;
		left: calc(50vw - 20px);
		max-width: none;
		width: auto;
		height: 341px;
	}
	.slide-inner > img:first-of-type {
		left: auto;
		right: calc(50vw - 20px);
	}
	.swiper-button-next,
	.swiper-button-prev {
		position: fixed;
		width: 36px;
		height: 68px;
	}
	.swiper-button-prev {
		left: 16px;
	}
	.swiper-button-next {
		right: 16px;
	}

	/* add */
	body.page-add .site-main {
		padding-top: 120px;
	}
	body.page-add .add-title {
		font-size: 28px;
	}
	body.page-add .add-desc {
		font-size: 14px;
		line-height: 20px;
		margin-top: 25px;
	}
	#memo-acf-form .acf-label > label {
		font-size: 18px;
		line-height: 36px;
	}
	#memo-acf-form .acf-field-text .acf-label,
	#memo-acf-form .acf-field-radio .acf-label {
		width: 65px;
	}
	#memo-acf-form .acf-field-text .description {
		left: 65px;
	}
	#memo-acf-form .acf-field-text .acf-input {
		padding-bottom: 28px;
	}
	#memo-acf-form .description,
	#memo-acf-form .policy-list {
		font-size: 12px;
		line-height: 16px;
	}
	#memo-acf-form .acf-field-text input {
		height: 36px;
		font-size: 14px;
		padding: 5px 10px;
	}
	#memo-acf-form .acf-field + .acf-field {
		margin-top: 20px;
	}
	#memo-acf-form .acf-field + .acf-field.acf-field-true-false {
		margin-top: 30px;
	}
	ul.acf-radio-list.acf-hl li,
	ul.acf-checkbox-list.acf-hl li {
		margin-right: 10px;
		margin-bottom: 10px;
	}
	#memo-acf-form ul.acf-radio-list li label {
		width: 30px;
		height: 30px;
	}
	#memo-acf-form .acf-true-false label {
		column-gap: 10px;
		font-size: 14px;
	}
	#memo-acf-form .acf-true-false input[type="checkbox"] {
		width: 25px;
		height: 25px;
	}
	#memo-acf-form .acf-form-submit .acf-button {
		width: 120px;
		height: 50px;
		font-size: 18px;
	}

	/* list */
	body.post-type-archive-memo .site-main {
		padding-bottom: 80px;
	}
	.archive-list .item {
		padding: 0 10px;
	}
	.archive-list .back {
		width: 12px;
		height: 12px;
	}
	.archive-list .content {
		font-size: 14px;
		line-height: 40px;
	}
	.archive-list .name {
		font-size: 12px;
		line-height: 40px;
	}
	.nav-links {
		margin-top: 30px;
	}
	.nav-links .page-numbers {
		width: 30px;
		height: 30px;
		font-size: 14px;
		line-height: 30px;
		background-size: 10px auto;
	}
}

