@charset "utf-8";

/* ベトナム定額空港タクシー
-------------------------------*/
/*設定
--------------------*/
:root {
  --black: #212529;
  --white: #fff;
  --gray: #707070;
  --orange: #EB4D28;
  --green: #108E93;
  --red: #C51C1C;
  --gold: #9E9C58;
  --yellow: #FFCA00;
  --yellow-l: #f9dc6d;
  --yellow-transparent: rgba(255, 202, 0, 0.5);
  --bgBage: #F0EEE4;
  --bgLightBage: #F8F9F5;
  --bgGray: #e9e9e9;
  --border: #CBCBCB;
  --border2: #707070;
  --box-shadow: rgba( 0, 0, 0, 0.16);
  --bgWhite-2: #F5F5F5;
  --radius-30: 30px;
  --radius-10: 10px;
}


/*共通 パーツ
-------------------------------*/
article {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo,"ＭＳ ゴシック", sans-serif;
  overflow: hidden;
  background: var(--bgBage);
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
}

/* color
-----------------------------------*/
.color-black {
    color: var(--black) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-orange {
    color: var(--orange) !important;
}

.color-red {
    color: var(--red) !important;
}

.color-green {
    color: var(--green) !important;
}

.color-gold {
    color: var(--gold) !important;
}


/* flex
----------------------------------*/
.flex {
  display: flex;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-center{
  display: flex;
  justify-content: center;
}


@media (max-width: 767px)  {
    .sp-flex {
        display: flex;
    }
    
    .sp-flex-between {
        display: flex;
        justify-content: space-between;
    }
}

/* section
-------------------------------------*/
.section {
    padding: 120px 0;
}

@media (max-width: 767px)  {
    .section {
      padding: 45px 0;
    }
}

.section-container {
    width: 96%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .section-container {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
}


/* block
-------------------------------------*/
.block {
    padding: 50px 0;
}

@media (max-width: 767px)  {
    .block {
      padding: 25px 0;
    }
}


/* heading
--------------------------------------*/
.heading {
  text-align: center;
  margin-bottom: 42px;
}

.heading span {
    display: block;
}

.heading .en {
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 20px;
    margin-bottom: 10px;
    position: relative;
    padding: 30px 0 32px;
}
.heading .en::before,
.heading .en::after{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
}

.heading .en::before{
    top: -30px;
    width: 186px;
    height: 33px;
    background: url('/static/img/tour/global/vietnam/img-heading-line-top.svg') no-repeat center center / 100%;
}

.heading .en::after {
    bottom: 12px;
    width: 37px;
    height: 6px;
    background: var(--green);
}

.heading .en img {
    text-align: center;
    margin-inline: auto;
}

.heading .jp {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--black);
}

@media (max-width: 767px) {
  .heading {
      margin-bottom: 24px;
    }

    .heading::after {
      width: 190px;
      height: 10px;
    }

    .heading .en {
        width: 40%;
        text-align: center;
        margin: auto;
        padding: 16px 0 24px;
    }
    
    .heading .en::before{
        top: -30px;
        width: 186px;
        height: 33px;
        background: url('/static/img/tour/global/vietnam/img-heading-line-top-sp.svg') no-repeat center center / 100%;
    }
    
    .heading .en::after {
        width: 32px;
        height: 4px;
    }
    
    .heading .en img {
        text-align: center;
        margin: 0 auto 10px;
    }

    .heading .jp {
      font-size: 13px;
      line-height: 1.5;
      margin-bottom: 0;
    }
}


/* title */
.title {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 16px;
}
@media (max-width: 768px) {
  .title {
      font-size: 16px;
      margin-top: 24px;
      margin-bottom: 12px;
    }  
}



/* button
--------------------------------------*/
.button-wrap {
  margin: auto;
  text-align: center;
}

.button,
.button-radius {
    display: inline-block;
    width: 100%;
    transition: 0.3s;
}


.button-black {
  width: 100%;
  max-width: 360px;
  display: inline-block;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  border-radius: 500px;
  transition: 0.3s;
  background: var(--black);
  color: var(--white);
}

.button-black:hover {
    color: var(--white);
}

.button-white {
    display: inline-block;
    width: 100%;
    border-radius: 58px;
    border: 2px solid var(--black);
    padding: 14px 30px;
    position: relative;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.button-white:hover {
    color: var(--black);
}

.button-white::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 20px;
    font-size: 14px;
    color: var(--black);
    transform: translateY(-50%);
}

@media (max-width: 767px) {

 .button-black {
     font-size: 13px;
     padding: 12px 30px;
  }

  .button-white {
      font-size: 12px;
      padding: 12px 34px 12px 14px;
  }
}


/* ホバー対応デバイス */
@media (hover: hover) {
  .button:hover,
  .button-radius:hover{
    opacity: 0.6;
    text-decoration: none;
  }

  .button-black:hover,
  .button-white:hover{
        opacity: 0.6;
        text-decoration: none;
    }
}


/* link
--------------------------------*/
.link-underline {
    text-decoration: underline;
}

.link-underline:hover {
    text-decoration: underline;
}


/* arrow
-------------------------------*/
.arrow,
.arrow-right,
.arrow-down,
.arrow-top {
    position: relative;
}

.arrow::after,
.arrow-right::after,
.arrow-down::after,
.arrow-top::after,
.arrow-plus::after {
    position: absolute;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
    display: inline-block;
    font-size: 14px;
}

.arrow-right::after {
    right: 20px;
    content: "\f054";
}

.arrow-down::after {
    content: "\f13a";
}

.arrow-plus::after {
    font-size: 16px;
    content: "\f055";
}

@media (max-width: 767px) {
   .arrow-right::after {
        right: 16px;
    }
}


/* text
--------------------------------------*/
.lead {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--black);
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 70%;
}

.thin {
    font-weight: 300;
}

.text-center {
  text-align: center;
}

@media (max-width: 1024px) {
  .lead {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .lead {
    font-size: 13px;
    line-height: 1.5;
  }
}



.marker-yellow {
    background: linear-gradient(transparent 60%, var(--yellow-transparent) 40%);
}


/* card
-------------------------------------------*/
.card-item {
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.card-item figure {
  margin: 0;
}


/* card shadow */
.card-shadow {
    box-shadow: 0 3px 14px var(--box-shadow);
}


/* box */
.box-radius-white {
    padding: 3% 6% 4%;
    border-radius: 20px;
    background: var(--white);
}

.box-radius-bage {
    padding: 6% 8%;
    border-radius: 20px;
    background: var(--bgBage);
}

@media (max-width: 767px) {
    .box-radius-white {
        padding: 4% 4% 6%;
        border-radius: 10px;
    }

    .box-radius-bage {
        padding: 6% 8%;
        border-radius: 10px;
    }
}



/*slider ベース設定
-------------------------------------*/
/* dots */
.slick-dots {
    bottom: 0;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    line-height: 1;
    margin: 0 6px;
}

.slick-dots li button {
    padding: 0;
    width: 10px;
    height: 10px;
}

.slick-dots li button { 
    font-size: 10px;
    padding: 0;
    background: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    line-height: 1;
}

.slick-dots li.slick-active button {
    background: var(--orange);
}

.slick-dots li button:before {
    content: none;
}

/* slick button */
.slick-prev:before,
.slick-next:before {
   width: 32px;
   height: 32px;
    color: var(--orange); 
}

@media (max-width: 767px) {
    /* slick button */
    .slick-prev:before,
    .slick-next:before {
       font-size: 32px;
    }
    
    .slick-prev:hover:before, 
    .slick-prev:focus:before,
    .slick-next:hover:before, 
    .slick-next:focus:before{
        color: var(--orange);
    }
    .slick-next:before {
        opacity: 0.6;
    }
    .slick-prev:before {
        opacity: 0.6;
    }
    .slick-prev {
        left: 10px;
        z-index: 5;
    }
    .slick-next {
        right: 30px;
    }
}


/* Contents
---------------------------------------------*/
/*　MV
-------------------------------*/
.mv-area {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: var(--green);
}

.mv-heading {
    width: 100%;
    height: auto;
}

/* campaign obi */
.campaign-obi {
    text-align: center;
    margin: auto;
}

.campaign-obi img {
    text-align: center;
    margin: auto;
}


/* page nav
--------------------------*/
/*追従*/
.sticky-nav {
  width: 100%;
  transition: .6s;
}

.sticky-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

/* メニューが追従していない時の高さを浮かす調整*/
.sticky-nav.is-static {
  position: absolute;
}

@media (max-width: 767px) {
    .sticky-nav {
        margin: 0 auto;
    }
}

.page-nav {
  margin: 0 auto;
  background: var(--green); 
}

.page-nav ul {
  width: 80%;
  max-width: 873px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}

.page-nav li {
  /* width: calc(100% / 3); */
  display: flex;
  justify-content: center;
  padding: 10px 0; 
  /* margin-left: 2%;  */
}

.page-nav li:last-child a {
  border-right: 3px dotted var(--gold);
}

.page-nav li a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--white);
  padding: 18px 30px 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  border-left: 3px dotted var(--gold);
  transition: 0.3s;
}

.page-nav li a:hover {
    opacity: 0.6;
}

.page-nav li a::after {
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 16px;
    color: var(--yellow);
    transform: translateY(-50%);
    transition: 0.3s;
}


@media (max-width: 993px) {
  .page-nav ul {
    width: 100%;
  }
}

@media (max-width: 767px) {

  .page-nav {
    margin: 0 auto;
  }

  .page-nav ul {
    width: 100%;
  }

    .page-nav li:first-child a {
        border-left: none;
    }
    .page-nav li:last-child a {
      border-right: none;
    }

  .page-nav li a {
    font-size: 12px;
    padding: 16px 10px 24px;
  }

  .page-nav li a::after {
    top: 50px;
    left: 50%;
    right: auto;
    font-size: 12px;
  }
}

@media (max-width: 321px) {
  .page-nav li a {
    font-size: 8px;
  }
}



/* INTRODUCE
-------------------------------------*/
.intro-area {
    padding: calc(25px + 80px) 0 calc(58px + 82px);
}

.intro-img {
    margin: auto;
}

@media (max-width: 767px) {
    .intro-area {
        padding: calc(20px + 80px) 0 48px;
    }
    .intro-img {
        width: 30%;
    }
    .intro-area .lead{
        font-size: 13px;
    }
}



/* RECOMMEND
-------------------------------------*/
.recommend-area {
    position: relative;
    padding: 50px 0 100px;
    background: var(--bgLightBage);
}

.recommend-area::before {
    content: '';
    position: absolute;
    top: -82px;
    display: block;
    width: 100%;
    height: 160px;
    border-radius: 120% 120% 0 0;
    background: var(--bgLightBage);
}

.recommend-heading {
    margin-bottom: 64px;
}


/*ポイント*/
.recommend-list {
    width: 96%;
    max-width: 960px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    
}
.recommend-item {
    position: relative;
    width: 48%;
    max-width: 418px;
    min-height: 409px;
    margin: 0 1% 36px;
}
.recommend-hukidashi {
    width: 80%;
    background: var(--white);
    border-radius: var(--radius-10);
    padding: 36px 3% 20px 8%;
    position: relative;
    margin-left: 1.5%;
}

.recommend-hukidashi::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -16px;
    width: 20px;
    height: 23px;
    display: inline-block;
    background: url('/static/img/tour/global/vietnam/ico-fukidashi.svg') no-repeat center center/ 100%;
}

