@charset "utf-8";

/*-------------------------------------------------
Title       : Main
-------------------------------------------------*/

/* --- Root --- */
:root{
    --color-cert: #2C6B2F; /* 산림청 인증 프로그램 */
    --color-neulbom: #dd2f4f; /* 늘봄 프로그램 */
    --color-school: #003e8a; /* 학교연계 프로그램 */
    --color-normal: #5D4037; /* 일반 프로그램 */
}

/* --- Main Common --- */
#container {
    margin-bottom: 6rem;
}

h3 {
    font-size: 2.8rem;
    margin-bottom: 1.6rem;
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--color-gray-10);
}

.btn-more:hover {
    transform: rotate(360deg);
    background: var(--color-gray-20);
}

@media screen and (max-width: 1023px) {
	.btn-more {
		width: 3.2rem;
		height: 3.2rem;
	}
}


/* --- Visual --- */
.visual-wrap {
    padding-top: 4rem;
    background-color: #e6f3e0;
    background-image:
        url(/images/main/visual_bg1.png),
        url(/images/main/visual_bg2.png),
        url(/images/main/visual_bg3.png),
        url(/images/main/visual_bg4.png);
    background-position:
        top left,
        top right,
        bottom left,
        bottom right;
    background-size:
        24rem,
        28rem,
        10rem,
        10rem;
    background-repeat: no-repeat;
    overflow: hidden;
}

.visual-wrap .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.visual-wrap .txt-wrap {
    padding-top: 1.2rem;
    position: relative;
    width: 100%;
    height: calc(45rem - 4rem);
}

.visual-wrap .txt-wrap .title {
    font-weight: 700;
    font-size: 4.8rem;
    line-height: 1.3;
    word-break: keep-all;
}

.visual-wrap .txt-wrap .title strong {
    color: #006e6b;
}

.visual-wrap .txt-wrap .text {
    margin-top: 4rem;
    color: #554546;
}

