:root {
  --f-title: 'impact', sans-serif;
  --blue: #002F55;
  --border-radius: 15px;
}
@font-face {
    font-family: 'impact';
    src: url("../fonts/UTM IMPACT.TTF");
}
body{
  line-height: 1.4;
}
img{
  max-width: 100%;
  height: auto;
}
.pt100{padding-top: 100px;}
.pb100{padding-bottom: 100px;}
.mt50{margin-top: 50px;}
.mt30{margin-top: 30px;}
.mt20{margin-top: 20px;}
.mt15{margin-top: 15px;}
.mt10{margin-top: 10px;}
@media(min-width:767px){
  .block-mb{
    display: none;
  }  
}
@media(min-width:991px){
  .block-991{
    display: none;
  }
}
@media(max-width:767px){
  .hidden-mb{
    display: none;
  }
  .pt100{padding-top: 60px;}
  .pb100{padding-bottom: 60px;} 
  .mt30{margin-top: 20px;}
}
.decs{
    text-align: center;
  }
img{
    max-width: 100%;
}
.title-cm{
  font-family: var(--f-title);
  color: var(--blue);
  font-size: 65px;  
  text-align: center;
  margin-bottom: 60px;
}
@media(max-width:1024px){
  .title-cm{
    font-size: 55px;
  }
}
@media(max-width:767px){
  .title-cm{
    font-size: 52px;
    margin-bottom: 50px;
  }
}
.bg-blue{
  background: var(--blue);
}
.btn-cta{  
  border-radius: 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  display: inline-block;
	background: #46A6E7;
  font-size: 20px;
  width: 300px;
  max-width: 100%;
  padding: 16px;
}
.btn-cta:hover{
  background: #6BBEF7;
  color: #fff;
  text-decoration: none;
}
/*----- banner -----*/
.banner{
  position: relative;
}
.banner-inner{
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  top: 0;
}
.bnr-txt-sm{
  font-size: 3.6vw;
  font-weight: 500;
  color: #2BA077;
  background: #fff;
  padding: 4px 7px;
}
.bnr-txt-md,
.bnr-title{
  color: var(--blue);
  text-shadow: -2px -2px 6px #fff, 2px -2px 6px #fff, -2px 2px 6px #fff, 2px 2px 6px #fff, -2px -2px 6px #fff, 2px -2px 6px #fff, -2px 2px 6px #fff, 2px 2px 6px #fff;
}
.bnr-txt-md{
  font-size: 6.5vw;
  font-weight: bold;
}
.bnr-title{
  font-family: var(--f-title);
  color: var(--blue);
  font-size: 19vw;
  line-height: 1;
}
.bnr-title span{
  font-size: 9vw;
  display: block;
}
.bnr-content{
  padding-left: 10px;
}
@media(min-width:767px){
  .banner-inner{
    align-items: center;
/*    padding-bottom: 5vw;*/
  }
  .bnr-txt-sm{
    font-size: 2vw;
    padding: 5px 15px;
  }
  .bnr-txt-md{
    font-size: 2.8vw;
    margin-top: 5px;
  }
  .bnr-title{
    font-size: 7.2vw;
  }
  .bnr-title span{
    font-size: 4.2vw;
  }
  .bnr-content{
    padding-left: 20px;
  }
}
@media(min-width:1200px){
  .banner-inner{
    padding-bottom: 5vw;
  }
  .bnr-txt-sm{
    font-size: 1.1vw;
  }
  .bnr-txt-md{
    font-size: 1.8vw;
  }
  .bnr-title{
    font-size: 6.2vw;
  }
  .bnr-title span{
    font-size: 3.2vw;
  }
}
@media(min-width:1200px){
  .bnr-content{
    padding-left: 0;
  }
}
@media(min-width:1900px){  
  .bnr-txt-sm{
    font-size: 21px;
  }
  .bnr-txt-md{
    font-size: 35px;
  }
  .bnr-title{
    font-size: 120px;
  }
  .bnr-title span{
    font-size: 62px;
  }
}
@media(max-width:767px){
  .bnr-txt-md{
    line-height: 1.2;
    margin-top: 10px;
  }
  .banner-inner{
    top:17vw;
  }
  .bnr-txt-md,
  .bnr-title{
    color: var(--blue);
    text-shadow: -1px -1px 2px #fff, 1px -1px 2px #fff, -1px 1px 2px #fff, 1px 1px 2px #fff, -1px -1px 2px #fff, 1px -1px 4px #fff, -1px 1px 2px #fff, 1px 1px 2px #fff;
  }
}
/*----- End banner -----*/