.recommend-point {
    position: absolute;
    top: -20px;
    right: 16px;
}

.recommend-warry {
    font-size: 16px;
}

.recommend-after {
    margin: 20px auto;
    text-align: center;
    background: var(--bgBage);
    border-radius: var(--radius-10);
    padding: 30px 2%;
    position: relative;
}

.recommend-after::before,
.recommend-after::after {
    content: '';
    position: absolute;
    z-index: 2;
    display: block;
}
.recommend-after::before {
    top: -10px;
    left: 50%;
    width: 34px;
    height: 25px;
    background: url('/static/img/tour/global/vietnam/icon-arrow-yellow.svg') no-repeat center center/ 100%;
}

.recommend-after::after {
    top: -10px;
    right: 3px;
    width: 61px;
    height: 108px;
    background: url('/static/img/tour/global/vietnam/icon-solution.svg') no-repeat center center/ 100%;
}

.recommend-feature {
    margin: 8px auto 6px;
}

.recommend-merit {
    font-size: 20px;
    font-weight: 600;
}

@media (max-width: 767px) {
    .recommend-area {
        padding: 50px 0 0;
    }
    .recommend-area::before {
        top: -30px;
        height: 30px;
    }
    
    .recommend-heading {
        margin-bottom: 46px;
    }
    
    .recommend-heading .en {
        width: 64%;
    }
    
    /*ポイント*/
    .recommend-list {
        width: 100%;
        max-width: 100%;

    }
    .recommend-item {
        width: 90%;
        max-width: 280px;
        min-height: 291px;
        margin: 0 1% 46px;
    }
    
    .recommend-before {
       flex-wrap: wrap; 
    }
    
    .recommend-hukidashi {
        width: 100%;
        padding: 24px 10% 20px 10%;
        margin-left: 0;
        order: 1;
    }
    
    .recommend-human {
        width: 58%;
        order: 2;
        margin: 10px auto;
        text-align: center;
    }

    .recommend-hukidashi::before {
        top: auto;
        left: 50%;
        bottom: -6px;
        transform: translateX(-50%) rotate(270deg);
        width: 16px;
        height: 11px;
    }

    .recommend-point {
        width: 76%;
        top: -25px;
        right: -48px;
    }

    .recommend-warry {
        font-size: 14px;
    }

    .recommend-after {
        margin: 0 auto 20px;
        padding: 20px 6%;
    }

    .recommend-after::before {
        transform: translateX(-50%);
    }

    .recommend-after::after {
        top: -40px;
        right: -10px;
        width: 62px;
        height: 108px;
        background: url('/static/img/tour/global/vietnam/icon-solution.svg') no-repeat center center/ 100%;
    }
    
    .recommend-text {
        font-size: 13px;
    }

    .recommend-feature {
        margin: 8px auto 6px;
        width: 80%;
    }

    .recommend-merit {
        font-size: 18px;
    }
    
    .recommend-merit.note {
        line-height: 1.2;
        text-align: left;
    }
}