.visual-wrap .txt-wrap img {
    width: 68rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

.visual-wrap .shortcut-wrap {
    display: flex;
    gap: 2.8rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.visual-wrap .shortcut-wrap > li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
}

.visual-wrap .shortcut-wrap > li a .icon {
    width: 10rem;
    height: 10rem;
    background: #0e955c;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.visual-wrap .shortcut-wrap > li a .icon::after {
    content: '';
    display: block;
    width: 5rem;
    height: 5rem;
    background: url(/images/main/icon_shortcut.png);
    background-repeat: no-repeat;
    background-size: 100%;
    transition: var(--transition-base);
}

.visual-wrap .shortcut-wrap > li a .icon01::after {
    background-position: 0 0;
}

.visual-wrap .shortcut-wrap > li a .icon02::after {
    background-position: 0 -5rem;
}

.visual-wrap .shortcut-wrap > li a .icon03::after {
    background-position: 0 -10rem;
}

.visual-wrap .shortcut-wrap > li a .icon04::after {
    background-position: 0 -15rem;
}

.visual-wrap .shortcut-wrap > li a .icon05::after {
    background-position: 0 -20rem;
}

.visual-wrap .shortcut-wrap > li a:hover .icon {
    background: #0c8251;
    border: 0.2rem solid #fff;
}

.visual-wrap .shortcut-wrap > li a:hover .icon::after {
    transform: scale(1.1);
}

@media screen and (max-width: 1599px) {
	.visual-wrap .inner {
		width: calc(100% - 20rem);
	}
}

@media screen and (max-width: 1439px) {
	.visual-wrap {
		background-position: top left -10rem,
        top right -4rem,
        bottom left -4rem,
        bottom right -2rem;
	}
	
	.visual-wrap .inner {
		width: calc(100% - 10rem);
	}
	
	.visual-wrap .txt-wrap img {
		width: 48%;
	}
	
	.visual-wrap .shortcut-wrap {
		gap: 2rem;
	}
}

@media screen and (max-width: 1023px) {
	.visual-wrap {
		padding-top: 2rem;
		background-image: none;
	}
	
	.visual-wrap .inner {
		width: 100%;
	}
	.visual-wrap .txt-wrap {
		height: auto;
		text-align: right;
	}
	
	.visual-wrap .txt-wrap .title {
		font-size: 3.8rem;
		text-align: left;
	}
	
	.visual-wrap .txt-wrap .title br {
		display: none;
	}
	
	.visual-wrap .txt-wrap .text {
		margin-top: 2rem;
		text-align: left;
	}
	
	.visual-wrap .shortcut-wrap > li a .icon {
		width: 8rem;
		height: 8rem;
	}
	
	.visual-wrap .shortcut-wrap > li a .icon::after {
		transform: scale(0.8);
	}
	
	.visual-wrap .shortcut-wrap > li a:hover .icon::after {
	    transform: scale(0.9);
	}
	
	.visual-wrap .txt-wrap img {
		position: static;
		margin-top: 2rem;
		width: 80%;
	}
}

@media screen and (max-width: 767px) {
	.visual-wrap .txt-wrap .title {
		font-size: 3.2rem;
	}
	
	.visual-wrap .txt-wrap .text {
		font-size: 1.5rem;
	}
	
	.visual-wrap .shortcut-wrap {
		gap: 1.2rem;
	}
	
	.visual-wrap .shortcut-wrap > li a .icon {
		width: 7rem;
		height: 7rem;
	}
}


/* --- Program ---*/
.prg-wrap {
    margin-top: 4rem;
}

.prg-wrap .inner {
    position: relative;
}

.prg-wrap .inner h3 {
    margin-bottom: 1.2rem;
}

.prg-wrap .prg-list {
    display: flex;
    padding: 1.2rem 0;
}

.prg-wrap .prg-list .prg-item {
    width: 100%;
    border-radius: 1.2rem;
    padding: 0 0.2rem;
}

.prg-wrap .prg-list .prg-item > a {
    display: block;
    width: 100%;
    padding: 0.8rem 0.8rem 1.2rem;
    border-radius: 1.2rem;
    border: 0.3rem solid #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.prg-wrap .prg-list .prg-item > a:hover {
    border-color: var(--color-secondary-50);
    background-color: var(--color-secondary-5);
}

.prg-wrap .prg-list .prg-item > a:focus {
    outline-offset: -0.4rem;
    box-shadow: inset 0 0 0 0.4rem var(--color-gray-50);
}

.prg-item .card-thumbnail {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 1.2rem;
    background: var(--color-gray-5);
    border: 0.1rem solid var(--color-gray-10);
}

.prg-item .card-thumbnail .cert-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0.8rem;
    right: 0.8rem;
    position: absolute;
    background: rgba(255, 255, 255, .9);
    width: 6rem;
    padding: 0.4rem 0;
    border-radius: 0.4rem;
}

.prg-item .card-thumbnail .cert-logo > img {
    width: 80%;
}

.prg-item .card-thumbnail > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prg-item .card-body {
    position: relative;
    padding: 2rem 0.4rem 0 0.4rem;
}

.prg-item .card-body .badge {
    position: absolute;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.2rem 0.8rem;
    border-radius: 0.4rem;
    left: 1.6rem;
    top: -1.6rem;
    display: flex;
    gap: 0.4rem;
}

.prg-item .card-body .badge.bg-cert {
    background: var(--color-cert);
}

.prg-item .card-body .badge.bg-neulbom {
    background: var(--color-neulbom);
}

.prg-item .card-body .badge.bg-school {
    background: var(--color-school);
}

.prg-item .card-body .badge.bg-normal {
    background: var(--color-normal);
}

.prg-item .card-body .badge img {
    width: 1.6rem;
}

.prg-item .card-body .c-address {
    font-size: 1.5rem;
    color: var(--color-text-subtle);
} 

.prg-item .card-body .c-tit {
    font-size: 1.7rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
} 

.prg-item .card-body .c-info {
    margin-top: 0.8rem;
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
}

.prg-item .card-body .c-info li {
    position: relative;
    padding-left: 1.2rem;
    display: flex;
    gap: 0.8rem;
}

