/* Spoqa Han Sans Neo font */
@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);

a {color: #fff; text-decoration: none; outline: none} a:hover, a:active {text-decoration: none; color:#fff; background-color:#f59000;}

/* Basic */
* {
    margin: 0;
    padding: 0;
    border: 0;

    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';
    color: #262626;
    font-weight: 400;

    font-size: 1em;
    min-height: 100%;
    zoom: 1;
}


a {
    color: #191919;
    text-decoration: none;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}
p{
    font-size: 1em;
}

input::placeholder {
    color: #adadad;
}

textarea::placeholder {
    color: #adadad;
}


/* ****************** btn style ****************** */

button:focus{
    box-shadow: none !important;
}

.btn {
    padding: 0 20px;
    line-height: 40px;
    transition: all 0.5s;
    box-sizing: border-box;
}

.btn-normal{
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    border-radius: 8px;
}
.btn-medium{
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    border-radius: 10px;
}
.btn-large{
    font-weight: 600;
    font-size: 18px;
    line-height: 48px;
    border-radius: 15px;
}

.btn-orange {
    background-color: #FF900D;
    color: #ffffff;
}
.btn-orange:hover,
.btn-orange:focus {
    background-color: #FF820E;
    color: #ffffff;
}









/* ****************** header ****************** */

/* ****************** Header - navbar ****************** */
header{
    width: 100%;
    height: auto;
    z-index: 100;
    background-color: #ffffff;
    border-bottom: 1px solid #E4E8F1;
}
header nav{
    padding: 0 !important;
}
header .container-fluid{
    display: grid !important;
    justify-content: center;
    grid-template-columns: 1fr;
    padding: 0;
}
header .navbar-brand{
    background-image: url('../img/logo.png');
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 77px;
    width: 100px;
    height: 77px;
    padding: 0;
    margin: 30px auto 24px;
}


header.navbar-toggler:focus{
    box-shadow: none;
}

header .offcanvas{
    color: #262626;
    width: 100%;
    border-top: 2px solid #FF900D;
}
header .offcanvas-header{
    border-bottom: 1px solid #E4E8F1;
    padding: 0;
    height: 50px;
}
header .offcanvas-header .btn-close{
    background-color: #FF900D;
    opacity: 1;
    border-radius: 0;
    height: inherit;
    padding: 0;
    width: 50px;
    background-image: url('../img/btn-close.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-size: 30px;
}
header .offcanvas-body{
    justify-content: center;
}

header .navbar-nav{
    gap: 80px;
}
header .navbar-nav li{
    height: 70px;
}
header .navbar-nav li a{
    color: #262626;
    font-size: 18px;
    padding: 0;
    line-height: 67px;
}
header .navbar-nav li.active a,
header .navbar-nav li a:hover{
    border-bottom: 4px solid #FF900D;
    color: #FF900D;
}

.top-lang{
    width: 100%;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    position: absolute;
    top: 15px;
    right: 50px;
}
.top-lang a{
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    display: flex;
    align-items: center;
    color: #5B5B5B;
}
.top-lang a:hover{
    color: #2087FF;
    text-decoration: underline;
}
.top-lang span{
    width: 1px;
    height: 10px;
    background: #E9E9E9;
    display: inline-block;
}








/* ****************** footer ****************** */
.footer{
    height: 150px;
    background: #F5F5F5;
    margin-top: auto!important;
    background-color: #424242;
}
.footer .container{
    height: inherit;
    position: relative;
}
.footer .link-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer .copyright{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: -0.02em;
    color: #E9E9E9;
    position: absolute;
    bottom: 65px;
    left: 0;
    right: 0;
    z-index: 0;
}

.footer .sns-link{
    display: flex;
    gap: 30px;
    align-items: center;
}
.footer .sns-link .symbol{
    height: 30px;
    width: 30px;
    
}
.footer .sns-link .symbol img{
    object-fit: contain;
}
.footer .sns-link span{
    width: 1px;
    height: 10px;
    background: rgba(233,233,233,0.5);
    display: inline-block;
}

.footer .sns-link a{
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
    z-index: 10;
}
.sns-link .icon-facebook{
    background-image: url('../img/sns/facebook_d.png');
}
.sns-link .icon-instagram{
    background-image: url('../img/sns/instagram_d.png');
}
.sns-link .icon-youtube{
    background-image: url('../img/sns/youtube_d.png');
}
.sns-link .icon-blog{
    background-image: url('../img/sns/naver-blog_d.png');
}

.sns-link .icon-facebook:hover{
    background-image: url('../img/sns/facebook_a.png');
}
.sns-link .icon-instagram:hover{
    background-image: url('../img/sns/instagram_a.png');
}
.sns-link .icon-youtube:hover{
    background-image: url('../img/sns/youtube_a.png');
}
.sns-link .icon-blog:hover{
    background-image: url('../img/sns/naver-blog_a.png');
}



/* ****************** 00 공통요소 ****************** */
.contents{
    padding-bottom: 150px;
}

.cont-title{
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 80px 0 100px;
    gap: 15px;
}
.dott-b{
    width: 10px;
    height: 10px;
    background-color: #FF900D;
    display: inline-block;
}
.cont-title h2{
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    align-items: center;
    text-align: center;
    letter-spacing: -0.02em;
    text-transform: none ;
    color: #424242;
}
.cont-title p{
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5B5B5B;
}



/* pagination */
.paging-wrap {
    margin-top: 50px;
}
.paging-wrap ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.paging-wrap ul li a{
    font-weight: 400;
    font-size: 14px;
	width: 30px;
	height: 30px;
    color: #A9A9A9;
    display: grid;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 30px;
}
.paging-wrap ul li:hover a,
.paging-wrap ul li.active a{
    background-color: #FF900D;
    color: #ffffff;
}

.paging-wrap ul li.prev a,
.paging-wrap ul li.next a{
    background-position: center;
    background-repeat: no-repeat;
    background-size: 30px;
}
.paging-wrap ul li.prev a{
    background-image: url('../img/paging-prev-dis.png');
}
.paging-wrap ul li.next a{
    background-image: url('../img/paging-next-dis.png');
}
.paging-wrap ul li.prev a:hover,
.paging-wrap ul li.prev a.active{
    background-image: url('../img/paging-prev.png');
    background-color: transparent;
}
.paging-wrap ul li.next a:hover,
.paging-wrap ul li.next a.active{
    background-image: url('../img/paging-next.png');
    background-color: transparent;
}


/* search-form */
.search-form{
    display: flex;
    position: relative;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 25px;
}
.search-form input {
    padding: 12px;
    width: 306px;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #E9E9E9;
    border-radius: 15px;
    color: #262626;
    transition: all .2s ease-in-out;
    padding-right: 48px;
}

input:focus{
    border: 1px solid #FF900D;
    outline: 0;
}

.btn-search{
    background-image: url('../img/btn-search.png');
    background-repeat: no-repeat;
    background-size: 24px;
    background-position: center;
    font-size: 0;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0;
    top: 0;
}

.page-banner{
    width: 100%;
    min-height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.page-banner p{
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.25);
}
.page-banner .banner-symbol{
    width: 40px;
    height: 40px;
    margin-bottom: 40px;
    display: inline-block;

}
.page-banner h2{
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 500;
    font-size: 40px;
    line-height: 52px;
}




/* ****************** 01 홈 ****************** */
.main-banner{
    min-height: 800px;
    background-image: url('../img/banner/main-banner.png');
}
.main-banner h2{
    font-weight: 500;
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 0;
}
.main-banner .line{
    width: 1px;
    height: 100px;
    background-color: #D9D9D9;
    margin: 50px 0;
    display: inline-block;
}







/* ****************** 02 산티아고 소개 ****************** */
.page-banner.santiago-b{
    background-image: url('../img/banner/santiago-banner_02.png');
}


.thumb-group{
    display: grid;
    gap: 120px;
    margin-bottom: 100px;
}
.photo-thumb {
    position: relative;
    border: none;
    border-radius: 0;
}

.thumb-txt {
    z-index: 2;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.65);
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    padding: 10px 12px;
}

.thumb-desc{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 0 0 20px;
    gap: 30px;
    height: 100%;
}
.thumb-desc.right{
    padding: 0 20px 0 0;
}
.thumb-desc .line{
    display: inline-block;
    background-color: #FF900D;
    width: 50px;
    height: 4px;
}
.thumb-desc p{
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #424242;
}

.video-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-box video,
.video-box img{
    width: 100%;
}



/* ****************** 03 제주올레 소개 ****************** */
.page-banner.jejuolle-b{
    background-image: url('../img/banner/jejuolle-banner.png');
}










/* ****************** 04 완주 소개 ****************** */
.page-banner.completion-b{
    background-image: url('../img/banner/completion-banner.png');
}

.joint-explanation{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.joint-explanation img{
    width: 150px;
    height: 150px;
    margin: 40px 0;
}
.joint-explanation p{
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #424242;
}


.certificate-desc{
    margin: 80px 0 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.certificate-desc li{ 
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.certificate-desc li::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 5px;
    background-color: #FF900D;
    position: absolute;
    left: 0;
    top: 11px;
}
.certificate-desc p{
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #424242;
}
.certificate-desc span{
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #424242;
}


.curious-box{
    display: flex;
    flex-direction: column;
    padding: 60px 0px;
    gap: 40px;
    background-color: #f9f9f9;
}
.curious-box .cont-title{
    padding: 0;
}
.curious-box .dott-b{
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border: 3px solid #FF900D;
    background-color: transparent;
}
.curious-box .certificate-desc{
    margin: 0;
}




/* ****************** 05 명예의전당 ****************** */
.hall-of-fame-group{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}
.hall-of-fame-group .frame{
    border: 1px solid #E9E9E9;
    overflow: hidden;
    display: grid;
    gap: 24px;
}
.hall-of-fame-group .frame:hover{
    border: 1px solid #FF900D;
    transition: all 1s;
}
.frame .photo-box{
    width: 100%;
    height: 306px;
    overflow: hidden;
    position: relative;
}

.frame .photo-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.frame .photo-box .flag{
    position: absolute;
    right: 10px;
    bottom: 10px;
}


.flag{
    width: 35px;
    height: 25px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 35px 25px;
    display: inline-block;
}
.flag.kr{
    background-image: url('../img/flag-kr.png');
}
.flag.es{
    background-image: url('../img/flag-es.png');
}
.flag.us{
    background-image: url('../img/flag-us.png');
}

.frame .name{
    display: flex;
    gap: 5px;
    justify-content: center;
}
.frame .name span{
    color: #2C2E2C;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.record-box{
    width: calc(100% - 20px);
    margin: 0 auto 10px;
}
.record-tit{
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: #ffffff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 18px;
    gap: 12px;
    line-height: 34px;
    background: #5B5B5B;
}
.record-tit img{
    height: 20px;
}

.record-list li{
    display: flex;
    gap: 15px;
    height: 30px;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    text-transform: none ;
    border-bottom: 1px solid #E9E9E9;
}
.frame .record-list li:last-child{
    border-bottom: none;
}
.record-list .label{
    color: #A9A9A9;
    width: 66px;
    font-size: 13px;
    text-align: left;
    padding-left: 15px;
}
.record-list .line{
    width: 1px;
    height: 8px;
    background-color: #BDBDBD;
    display: inline-block;
}
.record-list .date{
    color: #5B5B5B;
}


/* modal */
.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,27,29,0.7);
    transition: all 0.2s;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    display: grid;
    justify-items: center;
    align-items: center;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup-container {
    background: #ffffff;
    width: 856px;
    position: relative;
    transition: all 1s;
}

.popup-header{
    height: 60px;
}
.popup-header .title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: inherit;
}
.popup-header span{
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #2C2E2C;
}
.popup-header .close {
    position: absolute;
    top: 0;
    right: 0;
    transition: all 200ms;
    background-image: url('../img/btn-close.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    background-color: #FF900D;
    width: 60px;
    height: 60px;
}

.popup-body .photo-box{
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.popup-body .photo-box img{
    width: 100%;
    height: 100%;
	/*
    object-fit: cover;
	*/
    object-fit: contain;
    object-position: center center;
}

.popup-body .record-group{
    display: flex;
    padding: 24px;
    gap: 24px;
}
.popup-body .record-box{
    width: 100%;
    margin: 0;
}


.popup-footer{
    padding: 10px 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-footer .btn{
    min-width: 200px;
}



/* ****************** 06 문의처 ****************** */
.contact-explanation{
    position: relative;
}

.contact-explanation.border-right::after{
    content: '';
    display: inline-block;
    border-right: 1px solid #E9E9E9;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.explanation-img{
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-explanation h3{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.02em;
    text-transform: none ;
    color: #2C2E2C;
    text-align: center;
}
.contact-explanation .explanation-desc{
    display: grid;
    gap: 30px;
    padding-left: 30px;
}

.contact-explanation .txt-group .label{
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #5B5B5B;
    margin-bottom: 5px;
}
.contact-explanation .txt-group .label::before{
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #FF900D;
    position: absolute;
    left: 0;
    top: 7px;
}
.contact-explanation .txt-group ul{
    margin-bottom: 30px;
}
.contact-explanation .txt-group ul li{
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: -0.02em;
    color: #5B5B5B;
    padding-left: 18px;
}
.contact-explanation .txt-group ul.dot-list li{
    position: relative;
    padding-left: 28px;
}
.contact-explanation .txt-group ul.dot-list li::before{
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background-color: #5B5B5B;
    position: absolute;
    left: 17px;
    top: 14px;
}
.contact-explanation .txt-group ul li a:hover{
    color: #FF900D;
    text-decoration: underline;
}

.txt-group .sns-link{
    display: flex;
    gap: 30px;
    margin: 20px 0 0 !important;
}
.txt-group .sns-link li{
    padding: 0 !important;
}
.txt-group .sns-link li a{
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    width: 30px;
    height: 30px;
}
.txt-group .sns-link .icon-facebook{
    background-image: url('../img/sns/facebook_g.png');
}
.txt-group .sns-link .icon-instagram{
    background-image: url('../img/sns/instagram_g.png');
}
.txt-group .sns-link .icon-youtube{
    background-image: url('../img/sns/youtube_g.png');
}
.txt-group .sns-link .icon-blog{
    background-image: url('../img/sns/naver-blog_g.png');
}

.txt-group .sns-link .icon-facebook:hover{
    background-image: url('../img/sns/facebook_a.png');
}
.txt-group .sns-link .icon-instagram:hover{
    background-image: url('../img/sns/instagram_a.png');
}
.txt-group .sns-link .icon-youtube:hover{
    background-image: url('../img/sns/youtube_a.png');
}
.txt-group .sns-link .icon-blog:hover{
    background-image: url('../img/sns/naver-blog_a.png');
}


.santiago_div{
	position: absolute;
	top:25px;
	width: 400px;
	height:50px;
	border:0px solid #fff;
	left:4px;
}
.santiago_div img{
			
}


/** custom css */
[v-cloak] {
    display: none;
}





