/* STEP
--------------------------------------*/
.step-area {
    padding: 120px 0 80px;
}
.step-heading {
    margin-bottom: 22px;
}

.attention-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--red);
}

.step-slider {
    margin: 80px auto 30px;
    max-width: 100%;
/*    max-width: 1550px;*/
}

.step-slider-item {
    padding: 50px 20px 40px;
    width: 100%;
    max-width: 340px;
    min-height: 358px;
    margin: 0 10px;
    background: var(--white);
    margin-bottom: 40px;
    border-radius: var(--radius-30);
    position: relative;
}

.step-slider-item::before {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    color: var(--white);
    font-weight: bold;
    font-size: 24px;
    background: url('/static/img/tour/global/vietnam/img-step-num-bg.svg') no-repeat center center/100%;
}

.step-slider-item.item-1::before {
    content: '01';
}
.step-slider-item.item-2::before {
    content: '02';
}
.step-slider-item.item-3::before {
    content: '03';
}
.step-slider-item.item-4::before {
    content: '04';
}

.step-img {
    margin-top: 30px; 
}

.step-text {
    font-size: 16px;
}


/* step slider 設定 */
.step-slider .slick-list {
    overflow: inherit;
}

@media (min-width: 768px) {
    .step-slider {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}


@media (max-width: 767px) {
    .step-area {
        padding: 80px 0 60px;
    }
    
    .step-heading {
        margin-bottom: 12px;
    }
    
    .step-heading .en {
        width: 28%;
    }
    
    .attention-text {
        font-size: 14px;
    }

    .step-slider {
        margin: 50px auto 30px;
        padding-left: 16px;
    }
    
    .step-slider-item {
        padding: 40px 20px 20px 20px;
        max-width: 288px;
        min-height: 271px;
    }

    .step-slider-item::before {
        top: -22px;
        width: 64px;
        height: 64px;
        font-size: 21px;
    }
    
    .step-img {
        margin-top: 12px; 
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .slick-dots {
        padding-right: 20px;
    }
}




/* PLAN / RESERVATION
------------------------------------------------*/
.plan-area {
    background: var(--bgLightBage);
    position: relative;
}

.plan-area::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -74px;
    display: block;
    width: 100%;
    height: 300px;
    background: url('/static/img/tour/global/vietnam/bg-building-pc.svg') no-repeat center center/ 100%;
}

@media (max-width: 1024px) {
    .plan-area::after {
        height: 30vw;
    }
}


@media (max-width: 767px) {
    .plan-area {
        padding: 40px 0 70px;
    }
    
    .plan-area::after {
        bottom: -26px;
        width: 100%;
        height: 114px;
        background: url('/static/img/tour/global/vietnam/bg-building-sp.svg') no-repeat center center/ 100%;
    }
    
    .plan-heading .en {
        width: 100%;
    }
}


/*タブ*/
.plan-tabs {
    background-color: var(--bgLightYellow);
}

/* タブボタン */
.plan-buttonlist {
	display: flex;
    column-gap: 0.5%;
	justify-content: center;
	position: relative;
    border-bottom: none;
}

.plan-buttonlist.nav-tabs li {
    width: 31%;
}

.plan-buttonlist li {
/*	flex: 1 1 auto;*/
	text-align: center;
}

.plan-buttonlist.nav-tabs li > a {
	display: block;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	transition: 0.3s;
    cursor: pointer;
	color: var(--green);
    background: var(--white);
    border-radius: 50px;
    border: 3px solid var(--green);
    padding: 26px 4%;
}
.plan-buttonlist.nav-tabs li > a:hover {
    opacity: 1;
    border-color: inherit;
}

.nav-item .sub {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
}

.plan-buttonlist.nav-tabs .nav-link.active {
    border: 2px solid var(--green);
    background-color: var(--green);
    opacity: 1;
    color: var(--white);
}

/*タブボタン アクティブ時の挙動*/
.plan-buttonlist li button.active {
    position: relative;
}

@media (max-width: 1024px) {
    .plan-buttonlist.nav-tabs li {
        width: 31.5%;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
     /* タブボタン */
    .plan-buttonlist.nav-tabs {
        justify-content: center;
    }
     .plan-buttonlist.nav-tabs li {
         width: 32.5%;
         margin-bottom: 10px;
     }

	 .plan-buttonlist li button,
	 .plan-buttonlist li a {
		 font-size: 11px;
	 }

    .plan-buttonlist.nav-tabs li a {
      width: 100%;
      font-size: 12px;
      line-height: 1.2;
        padding: 14px 2%;
    }

    .nav-item .sub {
      margin-top: 3px;
    }
}


/*タブ　エリアカラー変更 */
.plan-buttonlist.nav-tabs li:nth-of-type(2) > a.nav-link {
    color: var(--orange);
    border-color: var(--orange);
}

.plan-buttonlist.nav-tabs li:nth-of-type(3) > a.nav-link {
    color: var(--gold);
    border-color: var(--gold);
}

/*タブボタン エリアカラー　アクティブ時*/
.plan-buttonlist.nav-tabs li:nth-of-type(2) > a.nav-link.active {
    border: 2px solid var(--orange);
    background-color: var(--orange);
    opacity: 1;
    color: var(--white);
}

.plan-buttonlist.nav-tabs li:nth-of-type(3) > a.nav-link.active {
    border: 2px solid var(--gold);
    background-color: var(--gold);
    opacity: 1;
    color: var(--white);
}


/* commingsoon */
.comingsoon-button {
    position: relative;
}

.comingsoon-button::before,
.comingsoon-button::after {
    content: '';
    position: absolute;
    display: block;  
}

.comingsoon-button::before {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50px;
}

.comingsoon-button::after {
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 164px;
    height: 13px;
    background: url('/static/img/tour/global/vietnam/img-text-comingsoon.svg') no-repeat center center/ 100%;
}

@media (max-width: 767px) {
    /* commingsoon */
    .comingsoon-button::after {
        top: -16px;
        width: 93%;
        height: 13px;
    }
}

/* タブコンテンツ　*/
.plan-content {
	display: none;
	transition: 0.3s;
}

.plan-content.active {
	display: block;
}

.box-radius-border {
/*    background: var(--bgWhite-2);*/
    border-radius: var(--radius-30);
    padding: 50px 8% 90px;
    margin-top: 32px;
    position: relative;
}

.box-radius-border-green {
    border: 6px solid var(--green);
    position: relative;
}

.box-radius-border-green::before,
.box-radius-border-green::after {
    content: '';
    position: absolute;
    display: block;
    width: 101px;
    height: 90px;
    bottom: 20px;
}

.box-radius-border-green::before {
    left: 20px;
    transform: rotate(270deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-l.svg') no-repeat center center/ 100%;
}

.box-radius-border-green::after {
    right: 20px;
    transform: rotate(90deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r.svg') no-repeat center center/ 100%;
}

/*カラー変更*/
.box-radius-border-green::after {
    right: 20px;
    transform: rotate(90deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r.svg') no-repeat center center/ 100%;
}

.box-radius-border-header {
    position: relative;
    padding-top: 30px;
}


/*カラー変更*/
.content-hanoi .box-radius-border-green::before {
    transform: rotate(180deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-orange.svg') no-repeat center center/ 100%;
}

.content-hanoi .box-radius-border-green::after {
    transform: rotate(90deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-orange.svg') no-repeat center center/ 100%;
}

.content-danang .box-radius-border-green::before {
    transform: rotate(180deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-gold.svg') no-repeat center center/ 100%;
}

.content-danang .box-radius-border-green::after {
    transform: rotate(90deg);
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-gold.svg') no-repeat center center/ 100%;
}




/*タブコンテンツ カラー変更*/
.content-hanoi .box-radius-border-green{
    border-color: var(--orange);
}
.content-hanoi .title-green {
    border-color: var(--orange);
}
.content-hanoi .icon-taxi,
.content-hanoi .icon-location {
    background-color: var(--orange);
}

.content-danang .box-radius-border-green {
    border-color: var(--gold);
}
.content-danang .title-green {
    border-color: var(--gold);
}
.content-danang .icon-taxi,
.content-danang .icon-location {
    background-color: var(--gold);
}


/* service tab nav*/
.service-tab-nav {
    display: flex;
    column-gap: 1%;
	justify-content: center;
	position: relative;
/*    border-bottom: 2px solid var(--gray);*/
    border-bottom: none;
}
.service-tab-nav::before {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: -1.3px;
    left: 0;
    width: 100%;
    height: 2px;
    border-bottom: 2px solid var(--gray);
}

.service-tab-nav li {
    width: 28%;
}

.service-tab-nav .nav-item {
    margin-bottom: -1.5px;  
}

.service-tab-nav .nav-link {
   padding: 16px;
   border-radius: 20px 20px 0 0;
   border: 2px solid var(--gray);
   background: var(--bgGray);
   cursor: pointer;
   text-align: center;
   font-weight: bold;
   color: var(--gray);
   position: relative;
   transition: 0.8;
}
.service-tab-nav .nav-link:hover {
    border: 2px solid var(--gray);
    border-bottom: 2px solid transparent;
    border-bottom: none;
}
.service-tab-nav .nav-link.active {
    background-color: var(--yellow-l);
/*  background-color: var(--bgLightBage);*/
    color: var(--black);
    border-color: var(--gray);
    border-bottom: 2px solid transparent; 
}

.service-tab-nav .nav-link > img {
    position: absolute;
    top: 50%;
    left: calc(50% - 56px);
    transform: translateY(-50%);
    filter: invert(51%) sepia(1%) saturate(2114%) hue-rotate(350deg) brightness(98%) contrast(88%);
}
.service-tab-nav .nav-link.active > img {
    filter: invert(13%) sepia(16%) saturate(379%) hue-rotate(169deg) brightness(92%) contrast(96%);
}

@media (max-width: 767px) {
    .service-tab-nav {
        column-gap: 1.2%;
    }
    
    .service-tab-nav::before {
        bottom: -1.5px;
    }
    .service-tab-nav li {
        width: 46%;
    }

    .service-tab-nav li > .nav-link {
       padding: 12px 12px 10px;
       border-radius: 14px 14px 0 0;
       font-size: 13px;
    }
    
    .service-tab-nav li > .nav-link:hover {
        border: 2px solid var(--gray);
    }
}


/*plan-box
----------------------*/
.plan-box {
    padding: 30px 0 50px;
}

.plan-box-header::before,
.plan-box-header::after {
    content: '';
    position: absolute;
    display: block;
    width: 101px;
    height: 90px;
    top: 20px;
}

.plan-box-header::before {
    left: 20px;
    background: url('/static/img/tour/global/vietnam/img-waku-t-l.svg') no-repeat center center/ 100%;
}

.plan-box-header::after {
    right: 20px;
    background: url('/static/img/tour/global/vietnam/img-waku-t-r.svg') no-repeat center center/ 100%;
}

/*カラー変更*/
.content-hanoi .plan-box-header::before {
    background: url('/static/img/tour/global/vietnam/img-waku-t-l-orange.svg') no-repeat center center/ 100%;
}
.content-hanoi .plan-box-header::after {
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-orange.svg') no-repeat center center/ 100%;
}

.content-danang .plan-box-header::before {
    background: url('/static/img/tour/global/vietnam/img-waku-t-l-gold.svg') no-repeat center center/ 100%;
}

.content-danang .plan-box-header::after {
    background: url('/static/img/tour/global/vietnam/img-waku-t-r-gold.svg') no-repeat center center/ 100%;
}


.plan-header-area {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.plan-header-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 72px);
    display: block;
    width: 27px;
    height: 53px;
    background: url('/static/img/tour/global/vietnam/ico-spot.svg') no-repeat center center/ 100%;
}

.content-hochiminh .plan-header-area::before {
    left: calc(50% - 100px);
}

.plan-header-area .jp {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.plan-header-area .en {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
}

.title-green {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding: 0 10px 10px 0;
    border-bottom: 4px dotted var(--green);
    margin-bottom: 36px;
    vertical-align: middle;
    text-align: center;
}

.icon-taxi {
    text-align: center;
    margin: auto;
    margin-right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--green);
    padding-top: 4px;
}

.icon-taxi img {
    vertical-align: middle;
    margin: auto;
    line-height: 1;
}

.icon-round {
    display: inline-block;
    margin: 0 12px;
}

@media (max-width: 1024px) {
    /*タブコンテンツ*/
    .box-radius-border {
        padding: 40px 6% 48px;
    }
}


@media (max-width: 767px) {
    
    /*タブコンテンツ*/
    .box-radius-border {
        margin-top: 20px;
        padding: 40px 4% 48px;
    }
    
    .box-radius-border-green {
        border: 4px solid var(--green);
    }
    
    .box-radius-border-green::before,
    .box-radius-border-green::after {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .box-radius-border-green::before {
        left: 14px;
        background: url('/static/img/tour/global/vietnam/img-waku-t-l.svg') no-repeat center center/ 100%;
    }

    .box-radius-border-green::after {
        right: 14px;
        background: url('/static/img/tour/global/vietnam/img-waku-t-r.svg') no-repeat center center/ 100%;
    }
    
    .plan-box {
        padding: 12px 0 30px;
    }
    
    .plan-box-header {
        margin-bottom: 20px;
    }
    
    .plan-box-header::before,
    .plan-box-header::after {
        width: 50px;
        height: 50px;
    }
    
    .plan-header-area {
        margin-bottom: 14px;
    }

    .plan-header-area::before {
        left: calc(50% - 72px);
        width: 20px;
        height: 40px;
    }

    .content-hochiminh .plan-header-area::before {
        left: calc(50% - 78px);
    }

    .plan-header-area .jp {
        font-size: 20px;
    }

    .plan-header-area .en {
        font-size: 10px;
    }

    .title-green {
        font-size: 14px;
        padding: 0 10px 10px 28px;
        border-bottom: 3px dotted var(--green);
        margin-bottom: 16px;
        position: relative;
        text-align: left;
    }

    .icon-taxi {
        position: absolute;
        left: 0;
        margin-right: 4px;
        width: 24px;
        height: 24px;
        padding-top: 3px;
    }

    .icon-taxi img {
        width: 60%;
    }

    .icon-round {
        margin: 0 6px;
    }
}


/* scroll */
.scroll-container {
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
}

.scroll-wrap {
/*  width: 1200px;*/
    width: fit-content;
    margin: auto;
}

@media (min-width: 576px) {
    .scroll-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .scroll-container {
        max-width: 720px;
    }
}
@media (min-width: 960px) {
    .scroll-container {
        max-width: 920px;
    }
}

@media (min-width: 1140px) {
     .scroll-container {
         overflow-x: auto;
         max-width: 1080px;
    }
}

@media (min-width: 1300px) {
     .scroll-container {
         max-width: 1240px;
    }
}

/* campiagn title */
.campaign-title {
    position: relative;
    text-align: center;
    max-width: 60%;
    margin: auto;
}

.campaign-title::before,
.campaign-title::after {
    content: '';
    position: absolute;
    top: 0;
    display: inline-block;
    z-index: 2;
    width: 38px;
    height: 54px;
}

.campaign-title::before {
    left: 3vw;
    background: url('/static/img/tour/global/vietnam/img-cpn-flag-l.svg') no-repeat center center /100%;
}

.campaign-title::after {
    right: 3vw;
    background: url('/static/img/tour/global/vietnam/img-cpn-flag-r.svg') no-repeat center center /100%;
}

.campaign-title span {
    text-align: center;
    display: block;
    position: relative;
    height: 50px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--white);
    padding: 10px 8%;
    background: var(--yellow);
}

.campaign-title span::before, 
.campaign-title span::after {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  z-index: 1;
}

.campaign-title span::before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 15px;
  border-color: transparent transparent transparent var(--bgWhite-2);
  border-style: solid;
}

.campaign-title span::after {
  top: 0;
  right: 0;
  border-width: 25px 15px 25px 0px;
  border-color: transparent var(--bgWhite-2) transparent transparent;
  border-style: solid;
}


/*新春用*/
.campaign-title.new-year span {
    background: #c69c1d;
}

.campaign-title.new-year::before {
    left: 1vw;
    width: 76px;
    height: 65px;
    background: url('/static/img/tour/global/vietnam/img-cpn-flag-new-year.svg') no-repeat center center/ 100%;
}

.campaign-title.new-year::after {
    right: 1vw;
    top: -19px;
    width: 76px;
    height: 65px;
    background: url('/static/img/tour/global/vietnam/img-cpn-flag-new-year.svg') no-repeat center center/ 100%;
    transform: rotate(-180deg);
}

.campaign-attention {
    margin: 20px auto 16px;
}

@media (max-width: 1024px) {
    /*campiagn title*/
    .campaign-title {
        max-width: 70%;
    }

    .campaign-title::before {
        left: 8%;
    }

    .campaign-title::after {
        right: 7%;
    }
}

@media (max-width: 767px) {
    /*campiagn title*/
    .campaign-title {
        max-width: 96%;
    }

    .campaign-title::before,
    .campaign-title::after {
        top: 0;
        width: 38px;
        height: 54px;
    }

    .campaign-title::before {
        left: 8%;
    }

    .campaign-title::after {
        right: 8%;
    }

    .campaign-title span {
        height: 50px;
        font-size: 16px;
        line-height: 2;
        padding: 8px 8%;
    }

    .campaign-title span::before {
      top: 0;
      left: 0;
      border-width: 25px 0px 25px 15px;
      border-color: transparent transparent transparent var(--bgWhite-2);
      border-style: solid;
    }

    .campaign-title span::after {
      top: 0;
      right: 0;
      border-width: 25px 15px 25px 0px;
      border-color: transparent var(--bgWhite-2) transparent transparent;
      border-style: solid;
    }
    
    /*新春用*/
    .campaign-title.new-year::before {
        left: 1vw;
        width: 68px;
        height: 65px;
    }

    .campaign-title.new-year::after {
        right: 1vw;
        top: -19px;
        width: 68px;
        height: 65px;
    }

    .campaign-attention {
        margin: 20px auto 16px;
    }
}


/* plan 予約　ブロック
------------------------------*/
.plan-block {
    padding: 60px 0 0;
}


/*plan card*/
.plan-list {
  display: flex;
  gap: 1%;
}

.plan-item {
    width: 404px;
    border: none;
    background: var(--white);
    box-shadow: 0 3px 10px var(--box-shadow);
    margin-top: 10px;
    margin-right: 2%;
}

.plan-item:last-child {
    margin-right: 0;
}

.plan-img {
    width: 100%;
    max-width: 100%;
    text-align: center;
}

.plan-img img {
    margin: auto;
    border-radius: 10px;
}

.plan-point {
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-left: 24px;
}

.plan-point::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 100px;
}

.plan-price {
    font-weight: 700;
}

.plan-price b {
    font-size: 14px;
    color: var(--black);
}

.plan-price .num,
.plan-price.campaign-price .num {
    font-size: 24px;
}

.plan-price span {
    font-weight: 700;
}

.plan-price.campaign-price .num {
    color: var(--black);
}

.plan-price.campaign-price .base-price {
    text-decoration: line-through;
    font-size: 80%;
}

.plan-price.campaign-price .c-price {
    font-size: 100%;
    margin-left: 1%;
    color: var(--red);
}

@media (max-width: 1024px) {
  .plan-name {
      font-size: 16px;
  }

  .plan-price {
      font-size: 22px;
  }
}

@media (max-width: 767px) {
    .plan-block {
        padding: 40px 0;
    }

    .plan-item {
        width: 260px;
        max-width: 100%;
        padding: 18px 16px;
    }
    
    .plan-point {
        font-size: 13px;
        padding-left: 16px;
    }
    
    .plan-point::before {
        width: 11px;
        height: 11px;
    }
    
    .plan-price b {
        font-size: 12px;
    }

    .plan-price .num {
        font-size: 16px;
    }
}



/* item */
.item-point {
    position: relative;
}

.item-point::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: -6px;
    right: -12px;
    display: block;
    width: 110px;
    height: 110px;
    background: url('/static/img/tour/global/vietnam/icon-point.svg') no-repeat center center/ 100%;    
}

@media (max-width: 767px) {
    .item-point::before {
        top: -8px;
        right: -16px;
        width: 80px;
        height: 80px;
    }
}

/* button */
.button-list li{
    margin-top: 12px;
}

.plan-button {
    max-width: 154px;
    border-radius: 100px;
    border: 1px solid var(--border2);
    padding: 6px 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}
.plan-button::after {
    font-size: 13px;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.card-attention {
    line-height: 1.2;
    font-size: 12px;
    color: var(--gray);
}

@media (max-width: 767px) {

    /* button */
    .button-list li{
        margin-top: 10px;
    }

    .plan-button {
        padding: 5px 30px;
        font-size: 12px;
    }
}


/* plan slick */
.plan-card .slick-dots {
    bottom: 10px;
}

@media (max-width: 767px) {

    /*plan slick */
    .plan-card .slick-dots {
        bottom: 0;
    }
    
    .plan-price.campaign-price .base-price {
        font-size: 60%;
    }

    .plan-price.campaign-price .c-price {
        font-size: 20px;
    }
}


/* plan modal */
.modal-header {
    background: var(--green);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
}

.plan-modal .card-plan-01 {
    box-shadow: none;
    border: 1px solid var(--border);
    font-size: 14px;
}

.plan-modal .modal-plan-heading {
  font-size: 18px;
  font-weight: bold;
}


.modal-plan-list li {
    display: block;
    margin-top: 16px;
    padding: 20px 16px;
    background: var(--bgBage);
}

.modal-plan-title {
    font-size: 16px;
}

.modal-plan-lead {
    font-size: 14px;
}

.modal-plan-img img {
    border-radius: 10px;
}

.plan-modal .plan-button{
    color: var(--white);
    width: 100%;
    margin-left: auto;
    background: var(--gold);
    border: none;
    text-align: center;
}

.plan-modal .plan-button::after{
    right: 10px;
}

.plan-modal .modal-footer {
    margin: auto;
    border-top: none;
}

@media (max-width: 767px) {
    
    .plan-modal .modal-plan-title {
      font-size: 14px;
    }
    
}


/* num */
.num-list .num {
    background: var(--yellow);
    padding: 3px 9px;
    text-align: center;
    display: inline-block;
    color: var(--white);
    border-radius: 100%;
    font-size: 14px;
    margin-right: 6px;
}
.num-list .item {
    font-weight: bold;
    font-size: 18px;
    margin-right: 16px;
}

@media (max-width: 767px) {
    .num-list .num {
        padding: 3px 9px;
        font-size: 14px;
    }
    .num-list .item {
        font-size: 14px;
        margin-bottom: 10px;
        margin-right: 10%;
    }
}


/* num */
.num-radius {
    background: var(--yellow);
    padding: 3px 9px;
    text-align: center;
    display: inline-block;
    color: var(--white);
    border-radius: 100%;
    font-size: 14px;
    margin-right: 6px;
    margin-bottom: 8px;
}
.num-list .item {
    font-weight: bold;
    font-size: 18px;
    margin-right: 16px;
}

@media (max-width: 767px) {
    .num-radius {
        padding: 3px 8px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    .num-list .item {
        font-size: 14px;
        margin-bottom: 10px;
        margin-right: 10%;
    }
}

@media (max-width: 480px) {
    .num-radius {
        padding: 1px 6px;
        font-size: 11px;
        margin-bottom: 8px;
    }
}

/* attention */
.attention-list li{
    position: relative;
    padding-left: 14px;
    margin-top: 6px;
}

.attention-list li::before {
    content: '※';
    position: absolute;
    top: 3px;
    left: 0;
    font-size: 80%;
}
.spot-box .attention-list {
    max-width: 80%;
    justify-content: center;
    line-height: 1;
}

@media (max-width: 767px) {
    .attention-list li{
        padding-left: 12px;
        margin-top: 10px;
    }

    .attention-list li::before {
        font-size: 70%;
        top: 5px;
    }
    
    .spot-box .attention-list {
        max-width: 100%;
    }
    
}

/*dot list*/
.dot-list li{
    position: relative;
    padding-left: 16px;
    margin-top: 10px;
}
.dot-list li::before{
    content: '※';
    position: absolute;
    top: 4px;
    left: 0;
    font-size: 12px;
/*    color: var(--yellow);*/
}

.spot-box .dot-list {
    line-height: 1;
}



/* 集合場所
-----------------------------------*/
/*モーダル*/
.mt-modal-trigger {
    font-size: 18px;
}
.mt-modal .modal-dialog{
    max-width: 800px;
}
.mt-modal .modal-header {
    background: var(--bgBage);
}

.mt-modal .modal-header .close {
   margin: 0;
   position: absolute;
   top: 10px;
   right: 20px;
   padding: 20px 10px;
}

.mt-box {
    border-radius: 30px;
    background: var(--white);
/*    padding: 10px 2%;*/
    position: relative;
}

.mt-title {
    width: fit-content;
    margin: 0 auto;
    padding: 16px 30px;
    background: var(--bgBage);
    color: var(--black);
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    position: relative;
}

.mt-title::before,
.mt-title::after {
    content: '';
    position: absolute;
    display: inline-block;
    background: var(--orange);
    border-radius: 50px;
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
}

.mt-title::before{
    left: 5px;
}

.mt-title::after{
    right: 5px;
}

.mt-place-list {
    display: flex;
    align-items: center;
}

.mt-line {
    width: 32%;
    padding: 4px 10px;
    text-align: center;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
}

.mt-line.green {
    border: 2px solid var(--green);
    color: var(--green);
}

.mt-line.orange{
    border: 2px solid var(--orange);
    color: var(--orange);
}

.mt-text {
    margin-left: 3%;
    width: 70%;
    font-size: 18px;
    font-weight: bold;
}

.mt-img {
    margin-top: 16px;
}

.mt-img img {
    border-radius: 10px;
}

.mt-list {
    display: flex;
    justify-content: center;
}

.mt-list li {
    width: 48%;
    margin: 30px 2%;
}

.mt-attention {
    font-size: 90%;
/*    text-align: center;*/
}

@media (max-width: 996px) {
    
    .mt-line {
        width: 40%;
        font-size: 18px;
    }

    .mt-text {
        width: 60%;
        font-size: 16px;
    }
}


@media (max-width: 767px) {
    .mt-modal-trigger {
        font-size: 16px;
    }
    
    .mt-modal .modal-header .close {
        margin: 0;
        position: absolute;
        top: 5px;
        right: 10px;
        padding: 10px 10px;
    }
    
    .mt-box {
        padding: 20px 5% 14px;
    }

    .mt-title {
        margin: 0 auto;
        padding: 12px 30px;
        font-size: 20px;
    }

    .mt-place-list {
        justify-content: center;
    }

    .mt-line {
        width: fit-content;
        padding: 4px 16px;
        font-size: 13px;
    }

    .mt-text {
        margin-left: 2%;
        width: 68%;
        font-size: 14px;
    }

    .mt-img {
        margin-top: 16px;
    }

    .mt-list {
        display: flex;
        flex-wrap: wrap;
    }

    .mt-list li {
        width: 100%;
        margin: 20px 2% 30px;
    }
    
    .mt-attention {
        font-size: 80%;
        text-align: left;
    }

}


/* spot
---------------------------------*/
.spot-box {
    position: relative;
    z-index: 1;
    padding: 45px 0 10px;
}

.spot-box .title {
    text-align: center;
}

.box-radius-border-yellow {
    border: 6px solid var(--yellow);
    padding: 50px 4%;
}

.title-yellow {
    position: relative;
    font-size: 22px;
    font-weight: 700;
    padding: 0 10px 10px 0;
    border-bottom: 4px dotted var(--yellow);
    margin-bottom: 36px;
    vertical-align: middle;
}

.icon-location {
    text-align: center;
    margin: auto;
    margin-right: 8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--green);
    padding-top: 4px;
}


/*spot img */
.spot-slide-wrap {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
}

.spot-slide-item {
    margin-top: 16px;
    width: calc(100% / 3);
}

.spot-slide-img {
    margin: 0 8px;
}

.spot-slide-img img {
    border-radius: 5px;
    margin: auto;
}

.spot-slide-wrap figcaption {
/*    display: block;*/
    margin-top: 6px;
    font-size: 14px;
}

/*slider 調整*/
.spot-slide-wrap .slick-prev:before, 
.spot-slide-wrap .slick-next:before {
    font-size: 20px;
    color: var(--yellow);
}
.spot-slide-wrap .slick-prev {
    z-index: 3;
    left: 10px;
}
.spot-slide-wrap .slick-next {
    right: 20px;
}

.spot-slide-wrap .slick-dots {
    bottom: -30px;
}

.spot-slide-wrap .slick-dots li button {
    background: var(--bgGray) !important;
    opacity: 1;
}
.spot-slide-wrap .slick-dots li.slick-active button {
    background: var(--yellow) !important;
}

.spot-slide-wrap .slick-dots li button:before {
    font-size: 8px;
}

.spot-button.arrow-bottom .button-link::after {
    transform: rotate(90deg);
    top: 26%;
}

.spot-slide-wrap .slick-dots li {
    width: 6px;
    height: 6px;
}



@media (max-width: 767px) {
    .spot-slide-wrap {
        display: flex;
        flex-wrap: wrap;
    }

    .spot-slide-item {
        margin-top: 10px;
/*        width: 100%;*/
        width: 50%;
    }
    
    .spot-slide-wrap figcaption {
        font-size: 12px;
    }
    
    /*slider 調整*/
    .spot-slide-wrap .slick-prev:before, 
    .spot-slide-wrap .slick-next:before {
        font-size: 14px;
    }
    .spot-slide-wrap .slick-prev {
        left: -14px;
    }
    .spot-slide-wrap .slick-next {
        right: -12px;
    }

    .spot-slide-wrap .slick-dots li button:before {
        font-size: 8px;
    }

    .spot-slide-wrap .slick-dots li {
        width: 6px;
        height: 6px;
    }
    

/*
    .spot-slide-wrap{
      opacity: 0;
      transition: opacity .3s linear;
    }
    .spot-slide-wrap.slick-initialized{
      opacity: 1;
    }
*/

}

@media (max-width: 480px) {   
    .spot-slide-wrap figcaption {
        font-size: 11px;
    }
}



/* map */
.area-map-wrap {
    width: 100%;
    max-width: 914px;
    margin: 30px auto;
}

.area-map-wrap iframe {
    width: 100%;
    height: 457px;
}

/* area list*/
.area-list {
    max-width: 914px;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
    margin: auto;
}

.area-list .item {
    width: 30%;
    margin-left: 2%;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    padding-left: 2%;
}

.area-list .item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    border: 4px solid var(--green);
    border-radius: 50px;
    width: 14px;
    height: 14px;
}

.area-list .item span {
    font-size: 80%;
    font-weight: 400;
    color: var(--gray);
    display: inline-block;
    padding: 0 1.5%;

}

/*カラー変更*/
.tab-content.content-hanoi .area-list .item::before {
    border-color: var(--orange);
}
.tab-content.content-danang .area-list .item::before {
    border-color: var(--gold);
}


@media (max-width: 767px) {
    .spot-box {
        position: relative;
        z-index: 1;
        padding: 40px 0;
    }
    
    .spot-box .title {
        text-align: left;
    }

    .box-radius-border-yellow {
        border: 4px solid var(--yellow);
    }
    
    .title-yellow {
        font-size: 14px;
        padding: 0 10px 10px 28px;
        border-bottom: 3px dotted var(--yellow);
        margin-bottom: 16px;
        position: relative;
    }

    .icon-location {
        position: absolute;
        bottom: 6px;
        left: 0;
        margin-right: 4px;
        width: 24px;
        height: 24px;
        padding-top: 3px;
    }
    
    .icon-location img {
        width: 50%;
    }


    /* map */
    .area-map-wrap {
        width: 100%;
        max-width: 714px;
        margin: 30px auto 12px;
    }

    .area-map-wrap iframe {
        width: 100%;
        height: 265px;
    }
    
    
    /* area list*/
    .area-list {
        max-width: 914px;
        justify-content:  flex-start;
    }

    .area-list .item {
        width: 48%;
        font-size: 14px;
        padding-left: 4.5%;
    }
    
    .area-list .item::before {
        width: 12px;
        height: 12px;
    }
    
    .area-list .item span {
        display: block;
    }
}

    .area-info .num-list {
        display: flex;
        justify-content: center;
    }
    .area-info-plan {
        width: 100%;
        gap: 2.5%;
        display: flex;
        justify-content: center;
        margin: auto;
    }
    .area-info-plan .item{
        width: 50%;
        padding: 3%;
        display: flex;
        align-items: center;
        border-radius: 20px;
    }


@media (max-width: 991px) {
    .area-info-plan {
        width: 100%;
    }
    
    .area-info-plan .item {
        width: 50%;
    }

}

@media (max-width: 767px) {
    .area-info .num-list {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .area-info-plan {
        width: 100%;
        flex-wrap: wrap;
    }
    .area-info-plan .item{
        width: 100%;
        padding: 3%;
        padding: 6% 4%;
    } 
    .area-info-plan .item:not(:first-child){
        margin-top: 10px;
    }
}

/* info */
.charter-info {
    padding: 4% 6% 4% 14%;
}

.icon-info {
    position: relative;
}
.icon-info::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url('/static/img/tour/global/vietnam/icon-info.svg') no-repeat center center / 100%;
}
@media (max-width: 991px) {
    .icon-info::after {
        left: 3%;
    }
}
@media (max-width: 767px) {
    .icon-info::after {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
    }
    
    .charter-info {
        padding: 14% 6% 4% 4%;
    }
}


/* 観光マップ
---------------------*/
.map-block {
    padding: 60px 0 0;
}
@media (max-width: 767px) {
    .map-block {
        padding: 40px 0;
    }
}



/*　Notes
----------------------------------*/
.notes-area{
    position: relative;
    padding: 60px 0 90px;
}

.notes-area .container{
    width: 96%;
    max-width: 670px;
}

.notes-heading .en::before {
    content: none;
}

.notes-heading .en::after {
    background: var(--black);
}

.notes-list {
    width: 96%;
    max-width: 670px;
    margin: auto;
}

.notes-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    font-weight: 300;
    font-size: 16px;
}

.notes-list li::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: var(--black);
}

@media (max-width: 767px) {
    .notes-area {
        padding: 40px 0 60px;
    }

    .notes-area .container{
        width: 90%;
        max-width: 100%;
    }
    .notes-list {
        width: 90%;
        max-width: 100%;
    }

    .notes-list li {
        margin-bottom: 10px;
        padding-left: 10px;
        font-size: 13px;
        line-height: 1.4;
    }

    .notes-list li::before {
        top: 6px;
        width: 4px;
        height: 4px;
    }
}