.prg-item .card-body .c-info li::before {
    content: '';
    display: block;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 50%;
    background: var(--color-secondary-50);
    position: absolute;
    top: 0.8rem;
    left: 0;
}

.prg-item .card-body .c-info li .title {
    color: var(--color-secondary-70);
    font-weight: 700;
}

.prg-item .card-body .c-info li .text {
    letter-spacing: -0.04em;
}

.prg-wrap .btn-wrap {
    position: absolute;
    top: 0;
    right: 2.4rem;
}

.prg-chip-area {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.prg-chip-area input[type=radio],
.prg-chip-area input[type=checkbox] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.prg-chip-area .form-chip input[type=radio] ~ label,
.prg-chip-area .form-chip input[type=checkbox] ~ label {
    display: flex;
    align-items: center;
    position: relative;
    gap: 0.4rem;
    padding: 0.6rem 2rem;
    background: var(--color-gray-10);
    border-radius: 10rem;
    cursor: pointer;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-gray-60);
    transition: var(--transition-base);
}

.prg-chip-area .form-chip input[type=radio] ~ label:hover,
.prg-chip-area .form-chip input[type=checkbox] ~ label:hover {
    background-color: var(--color-secondary-70);
    color: #fff;
}

.prg-chip-area .form-chip input[type=radio]:checked ~ label,
.prg-chip-area .form-chip input[type=checkbox]:checked ~ label {
    background-color: var(--color-secondary-70);
    color: #fff;
    text-decoration: underline;
    text-underline-position: under;
}

.prg-chip-area .div-line {
    width: 0.1rem;
    height: 2.4rem;
    background: var(--color-gray-30);
    transform: rotate(30deg);
    margin: 0 0.8rem;
}

.prg-slide {
    position: relative;
}

.prg-slide .swiper-button-prev {
    left: auto;
    right: calc(100% + 0.8rem);
    color: var(--color-gray-70);
    transform: scale(0.8);
}

.prg-slide .swiper-button-next {
    left: calc(100% + 0.8rem);
    right: 0;
    color: var(--color-gray-70);
    transform: scale(0.8);
}