/*----- anchor-link -----*/
.anchor-link ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.anchor-link li a{
  color: #fff;
}
.anchor-dot:before{
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #38CFBB;
  display: inline-block;
}
.anchor-title-mb{
  color: #fff;
  border-bottom: 1px dotted #38CFBB;
  padding: 10px;
  position: relative;
  text-align: center;
  padding-top: 10px;
}
.anchor-title-mb:after{
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  margin-left: 9px;
  position: absolute;
  right: 0;
  font-size: 12px;
  top: 15px;
  color: #38CFBB;
  font-weight: bold;
}
.active.anchor-title-mb:after{
  transform: rotate(180deg);
}
@media(min-width:767px){
  .anchor-title-mb{
    display: none;
  }
  .anchor-link{
    padding-top: 20px;
  }
}
@media(max-width:767px){
  .anchor-link{
    display: none;
  }
  .anchor-link ul > li:nth-child(2n){
    display: none;
  }
  .anchor-link.active{
    display: block;
  }
  .anchor-link ul{
    flex-wrap: wrap;
    justify-content: flex-start;
    background: #003B6F;
/*
    margin-left: -15px;
    margin-right: -15px;
*/
  }
  .anchor-link li{
/*    width:50%;  */
    width: 100%;
    padding: 0px 15px;
    text-align: center;
  } 
  .anchor-link li a{
    width: 100%;
    display: block;
    padding: 8px 10px 7px 0;    
    position: relative;
  }
  .anchor-link li:not(:last-of-type){
    border-bottom: 1px dotted #38CFBB;
  }  
/*
  .anchor-link li a:after{    
    content:'\f078' ;
    font-family: "Font Awesome 5 Free";
    margin-left: 9px;
    position: absolute;
    right: 0;
    font-size: 11px;
    font-weight: bold;
		top: 10px;
    color: #38CFBB;
  }
*/
}

/*----- End anchor-link -----*/

/*----- Intro box -----*/
.intro-title p{
  font-size: 20px;
}
.intro-title h1{
  font-family: var(--f-title);
  font-size: 35px;
}
@media(min-width:767px){
  .intro-content{
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px 30px;
    align-items: center;
  }
}
@media(min-width:991px){
  .intro-content{
    grid-template-columns: 3fr 2fr; 
  }
}
@media(max-width:767px){
  .intro-title h1{
    font-size: 30px;
  }
  .intro-content > div:nth-child(2){
    margin-top: 30px;
  }
}
/*----- End Intro box -----*/

/*----- tour-box -----*/
.tour-box{
  background: url("../img/bg_highlight.jpg") top center;
  background-size: 100% 100%;
}
.row-2-item{
  display: grid;
  gap: 30px;      
  align-items: stretch;
}
.tour-item{
  background: #fff;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.tour-content{
  padding: 20px 15px;
}
.tour-content h3{
  font-size: 22px;
  font-weight: bold;
}
.tour-img img{
  width: 100%;
}
@media(min-width:767px){
  .row-2-item{
    grid-template-columns: 1fr 1fr; 
  }
  .tour-content{
    padding: 30px;
  }
}
@media(max-width:767px){
  .tour-box {
    background: url(../img/bg_highlight.jpg) top left;
    background-size: auto 100%;
  }
}



.activity-item{
  background: #fff;
  height: 100%;
}
.activity-content{
  padding: 30px;
}
.movie {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-bottom: 56.28%;
	height: 0;
	overflow: hidden;
}