.prg-wrap .box-nodata {
    padding: 12rem 0;
    text-align: center;
    background-image: url(/images/sub/box_nodata_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    border-radius: 1.2rem;
    border: 0.1rem solid var(--color-border);
}

.prg-wrap .box-nodata .tit {
    font-size: 2.8rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding: 0 0.8rem;
    z-index: 1;
}

.prg-wrap .box-nodata .tit::before {
    content: '';
    display: block;
    width: 100%;
    height: 2rem;
    background: var(--color-information-10);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.prg-wrap .box-nodata .tit strong {
    color: var(--color-information-70);
}

.prg-wrap .box-nodata .txt {
    margin-top: 1.2rem;
}

@media screen and (max-width: 1480px) {
	.prg-slide {
		padding: 0 2rem;
	}
	
	.prg-slide .swiper-button-prev {
		left: -1.6rem;
		right: auto;
	}
	
	.prg-slide .swiper-button-next {
	    left: auto;
	    right: -1.6rem;
	}
}

@media screen and (max-width: 1023px) {
	.prg-chip-area .form-chip input[type=radio] ~ label,
	.prg-chip-area .form-chip input[type=checkbox] ~ label {
		font-size: 15.rem;
		padding: 0.4rem 1.6rem;
	}
	
	.prg-slide {
		padding: 0;
	}
	
	.prg-wrap .prg-list .prg-item {
		width: 28rem;
	}
	
	.prg-slide .swiper-button-prev,
	.prg-slide .swiper-button-next {
	    display: none;
	}
}

@media screen and (max-width: 767px) {
	.prg-wrap .box-nodata {
		padding: 6rem 1.6rem;
	}
	
	.prg-wrap .box-nodata .tit {
		font-size: 1.9rem;
	}
	
	.prg-wrap .box-nodata .tit::before {
		display: none;
	}
	
	.prg-wrap .box-nodata .txt {
		font-size: 1.5rem;
		margin-top: 0;
	}
}


/* --- News ---*/
.news-wrap {
    margin-top: 4rem;
    background: var(--color-gray-5);
    padding: 4rem 0;
}

.news-wrap .inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.news-wrap .notice-wrap {
    position: relative;
    width: calc(100% - 38rem - 4rem);
}

.news-wrap .notice-list {
    display: flex;
    gap: 2rem;
}

.news-wrap .notice-list .notice-item {
    width: 100%;
}

.news-wrap .notice-list .notice-item a {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border: 0.3rem solid #fff;
    padding: 2.4rem;
    border-radius: 1.2rem;
    background: #fff;
}

.news-wrap .notice-list .notice-item a:hover {
    border-color: var(--color-secondary-50);
}

.news-wrap .notice-list .notice-item .notice-label {
    background-color: var(--color-information-10);
    color: var(--color-information-70);
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    font-size: 1.5rem;
    border-radius: 0.4rem;
}

.news-wrap .notice-list .notice-item .title {
    font-size: 1.9rem;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.85rem;
    height: 5.7rem;
}

.news-wrap .notice-list .notice-item .text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 2.55rem;
    height: 5.1rem;
}

.news-wrap .notice-list .notice-item .date {
    font-size: 1.5rem;
    color: var(--color-text-disabled);
}

.news-wrap .notice-wrap .btn-wrap {
    position: absolute;
    top: 0;
    right: 0;
}

.news-wrap .banner-wrap {
    width: 38rem;
    border: 0.1rem solid var(--color-border);
    border-radius: 1.2rem;
    padding: 2rem;
    background: #fff;
}

.news-wrap .banner-wrap .banner-top {
    display: flex;
    justify-content: space-between;
}

.news-wrap .banner-wrap .banner-top .title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.news-wrap .banner-wrap .banner-top .title h3 {
    font-size: 2.2rem;
    margin-bottom: 0;
}

.news-wrap .banner-wrap .banner-slide {
    margin-top: 1rem;
    height: calc(100% - 4.4rem);
}

.news-wrap .banner-wrap .banner-slide .swiper-slide {
    position: relative;
}

.news-wrap .banner-wrap .banner-slide .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

 .news-wrap .banner-wrap .banner-slide-util {
    display: flex;
    gap: 0.4rem;
}

.news-wrap .banner-wrap .swiper-pagination-current {
    font-weight: 700;
    color: var(--color-gray-90);
}

.news-wrap .banner-wrap .swiper-pagination-fraction {
    color: var(--color-text-disabled);
}

.news-wrap .banner-wrap [class^="banner-button"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-gray-10);
    cursor: pointer;
}

.news-wrap .banner-wrap [class^="banner-button"]:hover {
	background: var(--color-gray-20);
}

.news-wrap .banner-wrap .swiper-button-lock {
	display: none;
}

.news-wrap .banner-wrap .swiper-button-lock + button {
	display: none;
}