.schedule-img{
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
}
.btn-sub{
  border: 1px solid #75EEFF;
  background: rgb(0 96 169 / 60%);
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  color: #fff;
}
.btn-sub:hover{
  background: rgb(0 96 169 / 100%);
  color: #fff;
}
.btn-sub-small{
  width: 140px;
  max-width: 100%;
  padding: 5px;
	font-size: 14px;
}
.schedule-item .btn-sub{
  position: absolute;
  bottom:20px;
  left: calc(50% - 70px);
}
.slider-item{
  padding-left: 7px;
  padding-right: 7px;
}
.schedule-list{
  margin-left: -7px;
  margin-right: -7px;
}
.slick-dots {
  text-align: center;
  width: 100%;
  margin-top: 20px;
}
.slick-dots li {
	display: inline-block;
	margin: 0 3px;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 80px;
	height: 6px;
	cursor: pointer;
	border: 0;
	outline: none;
  	border-radius: 10px;
  background: #D4D4D4;
}
.slick-dots li.slick-active button {
	opacity: 1;
	background: #00B19A;
}
@media(max-width:767px){
  .slick-dots li button{
    width: 30px;
  }
}
@media (max-width: 575px){
  .schedule-slider .slick-list{
    padding-left: 0 !important;
    padding-right: calc(30% + 12px) !important; 
  }
  .slick-dots{
    margin-top: 10px;
  }
}
.schedule-content{
  padding: 15px 0;
}
.s-time{
  color: #005147;
  font-size: 22px;
  font-weight: bold;
  width: 160px;
  background: #ACF1D8;
  padding: 3px;
  position: relative;
  text-align: center;
}
.s-time:after{
  content: '';
  width: 20px;
  height: 100%;
  background: url("../img/bg-time.png");
  position: absolute;
  right: -20px;
  display: block;
  top: 0;
  background-size: 100% 100%;
}
.modal-schedule .modal-title{
  font-size: 20px;
  font-weight: bold;
}
.modal-schedule .row-2-item{
  gap:2px;
}
.modal-schedule .modal-header{
  border-bottom: none;
}
.modal-schedule .modal-body{
  padding: 0 25px 50px 25px;
}
.schedule-img > img{
  width: 100%;
}

/*----- Plan -----*/
.plan-item{
  height: 100%;
  max-width: 100%;
  background: url("../img/bg_02.png");
  background-size: 100% 100%;
  border-radius: var(--border-radius);
  padding: 40px;
  border:1px solid #bacbdb;
  box-shadow: 0 14px 30px #DDE5EE;
}
.plan-title {
  border-bottom: 2px dotted #093960;
  padding: 0 0 20px 0;
}
.plan-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 25px;
}
.plan-title p{
  font-size: 27px;
  font-weight: bold;
  margin-top: 10px;
      text-align: center;
}
.price{
  font-size: 40px;
  font-weight: bold;
}
.price-num{
  font-size: 55px;
}
.plan-content{
  padding-top: 10px;
  text-align: center;
}
.decs{
  font-size: 25px;
  font-weight: bold;
}
@media(max-width:991px){
  .plan-item{
    padding: 30px 20px;
  }
  .plan-title p{
    font-size: 25px;
  }
  .plan-icon img{
    width: 90%;
  }
  .price{
    font-size: 30px;
  }
  .price-num{
    font-size: 40px;
  }
  .decs{
    font-size: 20px;
  }
}