@media screen and (max-width: 1239px) {
	.news-wrap .notice-list .notice-item:nth-of-type(3) {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	.news-wrap .inner {
		flex-direction: column;
		gap: 2.4rem;
	}
	
	.news-wrap .notice-wrap {
		width: 100%;
	}
	
	.news-wrap .notice-list .notice-item:nth-of-type(3) {
		display: block;
	}
	
	.news-wrap .banner-wrap {
		width: 100%;
	}
	
	.news-wrap .banner-wrap .banner-slide {
		height: auto;
		aspect-ratio: 3 / 2;
	}
}

@media screen and (max-width: 767px) {
	.news-wrap .notice-list .notice-item:nth-of-type(3) {
		display: none;
	}
	
	.news-wrap .notice-list .notice-item a {
		padding: 1.6rem;
	}
}

@media screen and (max-width: 424px) {
	.news-wrap .notice-list .notice-item:nth-of-type(2) {
		display: none;
	}
}


/* --- Shortcut --- */
.shortcut-wrap {
    display: flex;
    gap: 2.4rem;
    margin-top: 2.4rem;
}

.shortcut-wrap .inner{
    display: flex;
    gap: 2.4rem;
    margin-top: 2.4rem;
}

.shortcut-wrap .shortcut-item {
    width: 100%;
    background: #eee;
    border-radius: 1.2rem;
}

.shortcut-wrap .shortcut-item.faq {
    background-color: #fce9e0;
    background-image: url(/images/main/icon_faq.png);
    background-repeat: no-repeat;
    background-size: auto 10rem;
    background-position: center right 3.2rem;
}

.shortcut-wrap .shortcut-item.counsel {
    background-color: #e2f3ed;
    background-image: url(/images/main/icon_counsel.png);
    background-repeat: no-repeat;
    background-size: auto 10rem;
    background-position: center right 3.2rem;
}

.shortcut-wrap .shortcut-item.stats {
    background-color: #ebebf4;
    background-image: url(/images/main/icon_stats.png);
    background-repeat: no-repeat;
    background-size: auto 10rem;
    background-position: center right 3.2rem;
}

.shortcut-wrap .shortcut-item > a {
    padding: 2rem 3.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
}

.shortcut-wrap .shortcut-item .title {
    font-size: 2.4rem;
    font-weight: 700;
}

.shortcut-wrap .shortcut-item .text {
    font-size: 1.5rem;
}

.shortcut-wrap .shortcut-item > a .btn {
    padding: 0.4rem 2rem;
    background: #fff;
    border-radius: 10rem;
    font-weight: 500;
    font-size: 1.5rem;
    transition: var(--transition-base);
}

.shortcut-wrap .shortcut-item > a:hover .btn{
    color: #F4F6F7;
}

.shortcut-wrap .shortcut-item.faq > a:hover .btn{
    background: #d05546;
}

.shortcut-wrap .shortcut-item.counsel > a:hover .btn{
    background: #1d946c;
}

.shortcut-wrap .shortcut-item.stats > a:hover .btn{
    background: #6954d6;
}

@media screen and (max-width: 1439px) {
	.shortcut-wrap .shortcut-item {
		background-size: auto 8rem !important;
		background-position: center right 2rem !important;
	}
	
	.shortcut-wrap .shortcut-item > a {
		padding: 2rem;
	}
}

@media screen and (max-width: 1239px) {
	.shortcut-wrap {
		margin-top: 1.6rem;
	}
	
	.shortcut-wrap .inner {
		flex-direction: column;
	}
	
	.shortcut-wrap .shortcut-item .text br {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.shortcut-wrap .shortcut-item .text br {
		display: block;
	}
}

@media screen and (max-width: 424px) {
	.shortcut-wrap .shortcut-item {
		background-size: auto 4rem !important;
		background-position: bottom 2rem right 2rem !important;
	}
}


/* --- Layer Popup --- */
.layer-popup-wrap {
	position: absolute;
	z-index: 99999;
	border-radius: 1.2rem;
	border: 0.3rem solid var(--color-gray-70);
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	overflow: hidden;
}

.layer-popup-body {
	min-width: 300px;
	max-width: 600px;
}

.layer-popup-body .img {
	overflow: hidden;
}

.layer-popup-body .img > a:focus {
	outline-offset: -0.4rem;
    box-shadow: inset 0 0 0 0.4rem var(--color-gray-50);
}

.layer-popup-body .txt {
	background: #fff;
	padding: 1.6rem 2rem;
	min-width: 50rem;
}

.layer-popup-bottom {
	background: var(--color-gray-70);
	color: #fff;
	display: flex;
}

.layer-popup-bottom button {
	width: 100%;
	padding: 0.8rem;
	position: relative;
}

.layer-popup-bottom button:after {
	content: '';
	display: block;
	width: 0.1rem;
	height: 50%;
	background: #fff;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	opacity: 0.5
}

.layer-popup-bottom button:last-of-type:after {
	display: none;
}

.layer-popup-bottom button:focus {
	outline-offset: -0.4rem;
    box-shadow: inset 0 0 0 0.4rem var(--color-gray-50);
}

@media screen and (max-width: 767px) {
	.layer-popup-wrap {
		top: 2rem !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
	}
	
    .layer-popup-body {
    	width: 90vw;
    	max-width: none;
    	min-width: auto;
    }
    
    .layer-popup-body .txt {
    	padding: 0.8rem 1.2rem;
    	min-width: auto;
    	word-break: break-all;
    }
}


/* --- Dropdown --- */
.dropdown-wrap {
    display: inline-block;
    position: relative;
}

.dropdown-list {
    background: #fff;
    border-radius: 0.6rem;
    display: none;
    position: absolute;
    z-index: 9999;
    border: 0.1rem solid var(--color-border);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
    top: calc(100% + 0.4rem);
    left: 0;
}

.dropdown-list > li {
    border-bottom: 0.1rem solid var(--color-border);
}

.dropdown-list > li:last-of-type {
    border-bottom: 0;
}

.dropdown-list > li > a {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    color: var(--color-gray-90);
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
}

.dropdown-list > li > a:hover {
    text-decoration: underline;
    text-underline-position: under;
}


/* --- Button --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 4.8rem;
    padding: 0 1.6rem;
    border-radius: 0.6rem;
    font-size: 1.7rem;
    transition: var(--transition-base);
}

.btn.primary {
    background: var(--color-primary-50);
    color: #fff;
}

.btn.primary:hover, 
.btn.primary:focus,
.btn.primary:active {
    background: var(--color-primary-60);
}

.btn.tertiary {
    background: #fff;
    color: var(--color-gray-90);
    border: 0.1rem solid var(--color-gray-60);
}

.btn.tertiary:hover, 
.btn.tertiary:focus,
.btn.tertiary:active {
    background: var(--color-gray-10);
}

.btn.secondary {
    background: var(--color-gray-70);
    color: #fff;
}

.btn.secondary:hover, 
.btn.secondary:focus,
.btn.secondary:active {
    background: var(--color-gray-80);
}

.btn.line-white {
    background: transparent;
    color: #fff;
    border: 0.1rem solid #fff;
}

.btn:disabled {
    opacity: 0.7;
    cursor: default;
}

.btn.xsmall {
    gap: 0.2rem;
    height: 3.2rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
}

.btn.small {
    gap: 0.2rem;
    height: 4rem;
    padding: 0 1.2rem;
    font-size: 1.5rem;
}

.btn.large {
    height: 5.6rem;
    padding: 0 2rem;
    border-radius: 0.8rem;
    font-size: 1.9rem;
}

.btn.xlarge {
    height: 6.4rem;
    padding: 0 2.4rem;
    border-radius: 0.8rem;
    font-size: 1.9rem;
}

.btn.text {
    height: auto;
    padding: 0 0.2rem;
}

button i {
    display: block !important;
}

.btn-wrap {
    display: flex;
    gap: 0.8rem;
}

.btn-wrap.center {
    justify-content: center;
}

.btn-page-wrap {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
}

.btn-page-wrap.center {
    justify-content: center;
}

@media screen and (max-width: 424px) {
    .btn-page-wrap {
        flex-direction: column;
    }

    .btn-page-wrap .btn {
       width: 100%;
    }
}


/* --- Input --- */
.form-input {
    width: 100%;
    height: 4.8rem;
    background: #fff;
    border-radius: 0.6rem;
    padding: 0 1.6rem;
    border: 1px solid var(--color-form-border);
    font-size: 1.7rem;
}

.form-input:read-only {
    background: var(--color-gray-5);
    border-color: var(--color-gray-30);
    color: var(--color-gray-80);
}

.form-input:disabled {
    background: var(--color-gray-10);
    border-color: var(--color-gray-30);
    color: var(--color-gray-60);
}

.form-input.large {
    height: 5.6rem;
    font-size: 1.9rem;
}

.form-input.small {
    height: 4rem;
    font-size: 1.5rem;
}

.form-input.xsmall {
    height: 3.2rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    font-size: 1.5rem;
}