/*----- Chef ------*/
.chef-box{
  background: url("../img/bg_chef.jpg") top center;
  background-size: 100% 100%;
}
.chef-box .row-2-item{
  align-items: center;
}
.chef-box .row-2-item > div:nth-child(1) {
    height: 100%;
}
.chef-box .title-cm{
  margin-bottom: 30px;
}
.chef-info,
.chef-intro{
  background: rgb(0 88 172 / 30%);
}
.chef-box li,
.chef-box p{
  color: #fff;
}
.chef-intro-content{
  padding: 30px 30px 30px 0;
}
.chef-name{
  font-size: 35px;
  font-weight: bold;
}
.chef-title{
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}
.chef-title:after{
  content: '';
  width: 100%; 
  height: 1px;
  background: #115083;
background: linear-gradient(-90deg, rgba(17, 80, 131, 1) 0%, rgba(119, 196, 255, 1) 26%, rgba(27, 135, 255, 1) 52%, rgba(72, 243, 255, 1) 77%, rgba(188, 247, 255, 1) 100%);
  display: block;
  margin-top: 5px;
}
.chef-info{
  padding: 30px;
}
.list-dot li{
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
.list-dot li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6DFFF5;
  position: absolute;
  left: 0;
  top: 9px;
}
.num-year{
  font-size: 18px;
  font-weight: bold;
  color: #6DFFF5 !important;
}
.chef-intro img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media(min-width:767px){
  .list-dot {
    column-count: 2;     
    column-gap: 40px;    
  }
}
@media(max-width:767px){
  .chef-box {
    background: url(../img/bg_chef.jpg) top left;
    background-size: auto 100%;
  }
  .chef-intro-content {
    padding: 0 20px 30px 20px;
  }
  .chef-box .title-cm {
    margin-bottom: 15px;
  }
  .chef-info{
    padding: 30px 20px;
  }
  .chef-name{
    font-size: 30px;
  }
}
/*-----End Chef ------*/
/*----- bus ------*/
.bus-box .row-2-item{
  gap:0;
  align-items: center;
  background: #c8e5ff;
}
.bus-box .row-2-item > div:nth-child(2){
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  background: #DDF6FF;
  background: linear-gradient(201deg, rgba(221, 246, 255, 1) 0%, rgba(194, 224, 255, 1) 100%);
  padding-left: 30px;
  padding-right: 30px;
}
.bus-box .title-cm{
  margin-bottom: 30px;
}
.bus-box .row-2-item > div > img{
  width: 100%;
}
.list-dot-02 li{
  margin-bottom: 5px;
  padding-left: 10px;
  position: relative;
}
.list-dot-02 li:before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 9px;
}
.bus-content {
    padding: 20px 20px 20px 0;
}
@media(min-width:991px){
  .bus-box{
    border-bottom: 1px solid #c8e5ff;
  }
}
@media(max-width:991px){
  .bus-box .row-2-item{
    grid-template-columns: inherit;
  }
  .bus-box {
    padding: 60px 15px 0 15px;
  }
  .bus-box > div{
    border: 1px solid #c8e5ff;
  }  
}
@media(max-width:767px){
  .bus-content {
    padding: 20px 0 30px 0;
  }
  .bus-box .title-cm {
    margin-bottom: 15px;
  }  
}
/*-----End bus ------*/
/* outline
------------------------------------------*/
.tour-outline {
	background: #E3E8EE;
}
.outline-table{
  width: 100%;
  background-color: #fff;
}
.outline-table th{
  font-weight: bold;
}
.outline-table th,
.outline-table td{
  border-collapse: collapse;
  border:1px solid #D1D1D1;
  padding: 15px 30px;
}
.outline-table td dt{
  margin-top: 8px;
}
.list-num {
	padding-left: 18px;
}
.list-num li,
.list-dot li{
  margin-bottom: 7px;
}
.list-num li:last-child,
.list-dot li:last-child{
  margin-bottom: 0;
}
@media(min-width:767px){
  .outline-table th{
    width: 230px;
  }
}
@media(min-width:991px){
  .outline-table th{
    width: 300px;
  }
}
@media(max-width:767px){
  .outline-table th, .outline-table td{
    display: block;
    width: 100%;
    padding: 15px 15px;        
    vertical-align: middle;
  }
  .outline-table th{
    border-bottom: none;
    padding-bottom: 0;
    background: none;
		padding-top: 15px;
  }
	.outline-table td{
		padding-top: 5px;
	}
  .outline-table th,
  .outline-table td{
    border-top:none;
  }
  .outline-table tr:nth-child(1) th{
    border-top: 1px solid #D1D1D1;
  }
}
.outline-table dt {
  font-weight: bold;
}
.outline-table dt:nth-child(n+2) {
  margin-top: 10px;
}
.outline-table dd li {
  list-style: disc;
  margin-left: 40px;
}
.txt-link{
 text-decoration: underline;
}

/* FAQ
------------------------------------------*/
.faqbox__button ul li{
  margin-bottom: 15px;
}
.faqbox .dropdownSub{
	display:none;
}
.dropdown__inner {
  border: 1px solid #EAEAEA;
  box-shadow: 0 3px 3px #EEEEEE;
}
.dropdown__inner.dropdown_toggle{
  box-shadow: 0 3px 16px #E3E3E3;
}
.dropdown{
	background-color: #fff;  
  margin-bottom: 10px;
}
.question{
	padding: 20px 30px;
	position: relative;
	cursor: pointer; 
  background: #FAFAFA;
  font-weight: bold;
}
/*
.faq-list > div:not(:last-of-type){
  border-bottom: 1px solid #D6D6D6;
}
*/
.dropdownSub{
	padding: 20px 50px 20px 30px;
	display: none;
  border-top: 1px dotted #EAEAEA;
}
.question:after {
  content: '\f078';
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 30px;
  font-size: 16px;
  font-weight: bold;
  top: 19px;
  color: #333;
}
.dropdown_toggle .question:after{
  transform: rotate(0.5turn);
}
@media (max-width:767px) {
  .faq {
    padding-bottom: 120px;
  }
	.dropdownSub{
		padding: 16px 15px 25px;
	}
	.question{
		padding: 15px 55px 15px 15px;
	}
	.question:after{
		right: 15px;
	}
}


@media(max-width:767px){
  .guide-box p.text-center{
    text-align: left !important;
  }
}


.textlink{
  text-decoration: underline; 
  color: #0086D1;
}
.list-dot-02 li{
  margin-bottom: 5px;
  padding-left: 17px;
  position: relative;
}
.list-dot-02 li:before{
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #333;
  position: absolute;
  left: 0;
  top: 9px;
}




































