:root {
    /*--color_d: #413c3c;*/
    /*--color_o: #f56e41;*/
    /*--color_b: #7da5cd;*/

    --color_g: #47ff9f;

    /*--color_w: #fff;*/
    /*--color_dw: #f4f1ec;*/
}


*, *::before, *::after {
    box-sizing: border-box;
}


html {
    overflow-x: hidden;
}

html, body {
    position: relative;
    height: 100%;
}

body {
    margin: 0;
    height: auto;
    text-transform: none;
    /*font-family: "ArponaSansRegular","GenYoGothic2TWM", sans-serif;*/

    font-family: 'Rajdhani',"Noto Sans TC","Nunito", sans-serif;
    /*font-family: "Noto Sans TC","Nunito", sans-serif;*/
    font-feature-settings: normal;
    font-style: normal;
    letter-spacing: normal;
    line-break: auto;
    -webkit-text-size-adjust: none;
    color: #3c3c46;
    letter-spacing: .1em;
    font-optical-sizing: auto;

    /*background: var(--color_dw);*/
    /*color: var(--color_d);*/
    /*transition: background 5s ease-out,color 5s ease-out;*/
    width: 100%;
    
    line-height: 1.5em;
    font-weight: 300;
    /*overflow-x: hidden;*/
}


body.fixed {
    overflow: hidden;
    position: fixed;
}


h1,h2,h3,h4,h5,p,a {
    line-height: 1.5em;
}

h1 {
    /*font-size: 2em;*/
    margin: 0;
    margin-bottom: 1em;
    /*font-size: 2em;*/
}

h1,h2 {

    /*font-size: 3em;*/
    /*font-family: "ArponaLight","GenWanMin2TW";*/
    /*font-family: "ArponaLight","GenYoMin2TWM", sans-serif;*/
    /*font-weight: 400;*/
}

h3 {
    font-weight: 400;
}



p,span {
    /*font-family: "ArponaSansRegular","GenYoGothic2TWM", sans-serif;*/
    margin: 0;
    line-height: 1.5em;
}

a {
    /*font-family: "ArponaLight","GenYoMin2TWEL", sans-serif;*/
    color: initial;
    text-decoration: none;
}

a:hover {
    /*color: var(--color_b);*/
}

b {
    font-weight: 500;
}

header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
    background: #ededed;
    background: transparent;

}

footer {
  overflow: hidden;
}

img {
    width: 100%;
    height: auto;
}

.sty_title {
    font-family: "Rajdhani", sans-serif;
}

.logo {
  cursor: pointer;
}

.logo img{
    height: 50px;
    width: auto;
    margin-right: 60px;
}

.header {
    padding: 20px 60px;
    /* padding-bottom: 20px; */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    /*gap:60px;*/

    max-width: 100%;
    margin: 0 auto;
}

.container {
  /*width:1440px;*/
  width:100%;
  padding-right: 15px;
  /*padding-left: 15px;*/
  /*padding-left: 100px;*/
  padding-left: 60px;
  margin-right: auto;
  margin-left: auto;
  z-index: 3;

}

h2 {
      line-height:1.1;
}


ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
section {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

#pc_menu {
  display: flex;
  flex-wrap: nowrap;
}

.tool_bar {
    display: flex;
    flex-wrap: nowrap;
    gap:20px;
    flex-grow: 1;
    justify-content: end;
    align-items: center;
}

.tool_bar a {
    line-height: 1;
    display: block;
    height: 24px;
}

.menu_label {
    margin-right: 60px;
    overflow-x: auto;
    overflow-y: hidden;
}

.nav__menu {
    
  min-width: 120px;
  text-align: center;
  height: 36px;
  line-height: 36px;
  border-radius: 5px;
}

.nav__menu_dr {
  
  border-radius: initial;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}


.nav__menu-items {
    display: none;
    min-width: 120px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #000;
    /*padding: 5px 10px;*/
    /*border: solid 1px #000;*/
    /*border-radius: 5px;*/
    border-top: 0;
    /*height: 65px;*/
    /*background-color: #2c8fb5;*/
}

.nav__menu-items:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav__menu-lists {
  position: absolute;
}

.nav__menu:hover,
.nav__menu-items:hover {
  background-color: #000;
  color: #fff;
  transition:all .5s ease;
}

.nav__menu-items:hover > a,
.nav__menu:hover > a {
  color: #fff;
  transition:all .5s ease;
}
.nav__menu:hover > .nav__menu-lists li {
  display: block;
}
.nav__menu:hover > .nav__menu--1-lists li:nth-child(1) {
  opacity: 0;
  -webkit-animation: menu1 ease-in-out forwards;
          animation: menu1 ease-in-out forwards;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-delay: 0ms;
          animation-delay: 0ms;
}
@-webkit-keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
@keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.nav__menu:hover > .nav__menu--1-lists li:nth-child(2) {
  opacity: 0;
  -webkit-animation: menu1 ease-in-out forwards;
          animation: menu1 ease-in-out forwards;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}
@keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.nav__menu:hover > .nav__menu--1-lists li:nth-child(3) {
  opacity: 0;
  -webkit-animation: menu1 ease-in-out forwards;
          animation: menu1 ease-in-out forwards;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
@keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.nav__menu:hover > .nav__menu--1-lists li:nth-child(4) {
  opacity: 0;
  -webkit-animation: menu1 ease-in-out forwards;
          animation: menu1 ease-in-out forwards;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}
@keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.nav__menu:hover > .nav__menu--1-lists li:nth-child(5) {
  opacity: 0;
  -webkit-animation: menu1 ease-in-out forwards;
          animation: menu1 ease-in-out forwards;
  -webkit-animation-duration: 300ms;
          animation-duration: 300ms;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
@keyframes menu1 {
  from {
    opacity: 0;
    transform: rotateX(-180deg);
  }
  to {
    opacity: 1;
    transform: rotateX(0deg);
  }
}


.swiper-pagination-bullet {
    border-radius: 0;
}

.index_sec1 {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 530px;
}

.index_title {
    font-size: 32px;
}

.index_c {
    /*background: #47ff9f;*/
    background: rgb(71 255 159 / 80%);
    width: 300px;
    height: 300px;
    border-radius: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-direction: column;
    gap: 20px;
    z-index: 1;

    backdrop-filter: blur(2px);
}

.index_c1 {
    /*top: -100px;*/
    /*top: -14vh;*/
    top: -5vh;
    left: 10vw;
    width: 350px;
    height: 350px;
    opacity: 0;
    visibility: hidden;
}

.index_c_title {
    font-size: 28px;
    font-weight: 600;
    font-style:italic;
}

.index_c_content {
    text-align: center;
}

.index_c2 {
    /*top: 60px;*/
    /*right: 30vw;*/
    /*left: 35vw;*/
    width: 320px;
    height: 320px;

    top: 3vh;
    left: 56vw;
    opacity: 0;
    visibility: hidden;
    
}


.index_c3 {
    /*top: 280px;*/
    /*right: 30vw;*/
    /*left: 15vw;*/
    width: 300px;
    height: 300px;

    top: 35vh;
    left: 26vw;
    opacity: 0;
    visibility: hidden;

}

.index_c1.active,
.index_c2.active,
.index_c3.active {
  opacity: 1;
  visibility: visible;
  transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
}

.index_title_grab {
  cursor: pointer;
}


footer {
    background: #000;
    width: 100%;
    color: #fff;
}

.invite_icon {
    width: 100px;
    height: auto;

    position: absolute;
    right: 0;
    z-index: 1;
    bottom: -50px;
    display: none;
}

.footer {
    max-width: 100%;
    padding: 60px;
    padding-bottom: 0; 
    margin: 0 auto; 
}

.footer_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap:60px;
    flex-grow: 1;
}

/*.footer_menu > div{
    width: 50%;
}*/

.copyright {
    padding: 1em 0;
    padding-top: 60px;
    text-align: right;
    width: 100%;
    font-size: 12px;
}

.footer_menu_l {
    max-width: calc(50vw - 60px);
    /*max-width: 660px;*/
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.footer_logo {
    height: 60px;
    width: auto;
}

.footer_l_txt {
    min-width: 152px;
    padding-left: 60px;
    width: 100%;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    font-style: italic;
}

.footer_menu_r {
    display: flex;
    font-size: 14px;
}

footer .fb_icon svg,
footer .ig_icon svg,
footer .yt_icon svg {
    color: #fff;
}

.footer_icon {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: end;
    flex-grow: 1;
}

.footer_icon > div{
    padding-bottom: 20px;
}

.footer_grab {
    display: flex;
    align-items: flex-start;
}

.index_sec1_all {
    max-width: 1440px;
}

.secline_grab {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding : 0 60px;
}

.secline_grab.r2 {
   padding : 60px 0; 
}

.secline {
    background: #000;
    height: 2px;
}

.secline_txt {
    padding: 0 20px;
    font-weight: 500;
}

.secline_l {
    width: 10vw;
}

.secline_r {
    flex-grow: 1;
}

.footer_p {
    width: 100%;
    padding-bottom: 60px;
    text-align: center;
    font-family: "Noto Serif TC", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

.index_sec2 {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 60px;
    gap:60px;
}


.index_sec2_l {
    /*width: 75%;*/
    width: calc(75vw - 120px);
}

.index_sec2_r {
    /*width: 30%;*/
    margin-top: 60px;
    flex-grow: 1;
    min-width: 300px;
    max-width: calc(25vw - 150px);

    overflow-x: hidden;

    /*padding: 20px;*/
    /*border-radius: 10px;*/
    /*box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);*/
}

.icon_7 {
    width: 30px;
    margin-left: 30px;
    height: auto;
}

.sec2_start_i {
    display: flex;
    align-items: center;
    width: 60px;
    height: calc( (75vw - 270px)/3);
    min-height: 160px;
}

.index_sec2_l_row {
    display: flex;
    flex-wrap: nowrap;
    gap:30px;
}

.index_sec2_l_row_r {
    display: flex;
    flex-wrap: wrap;
    gap:30px;
}

.sec2_item {
    width: calc((100% - 60px) / 3);
    min-width: 160px;
}

.sec2_img {
    width: calc( (75vw - 270px)/3);
    /*width: calc((100% - 60px) / 3);*/
    height: calc( (75vw - 270px)/3);
    min-width: 160px;
    min-height: 160px;
}

.sec2_img img {
    /*border-radius: 5%;*/
    /*border-radius: 10px;*/
    border-radius: 5px;
}

.sec2_txt {
    padding-left: 90px;
    text-align: -webkit-center;
    margin: 60px 0;
}

.sec2_item_txt {
    /*padding: 10px 20px;*/
    padding: 1em;
}

.sec2_item_txt h3{
    margin: 0;
    font-size: 1em;
    line-height: 1em;
}

.sec2_item_txt p{
    font-size: 14px;
}    

.index_sec2_l_row.r2 {
    margin-top: 30px;
}

.index_sec2_r_title {
    display: flex;
    flex-wrap: nowrap;
    border-radius: 10px;
}

.index_sec2_r_item {
    background: #fff;
    padding: 20px;
    /*border-radius: 10px;*/
    border-radius: 5px;
    box-shadow: 1px 1px 4px 0px rgba(0,0,0,0.3);
}

.index_sec2_r_item.r2 {
    margin-top: 1em;
}

.icon8 {
    /*height: 30px;
    width: 30px;*/
    height: 28px;
    width: 28px;
    /*background: rgb(71 255 159 / 80%);*/
    background: #71f69f;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.index_sec2_r_title {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap:1em;
    font-weight: 500;
    letter-spacing: .5em;
}

.icon8 svg {
    /*color: #71f69f;*/
    color: #fff;
}

.index_sec2_r_line {
    background: rgb(71 255 159 / 80%);
    height: 2px;
    margin: 1em 0;
}

.no_w_flex {
    display: flex;
    flex-wrap: nowrap;
}

.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.index_sec2_r_item_title {
    /*border-radius: 10px;*/
    border-radius: 5px;
    margin-right: 1em;
    writing-mode: tb;
    padding-right: 7px;
    background: rgb(71 255 159 / 80%);
}

.no_w_flex.sec2_r2 {
    margin-top: 1em;
}

.index_map {
    padding: 60px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 100px;
} 

.index_map h3{
    margin:0;
    margin-bottom: 1em;
}

.index_map p{
    margin-bottom: 1em;
}

.index_map iframe {
    width: 100%;
}

.body {
    background-image: linear-gradient(to right top, #fefefe, #fafafa, #f5f5f5, #f1f1f1, #ededed);


    /*background-image: linear-gradient(
      to bottom right,
      #ffffff 0%,
      #ffffff 47%,
      rgba(0,0,0,0.05) 51%,
      #dddddd 53%,
      #dddddd 100%
    );*/
    /*background-image: linear-gradient(  to bottom left,#ededed 0%,  #ededed 48%,rgba(0,0,0,0.05) 81%,  #fefefe 82%,  #fefefe 100%);*/

}

.body.only {
    background-image: initial;
    background: #fafafa;
}

/*mouse style*/
.cursor_sty {
  position: fixed;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: -9px;
  margin-left: -9px;
  pointer-events: none;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor_sty::before,
.cursor_sty::after {
  content: "";
  position: absolute;
  width: 18px;   /* 固定大小 */
  height: 18px;
  border-radius: 50%;
  /*background-color: rgba(71, 255, 159, 0.8);*/
  background-color: rgba(71, 255, 159, 0.6);
}

/* 第1個圓圈：固定大小，進行淡出 */
.cursor_sty.hovered::before {
  animation: fadeCircle 1.2s infinite;
}

/* 第2個圓圈：由小變大 */
.cursor_sty.hovered::after {
  animation: growCircle 1.2s infinite;
}

/* 淡出動畫 */
@keyframes fadeCircle {
  0%   { opacity: 1; }
  50%  { opacity: 0.3; }
  100% { opacity: 0; }
}

/* 擴大動畫 */
@keyframes growCircle {
  0%   { transform: scale(0.1); opacity: 0; }
  50%  { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(1);   opacity: 1; }
}

.cursor_sty.hovered {
  transform: scale(3);
}


.banner_line {
    width: 100px;
    height: 5px;
    background: #47ff9f;
    margin-bottom: .5em;
}


/*menu hambuger*/

.menu_area {
    display: inline-block;
    position: relative;
    text-align: center;
    /*top: 5px;*/
    /*padding: 15px;*/
}

#menu.open .menu_area {
    height: 30px;
    top: 3px
}

#menu_switch_open {
    width: 22px;
    height: 22px;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 1000
}

#menu_switch_open span,.menu_switch_open span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    border-radius: 9px;
    opacity: 1;
    right: 0;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out
}

#closeA span:first-child,#menu_switch_open span:first-child,.menu_switch_open span:first-child {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#closeA span:nth-child(2),#menu_switch_open span:nth-child(2),.menu_switch_open span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#closeA span:nth-child(3),#menu_switch_open span:nth-child(3),.menu_switch_open span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

#menu_switch_open.open span:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 1px;
    right: -4px;
    background: #000
}

#closeA.open span:nth-child(2),#menu_switch_open.open span:nth-child(2),.menu_switch_open.open span:nth-child(2) {
    width: 0;
    opacity: 0
}

#menu_switch_open.open span:nth-child(3),.menu_switch_open.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 17px;
    right: -4px;
    width: 100%;
    background: #000
}

.menu_switch_open {
    height: 22px;
    transform: rotate(0);
    z-index: 1000;
    opacity: 0
}

.tool_bar .nav__menu {
    background: #000;
    color: #fff;
}

.tool_bar .nav__menu a{
    height: 36px;
    line-height: 36px;
    color: #fff;
    font-weight: 400;
}

.menu_area {
    display: none;
}
 
#menuMask {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 98;
    transition: opacity .5s ease-in-out, visibility .5s ease-in-out;
    /*display: none;*/
}

#menuMask.open {
    opacity: 1;
    visibility: visible;
    /*display: block;*/
    /*background: rgba(230,230,230,.7)*/
    /*background: rgb(134 134 134 / 70%);*/
    background: rgb(230 230 230 / 70%);
}

#menu {
    position: fixed;
    top: 0;
    /*left: 0;*/
    right: 0;
    height: 100%;
    display: block;
    z-index: 99;
}

#menu .menuOutLayer #menu_share {
    text-align: left;
    width: calc(90% - 60px);
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 60px
}

#menu .menuOutLayer {
    display: block;
    position: absolute;
    height: 100%;
    width: calc(50vw + 100px);
    color: #f7f7f7;
    /*left: 100vw;*/
    right: 0;
    z-index: 99;
    /*transition: left 1s ease-in-out*/

    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: box-shadow 0.45s 
    cubic-bezier(.645, .045, .355, 1), transform 0.45s 
    cubic-bezier(.645, .045, .355, 1), -webkit-transform 0.45s 
    cubic-bezier(.645, .045, .355, 1);
}

#menu.open .menuOutLayer {
    display: block;
    width: calc(50vw + 100px);
    /*left: calc(50vw - 100px);*/
    z-index: 99;
    /*transition: left .6s ease-in-out;*/
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;

    -webkit-transform: translateX(0);
    transform: translateX(0);
}

#menu.open .menuOutLayer::-webkit-scrollbar {
    display: none;
    width: 0;
    background: 0 0
}

#menu li p {
    margin: 10px 0 20px;
    color: #aaa
}

#menu .topTitle,.list_title_area h1,.page_book_btn .book_btn,.page_content2_item_txt h3,.page_content2_item_txt p,.sec_news_owl .news_tline,.sec_vi_txt h3,.sec_vi_txt p {
    margin: 0
}

.menu_text {
    width: 90%;
    padding-top: 20px;
    padding-bottom: 60px;
    font-size: 16px
}

.menu_text a {
    font-size: 14px!important;
    margin: 0!important
}

#menu .menu_shareIcon a {
    font-size: 14px
}

.menu_shareIconCenter {
    margin: 0 60px
}

#menu a {
    color: #fff;
    padding: 0;
    margin: .6em 0 .6em 0;
    text-decoration: none;
    -ms-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    text-transform: uppercase;
    display: inline-block;
}

#menu a:hover {
    color: #e0dddf;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out
}

div#menu>ul>li>a {
    color: #000;
    transition: color .5s ease-in-out
}

#menu>ul>li>#menuActive {
    color: #54b2b0;
    -webkit-transition: color .5s ease-in-out;
    -moz-transition: color .5s ease-in-out;
    -ms-transition: color .5s ease-in-out;
    -o-transition: color .5s ease-in-out;
    transition: color .5s ease-in-out
}

div#menu>ul>li>ul a:hover {
    font-weight: 600
}

#menu ul {
    list-style: none;
    margin: 60px 0 0 60px;
    text-align: left;
    /*padding: 20px 20px 0 0;*/
    overflow-y: auto;
    height: calc(100vh - 169px);
    overflow-x: hidden;
}

#menu ul li {
    display: block;
    padding: 0;
    margin: 0
}

#menu ul li .sublabel {
  height: auto;
  max-height: 0;
  overflow: hidden;
  /*margin-left: -5vw;*/
  margin: 0;
  padding: 0;
  padding-left: 2em;
}

#menu ul li .sublabel a {
  font-size: 18px;
}

#menu ul li:hover .sublabel {
  height: auto;
  max-height: 1000px;
  /*background: #81603f;*/
  width: 100vw;
  -webkit-transition: all .9s 
  ease-in-out;
  -moz-transition: all .9s ease-in-out;
  -ms-transition: all .9s ease-in-out;
  -o-transition: all .9s ease-in-out;
  transition: all .9s 
  ease-in-out;
}

/*#menu ul li ul {
    position: absolute;
    left: 0;
    overflow-y: hidden;
    width: 100%;
    z-index: 100;
    opacity: 0;
    max-height: 0;
    -webkit-transition: .9s ease-in-out;
    -moz-transition: .9s ease-in-out;
    -ms-transition: .9s ease-in-out;
    -o-transition: .9s ease-in-out;
    transition: .9s ease-in-out
}

#menu ul li:hover ul,.book_btn.rs {
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out
}

#menu ul li ul li {
    padding-right: 15px
}

#menu ul li ul li a {
    color: #fff;
    margin-right: 0;
    margin-left: 0
}

#menu ul li:hover ul {
    opacity: .9;
    background: #54b2b0;
    height: auto;
    max-height: 100%;
    overflow-y: hidden;
    transition: .5s ease-in-out
}*/

.nav_logo {
    display: none;
}

.open {
    opacity: 1;
    visibility: visible;
}

.triangle2 {
    border-color: #000 #000 transparent transparent;
    border-width: 50vh 20px
}

.triangle3 {
    border-color: transparent #fff #fff transparent;
    border-width: 30vh 30px
}

.triangle2, .triangle3 {
    border-style: solid;
    height: 0;
    vertical-align: top;
    display: inline-block;
    width: 0;
}

.menu_grab {
    width: calc(50vw + 60px);
    height: 100%;
    position: absolute;
    top: 0;
    display: inline-block;
    background: #000;
}

#menu_mobile {
    opacity: 0;
    /*height: 148px;*/
    /*height: 97px;*/
    /*height: 90px;*/
    height: 89px;
    padding: 0;
}

.mo_menu_line {
    height: 1px;
    /*background: #f7f7f7;*/
    background: #47ff9f;
    width: 0;
    /*margin-left: -32px;*/
    margin-left: -35px;
    transition: width 0.1s ease-in-out;
}

#menu.open .mo_menu_line {
    /*width: 180px;*/
    /*width: 100px;*/
    /*transition: width .3s .1s ease-in-out;*/
    /*width: calc(100% - 40px);*/
    width: calc(100% - 21px);
    transition: width .3s 0.1s ease-in-out;
}

body.open {
  position: fixed;
}

body.open header {
    background: transparent;
}

body.open #menu_switch_open span {
    background: #fff !important;
}

body.open .tool_bar a {
    color: #fff;
}

body.open .tool_bar .nav__menu,
body.open .tool_bar .nav__menu a {
   /*background: #fff;*/
   /*color: #000; */
}

body.open .tool_bar .nav__menu {
  background: #47ff9f;
  transition: background 0.5s ease-in-out;
}

.link {
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  color: #47ff9f;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.link:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.mo_logo {
  display: none;
}

.logo {
  line-height: 0;
}

#menu .tool_bar > div {
  display: block;
}

#menu .tool_bar {
    position: absolute;
    bottom: 30px;
    left: 20px;
    align-items: center;
    text-align: left;
    display: none;
}

#menu .tool_bar a {
  margin: 0;
}

.tool_bar .lang {
  display: flex;
  flex-wrap: nowrap;
  /*gap:10px;*/
  align-items: center;
}

.tool_bar span {
  width: 1px;
}

.tool_bar .lang a {
  height: auto;
}

.lang_tw::after {
  content: "|";
  margin: 0 10px;
}

.logo a {
  display: block;
  line-height: 0;
}


.sec_set {
  padding: 60px;
}

.about_sec1 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.about_img {
  /*padding: 5px;*/
  border: 2px solid #47ff9f;
  width: fit-content;
  border-radius: 5px;
  position: relative;
  /*width: 100%;*/
  width: auto;

}

.about_sec1 .about_img {
  width: 300px;
}

.about_img img{
  height: auto;
  /*max-width: 300px;*/
  width: 300px;
  object-fit: cover;
}

.about_img span {
    padding: 10px 0;
    /*background: #fafafa;*/
    background: transparent;
    writing-mode: tb;
    color: #47ff9f;
    color: #fff;
    position: absolute;
    /*left: -0.7em;*/
    left: 0;
    top: 1em;
}


.about_flex {
  display: flex;
}

.about_img_title {
  width: 100%;
  height: 80px;
  padding-top: 10px;
  background: #47ff9f;
  color: #fff;
  color: #000;
  font-size: 16px;
  display: flex;
  align-items: center;   /* 垂直置中 */
  align-items: flex-start;
  justify-content: center; /* 水平置中 */
  gap: .5em;
  text-align: center;
  align-items: center;
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.about_img_flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about_img_txt {
  width: auto;
  max-width: 50%;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
}

.sec_title {
  text-align: center;
}

/*page about*/
.page-sec {
    padding: 0 60px;
    /*max-width: 1440px;*/
    margin: 60px auto;
}

.about-timeLine .page-sec {
    padding: 60px;
    padding-top: 0;
    margin-bottom: 0;
}

.dt {
    display: flex;
    flex-wrap: wrap;
}

.dtc {
    -webkit-box-flex: auto;
    -ms-flex: auto;
    flex: auto;
}

.about-timeLine .dtc {
    width: 50%;
    min-height: 200px;
}

.about-timeLine .dtc:nth-child(1) {
    border-right: 3px solid #47ff9f;
}

.timeLine-year {
    width: 60px;
    font-family: 'Noto Serif TC';
    font-size: 1.5em;
    float: right;
    /* margin-right: -38px; */
    /*margin-right: -34px;*/
    margin-right: -1.33em;
    /*margin-left: calc(-1em - 90px);*/
    position: sticky;
    top: 0;
    background: #fafafa;
    padding-bottom: 20px;
    margin-bottom: 0;
}


.about-timeLine .page-sec .dt.even .timeLine-year {
    float: left;
    /* margin-left: -126px; */
    /*margin-left: -122px;*/
    /*margin-left: -122px;*/
    margin-left:  calc(-1.3em - 90px);

    margin-right: 0;
}


.about-timeLine .page-sec .dt.even .dtc:nth-child(1) {
    order: 1;
    border: 0;
    margin-left: 90px;
    width: calc(50% - 90px);
}

.about-timeLine .page-sec .dt.even .dtc:nth-child(2){
  border: 0;
  border-right: 3px solid #47ff9f;
}

.dtc p {
    margin: 0;
}
.timeLine-txt {
    padding-bottom: 60px;
    padding-right: 90px;
    height: 100%;
}

.about-timeLine .page-sec .dt.even .timeLine-txt {
    padding-bottom: 60px;
    padding-right: 0;
    height: 100%;
}

.timeLine-title {
  margin-top: 24px;
  font-size: 1.5em;
}

.about-timeLine iframe{
  width: 100%;
  height: auto;
}


.video-wrapper {
  position: relative;
  width: 70vw;
  max-width: 600px;
  height: 39.2vw;
  max-height: 336px;
  margin: 0 auto;
  margin-bottom: 60px;
  /*padding-bottom: 56%;*/
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  /*max-width: 800px;*/
}

.flex_set {
  display: flex;
  flex-wrap: nowrap;
  gap:20px;
  justify-content: center;
}

.flex_set .mainstaff {
  margin-bottom: 60px;
}

.page_title_sty_l {
  color: var(--color_g);
  color: #000;
  /*color: #000;*/
  flex-grow: 1;
  min-width: 200px;
}

.page_title_sty_l h1{
  font-size: 3em;
  margin: 0;
}

.inline_set > div {
  display: inline-block;
  /*width: 30%;
  max-width: 400px;
  min-width: 300px;*/
  width: 300px;
}

.page_team .flex_set {
  flex-wrap: nowrap;
  gap:60px; 
}

.page_team .flex_set .flex_set {
  justify-content: end;
  gap:40px;
}

.page_team .about_img_flex {
  width: 50%;
  min-width: 300px;
  max-width: 400px;
}

.page_team .about_img img {
  /*width: 400px;*/
  width: 100%;
  max-width: 400px;
  height: 500px;
}

.inline_set img {
  /*width: 300px;*/
  /*width: 400px;*/
  width: 100%;
  height: auto;
}

.inline_set > .team_name {
  display: flex;
  gap: 20px;
  /*width: 100%;*/
  width: 740px;
  /*max-width: 100%;*/
  height: 80px;
  /*padding: 0 60px;*/
  /*padding-top: 10px;*/
  /*background: #47ff9f;*/
  color: #fff;
  font-size: 16px;
  
  align-items: center;
  justify-content: center;
  
  text-align: center;
  position: absolute;
  z-index: 2;
  /*bottom: 0;*/
  bottom: -6px;
  /*left: -60px;*/
  /*clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);*/
  /*transform: rotate(-1deg);*/
  transform: rotate(-3.5deg);
}

.inline_set.team1 > .team_name {
  width: 860px;
}

/*.inline_set > .team_name_bg {*/
.team_name_bg {
  /*max-width: calc(100% + 60px);*/
  /*max-width: 100%;*/
  /*height: 92px;*/
  height: 128px;
  background: #47ff9f;
  color: #fff;
  font-size: 16px;
  
  align-items: center;
  justify-content: center;
  
  text-align: center;
  position: absolute;
  z-index: 1;
  /*bottom: 0;*/
  bottom: -26px;
  /*left: -60px;*/
  /*clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);*/
  clip-path: polygon(0 40%, 100% 0, 100% 60%, 0 100%);
}

.inline_set.team1 > .team_name_bg {
  width: 860px;
}


/*.team_name > div:nth-child(1){*/
.team_name > div{
  width: 12%;
  max-width: 150px;
  min-width: 100px;
  /*transform: rotate(-2deg);*/
  color: #000;
  position: relative;

}

.team_grab {
  display: flex;
  flex-wrap: wrap;
  height: 1126px;
  max-width: 1440px;
  margin: 0 auto;
}


.team1 .team_name > div:nth-child(1){
  left: 12px;
}

.team1 .team_name > div:nth-child(2){
  /*left: 33px;*/
  left: 50px;
  /*bottom: 4px;*/
}

.team1 .team_name > div:nth-child(3){
  /*left: 48px;*/
  left: 85px;
  /*bottom: 8px;*/
}

.team1 .team_name > div:nth-child(4){
  /*bottom: 14px;*/
  /*right: 17px;*/

  left: 103px;
  /*bottom: 12px;*/
}


.team_name h5 {
  margin: 0;
  font-size: 1em;
}

.team_name p {
  font-size: 1em;
  font-weight: 300;
  font-family: 'Noto Serif TC';
}

.team1,
.team2 {
  position: relative;
  /*width: 740px;*/
  max-width: 100%;
  height: 310px;
  /*width: 500px;*/
}

.team1 {
  /*width: 800px;*/
  width: 860px;
  margin-right: calc(100% - 860px);
}

/*.inline_set.team1 > .team_name {
  bottom: 4px;
}*/

.team_name_bg_l {
  width: 500px;
  height: 100%;
}

.team_name_bg_r {
  width: calc(100% - 500px);
  background: var(--color_g);
  height: 100%;
}

.team1_1 {
  position: absolute;
  bottom: 20px;
  /*left: -60px;*/
  right: 425px;
}

.team1_2 {
  position: absolute;
  /*left: 8%;*/
  right: 300px;
  top: 0;
}

.team1_3 {
  position: absolute;
  top: 9px;
  /*left: 24%;*/
  right: 126px;
}

.team1_3 img {
  width: 86%;
}

.team1_4 {
  position: absolute;
  top: 0;
  right: 0;
}


/*team2*/
.team_r_grab {
  z-index: 1;
  margin-left: 700px;
  position: relative;
  width: calc(100% - 700px);
}

.team2 {
  /*top: -180px;*/
  top: -150px;
  width: 100%;
  
}

.inline_set.team2 > .team_name_bg {
  /*left: initial;
  right: -60px;
  background: transparent;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;*/
  left: 0;
  /*width: 100%;*/
  width: 740px;

}

.inline_set.team2 > .team_name {
  /*left: 533px;*/
  /*bottom: 6px;*/

  left: 0;
  gap: 10px;
  /*bottom: 6px;*/
  justify-content: start;
  padding-left: 100px;
}

.team2_1 {
  position: absolute;
  /*right: 450px;*/
  /*left: 580px;*/
  /*left: 640px;*/
  left: 0;
}

.team2_2 {
  position: absolute;
  /*right: 300px;*/
  /*left: 720px;*/
  /*left: 780px;*/
  left: 140px;
  z-index: 1;
}

.team2_2 img {
  width: 90%;
}

.team2_3 {
  position: absolute;
  /*left: 850px;*/
  /*left: 910px;*/
  /*left: 270px;*/
  left: 250px;
  bottom: 7px;
}

.team2 .team_name > div:nth-child(1){
  left: 0;
}

.team2 .team_name > div:nth-child(2){
  left: 18px;
}

.team2 .team_name > div:nth-child(3){
  left: 30px;
}

/*team3*/

.team3 {
  top: -300px;
  z-index: 3;
}

.inline_set.team3 > .team_name_bg {
  /*bottom: -27px;*/
  bottom: -105px;
  z-index: 2;
}

.inline_set.team3 > .team_name {
  /*bottom: -23px;*/
  bottom: -82px;
}

.team3_1 {
  position: absolute;
  /*right: 405px;*/
  right: 375px;
  /*top: 10px;*/
  /*top: 50px;*/
  top: 55px;
}

.team3_1 img{
  width: 95%;
}

.team3_2 {
  position: absolute;
  right: 255px;
  /*top: 22px;*/
  /*top: 30px;*/
  top: 55px;
}

.team3_2 img{
  width: 100%;
}

.team3_3 {
  position: absolute;
  right: 152px;
  top: 12px;
  z-index: 2;
}

.inline_set > .team3_3 {
  width: 280px;
}

.team3_3 img {
  /*width: 115%;*/
  width: 110%;
}


.team3_4 {
  position: absolute;
  top: 15px;
  right: 10px;
}

.team3_4 img{
  /*width: 115%;*/
  width: 110%;
}

.team3 .team_name > div:nth-child(1) {
  left: 59px;
}

.team3 .team_name > div:nth-child(2) {
  left: 80px;
}

.team3 .team_name > div:nth-child(3) {
  left: 93px;
}

.team3 .team_name > div:nth-child(4) {
  left: 108px;
}

/*team4*/

.team_r_grab.team4_grab {
  top: -220px;
  z-index: 3;
}

.team4_1 {
  
}

.team4_2 {
  position: absolute;
  /*left: 104px;*/
  left: 145px;
  bottom: 18px;
  z-index: 1;
}

.team4_2 img{
  /*width: 110%;*/
  width: 90%;
}

.team4_3 {
  position: absolute;
  bottom: 30px;
  left: 265px;
}

.team4 .team_name > div:nth-child(2) {
  width: 100%;
  left: -5px;
}

.team4 .team_name > div:nth-child(3) {
  left: 0;
}

/*team5*/
.team5 {
  top: -450px;
  z-index: 3;
}

.team5_3 {
  position: absolute;
  /*right: 25px;*/
  right: 0;
  z-index: 1;
  top: -40px;
}

.team5_2 {
  position: absolute;
  z-index: 1;
  top: -30px;
  right: 145px;
}

.team5_2 img {
  width: 100%;
}

.team5_1 {
  position: absolute;
  right: 270px;
  bottom: 30px;
}

.team5 .team_name > div:nth-child(1) {
  width: 100%;
  /*left: 140px;*/
  /*left: 220px;*/
  left: 0;
}

.team5 .team_name > div:nth-child(2) {
  width: 100%;
  /*left: 122px;*/
  /*left: 200px;*/
  left: 0;
}
    
.team5 .team_name > div:nth-child(3) {
  left: 0;
}


.team_end {
  padding: 0 60px;
  top: -180px;
  margin-bottom: -100px;
}

.team_end_title {
  font-size: 3em;
  line-height: 1em;
  font-weight: 700;
  text-align: right;
}


.page_team {
  max-width: 1440px;
}

.team_l_grab {
  position: relative;
  display: block;
  /*height: 336px;*/
  height: auto;
  width: 100%;
}

.team_l_grab .inline_set .team1_4 img {
  max-height: 280px;
  object-fit: contain;
}


.team_mo {
  display: none;
}

/*service*/

.banner_ctr_grab {
  position: absolute;
  bottom: 0;
}

.banner_ctr {
  position: relative;
  width: 100%;
  max-width: 100vw;
  /*left: 280px;*/
  
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 60px;
  padding-top: 20px;
  gap: 60px;
}


.swiper_inn.swiper  {
    /*width: 240px;
    height: 240px;
    min-width: 240px;*/
    width: 260px;
    height: 260px;
    min-width: 260px;
    /*position: absolute;
    left: 60px;
    bottom: 60px;*/
    border: solid 2px #fff;
    border-radius: 5px;
}

.swiper_inn .swiper-slide {
  width: 240px;
  min-height: 240px;
  color: #000;
  /*background: transparent;*/
  background: rgb(0 0 0 / 10%);
  
}

.swiper_inn h2 {
  font-size: 2.9em;
  line-height: 1em;
  margin: 0;
}

.swiper_inn p {
  font-size: 25px;
}

.swiper_inn span {
  display: block;
  font-size: 2em;
  line-height: 1em;
}


.swiper_inn .act_item {
  /*padding: 40px 20px;*/
  padding: 40px 30px;
  color: #fff;
  justify-content: space-between;
}

.swiper_inn .act_item b {
  display: block;
  margin: 10px 0;
}

.swiper_inn .hashtag {
  display: flex;
  font-size: 12px;
  /*justify-content: space-between;*/
  flex-wrap: wrap;
  gap: 5px;
}

.swiper_inn .hashtag div{

  background: #47ff9f;
  color: #000;
  /*padding: 2px 2px;*/
  padding: 5px;
  border-radius: 5px;
  line-height: 1;
  /*padding-top: 5px;*/


}

.swiper_select.swiper  {
    /*max-width: 620px;*/
    max-width: 610px;
    width: auto;
    /*width: auto;*/
    /*max-width: 680px;*/
    /*height: 100%;*/
    /*position: absolute;
    left: 280px;
    bottom: 60px;*/
}

.swiper_select .swiper-slide {
  /*width: 200px;
  max-width: 200px;
  height: 200px;*/
  width: 180px;
  max-width: 180px;
  height: 180px;

  border: solid 2px #fff;
  border-radius: 5px;
  background: #000;
  color: #fff;
}

.banner_grab {
  position: relative;
}

.banner_ctr_title {
  padding: 0 60px;
  margin: 0;
  color: #fff;
}

.banner_ctr_title h1{
  font-size: 3em;
  margin: 0;
  line-height: 1em;
}

.nor_title {
  font-size: 18px;
  font-weight: 500;
}

.normal_item p {
  font-weight: 500;
}

.banner_fade {
  width: 100%;
  height: 100vh;
  max-height: calc(100vh - 90px);
  min-height: 500px;
}

.banner_fade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper_select .swiper-button-next, 
.swiper_select .swiper-button-prev {
    color: #47ff9f;
}

.bg_color_box {
  width: 180px;
  height: 240px;
  position: absolute;
  top: 85px;
  left: -20px;
  background: #47ff9f;
}

.sec_set.ministries {
  padding-right: 0;

}

.ministries_title {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;
  gap:20px;
  align-items: flex-end;

}

.ministries_title h2 {
  margin: 0;
  font-size: 3em;
  line-height: 1em;
}

.ministries_line {
  /*width: 100%;*/
  width: auto;
  flex-grow: 1;
}

.ministries_line h2 {
  font-size: 1.5em;
  line-height: 1.5em;
}

.swiper_minist_prev_grab {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: 60px;
}

.swiper_minist_prev {
  position: relative;
  width: 100%;
  left: 60px;
}



.swiper_minist_prev .swiper-slide,
.swiper_minist_act
/*.swiper_minist_act .swiper-slide*/ {
  /*width: 250px;*/
  /*width: calc( 100vw/4);*/
    /*min-width: 250px;*/
  /*min-height: 250px;*/
  height: calc( (100vw - 120px) /4 );
  width: calc( (100vw - 120px) /4 );  
  max-width:calc( (100vw - 120px) /4 );
  max-height:calc( (100vw - 120px) /4 );
  min-width: 200px;
  min-height: 200px;
  border-radius: 5px;

}

.swiper_minist_prev img,
.swiper_minist_act img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}


.minist_img_title {
  width: 100%;
  height: 50px;
  font-weight: 400;
  /*padding-top: 10px;*/
  /*background: #47ff9f;*/
  background: #000;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;   /* 垂直置中 */
  align-items: flex-start;
  justify-content: center; /* 水平置中 */
  gap: .5em;
  text-align: center;
  align-items: center;
  /*clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 100%);*/
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.color_box_grab {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.color_box_l {

  height: calc( (100vw - 120px) /4 );
  width: calc( (100vw - 120px) /4 );  
  max-width:calc( (100vw - 120px) /4 );
  max-height:calc( (100vw - 120px) /4 );
  /*min-width: 200px;*/
  /*min-height: 200px;*/
  border-radius: 5px;

  background: linear-gradient(90deg, #47ff9f, #87fdc2);


  display: none;
}

.color_box_r {

  height: calc( (100vw - 120px) /4 );
  width: calc( (100vw - 120px) /4 );  
  max-width:calc( (100vw - 120px) /4 );
  max-height:calc( (100vw - 120px) /4 );
  /*min-width: 200px;*/
  /*min-height: 200px;*/
  border-radius: 5px;
  background: linear-gradient(90deg, #87fdc2, #c7fbe4);
}

  .color_box_blank {
  height: calc( (100vw - 120px) /4 );
  width: calc( (100vw - 120px) /4 );  
  max-width:calc( (100vw - 120px) /4 );
  max-height:calc( (100vw - 120px) /4 );
  min-width: 200px;
  min-height: 200px;
  border-radius: 5px;
}

.swiper_minist_act_grab {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  justify-content: center;
  align-items: center;

  margin-top: 40px;
  padding-left: 60px;
}

.minist_next,
.minist_prev {
  position: relative;
  width: 40px;
  /*height: 100%;*/
  height: calc( (100vw - 120px) /4 );
  max-height:calc( (100vw - 120px) /4 );
  min-height: 200px;
  cursor: pointer;

}


.minist_next svg,
.minist_prev svg {
  width: 40px;
  height: 40px;
  position: absolute;
  /*top: 20px;*/
  top: calc(50% - 20px);
}


.color_box_districts {
    width: 100px;
    height: 240px;
    background: #47ff9f;
    /*flex-grow: 1;*/
    min-width: 100px;
}

.districts {
  display: flex;

}

.districts_title {
  padding: 0 20px;
}


.districts_title h2{
  margin: 0;
  white-space: nowrap;
}

.ministries_line .districts_title_t {
  font-size: 3em;
}



.districts_logo_f,
.districts_logo_d {
  width: 100%;
  min-width: 600px;
  /*height: 80px;*/
  background: #47ff9f;
  border-top-left-radius: 999px;
  border-bottom-left-radius: 999px;
  display: flex;
  /*margin-top: 80px;*/
  margin-top: 68px;

  height: 120px;
  align-items: center;
  padding-left: 20px;
  gap: 20px;

}

.districts_logo_f.end {
  min-width: auto;
  /*width: 340px;*/
  width: 460px;
  float: right;
  margin-top: 60px;
}

.districts_logo_d {
  width: 100%;
  /*min-width: 500px;*/
  min-width: 600px;
  background: #000;
  /*margin-top: 20px;*/
  margin-top: 60px;
  /*margin-left: 100px;*/
}

.districts_logo_f > div,
.districts_logo_d > div {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
}

.ministries_line .secline {
  margin: 20px 0;
}

.ministries_line p {
  padding: 0 20px;
}

.districts_d {
  display: flex;
  margin-top: 60px;
  flex-wrap: wrap;
}

.color_box_districts_d {
  width: 100px;
  height: auto;
  background: #47ff9f;
  /*flex-grow: 1;*/
  min-width: 100px;
}

.districts_d_txt {
  padding-left: 20px;
  width: 300px;
}

.join_btn {
  display: block;
  color: #000;
  background: #fff;
  border: solid 2px #000;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease-out, background 0.3s ease-out, border 0.3s ease-out;
}

.join_btn:hover {
  color: #fff;
  background: #47ff9f;
  border: solid 2px #47ff9f;

}

.join_btn_grab {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    margin-right: 60px;
    overflow: hidden;
}

.inst {
    margin-top: 100px; 
    width: 100%;
    /*height: 128px;*/
    height: 150px;
    position: relative;
}

.inst .team_name_bg {
  width: 100%;
  bottom: initial;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.inst_title {
  position: relative;   /* 讓 ::after 可以定位 */
  display: flex; /* 讓線條寬度依標題而定，可自行調整 */
  z-index: 2;
  justify-content: flex-end;
  width: 100%;
  padding-right: 60px;

}

.inst_title h2 {
  font-size: 3em;
  margin: 0;
}

.inst_title h3 {
  font-size: 1.2em;
  margin: 0;
}

.inst_title::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 2px;
    background: black;
    right: -7px;
    /*bottom: 33px;*/
    bottom: 60px;
    transform: rotate(7deg);
    transform-origin: left center;
}

.inst_title > div {
  text-align: right;
}

.inst_subtitle {
    margin: 0;
    z-index: 2;
    position: absolute;
    left: 60px;
    bottom: 20px;
}
    
.inst_list {
  width: 100%;
  padding: 0 60px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 60px;
  padding-bottom: 60px;
  justify-content: center;
}

.inst_list_item {
  width: calc( (100% - 40px)/3 );
  min-width: 300px;
}

.inst_list_item img{
  width: 100%;
  object-fit: cover;
  height: calc( ( (100vw - 120px) - 40px)/3 * 4/6 );
  min-height: calc( 300px * 4/6 );

}

.inst_pretxt {
  width: 100%;
  padding: 60px;
  text-align: center;
  /*min-width: 800px;*/
}

.inst_list_t {
  font-size: 1.2em;
  font-weight: 400;
  display: block;
  margin-top: 20px;
}

.inst_list_subt {
  font-size: 1.1em;
  display: block;
  margin-bottom: 20px;
}

#banner_ctr_next,
#banner_ctr_prev {
  color: #47ff9f;
  width: 40px;
  height: 40px;
}

#banner_ctr_next {
  top: calc(50% + 20px);
  right: 40px;
}

#banner_ctr_prev {
  top: calc(50% + 20px);
  left: 40px;
}

.ministries .team_mo {
    display: none;
}

.ministries .swiper-button-next,
.ministries .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: #47ff9f;
}

.inst {
  position: sticky;
  top: 0;
  background: #fafafa;
  z-index: 3;
}


.inst_end {
  /*min-height: 128px;*/
  height: auto;
  /*padding-top: 100px;*/
  position: relative;
  display: flex;
  /*margin-bottom: 100px;*/
}

.inst_end_txt {
  display: flex;
  width: 100%;
  height: 250px;
  align-items: flex-start;
  justify-content: end;
  position: relative;
  z-index: 2;
  padding-right: 60px;

}

.inst_end .team_name_bg {
  height: 128px;
  width: 100%;
  bottom: 0;
  clip-path: polygon(100% 40%, 0 0, 0 60%, 100% 100%);
}

.inst_end::after {
    content: "";
    position: absolute;
    width: 800px;
    height: 2px;
    background: black;
    left: 0;
    /* bottom: 33px; */
    top: 100px;
    transform-origin: left center;
    z-index: 2;
    transform: rotate(7deg);
    max-width: 100%;
}

.body.only.inst_page {
  padding-bottom: 150px;
}

.districts_logo_grab {
  width: 100%;
  max-width: 700px;
  /*overflow-x: auto;*/

  overflow: hidden;
}

/*a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 0.05em;
  bottom: 0;
  left: 0;
  color: #47ff9f;
  background: currentcolor;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}*/

/*end   */
.banner_item {
    /*position: relative;*/
    position: absolute;
    width: 100%;
    /*height: calc(100vh - 160px);*/
    height: 100%;
    min-height: 500px;
    z-index: 1;
}

.video-container {
    position: relative;
    left: 0;
    width: 100%;
    height: 100%;
    /*z-index: -1;*/
    overflow: hidden;
    /*background: #ccc;*/
}

.banner_item .video-container iframe {
    width: 140vw;
    height: 78.75vw;
    min-height: 120vh;
    min-width: 214vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sec_mask_ad,
.mask_ad {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10000;
    /*background-color: #868686b3;*/
    /*background-color: rgb(134 134 134 / 70%);*/
    background: rgb(230 230 230 / 70%);
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 999;
    backdrop-filter: blur(5px);
}

.mask_ad {
  background-color: rgb(134 134 134 / 70%);

}

.mask_ad.active,
.sec_mask_ad.active{
    display: block;
    opacity: 1;
}

.alert.active {
    display: flex;
    opacity: 1;
}

.alert,
.news_alert {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    display: none;
    color: #fff;
    overflow-y: auto;
    width: 100%;
    max-height: 100vh;
    opacity: 0;
    transition: opacity .3s ease;
}

.alert > div,
.news_alert > div {
    /*max-width: 700px;*/
    max-width: 500px;
    margin: 30px auto;
    width: 60%;
    position: relative;
}

.ad_content, .news_ad_content {
    border-radius: 10px;
    border: 2px solid #47ff9f;
    /*padding: 25px;*/
    padding: 50px;
    background-color: #fff;
    color: #000;
    overflow: auto;
    line-height: 1;
    transform: scale(0.8);
    opacity: 0;
    transition: transform .35s ease, opacity .3s ease;
}

.alert.active .ad_content {
    transform: scale(1);
    opacity: 1;
}


.ad_content_grab {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.ad_content img {
  width: 50%;
  min-width: 200px;
}

.ad_content_txt {
  margin-top: 20px;
}

.ad_content_txt_p {
  text-align: justify;
}

.btn {
    background: #000;
    color: #fff;
    min-width: 120px;
    text-align: center;
    height: 36px;
    line-height: 36px;
    border-radius: 5px;
    margin-top: 20px;
    display: inline-block;
    cursor: pointer;

    transition: color .6s ease-out;
    /*line-height: 1em;*/
    position: relative;
    /*transition: background 5s;*/
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    border-radius: 5px;
    height: 36px;
    line-height: 36px;
    background-color: #71f69f;
    transition: all 0.5s;
    z-index: -1;

    /*transition: background .6s ease-out,color .6s ease-out;*/
    /*transition: background 5s;*/
}

.btn:hover {
    /*background-color: #fff;*/
}

.btn:hover::before {
    width: 100%;
}

.ad_content .btn {
  float: right;
}

.ad_content_close {
  position: absolute;
  top: 20px;
  left: 20px;
}

.ad_content_close svg {
  cursor: pointer;
  transition: color .3s ease;
}

.ad_content_close svg:hover {
  color: #71f69f;
}

.popitem {
  cursor: pointer;
}

.popitem:hover {
  color: #71f69f;
}

#alert {
    position: fixed;
    width: 60%;
    z-index: 10000;
    margin: 0 20%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    color: #fff;
}

#alert.active {
  display: block;
}

#alert .container {
    position: relative;
    width: fit-content;
    margin: 0 auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

#alert img {
    width: 100%;
    /*cursor: pointer;*/
    text-align: center;
    height: 50%;
    /*width: auto;*/
    margin: 0 auto;
    vertical-align: top;
    display: block;
    opacity: 0;
}

#alert_close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.close-button {
    width: 50px;
    height: 50px;
    background: #000;
    position: absolute;
    display: block;
    z-index: 200;
    text-indent: -9999px;
    transition: background .6s ease;
}

.close-button:hover {
  background: #71f69f;
}

.close-button::before,
.close-button::after {
  content: '';
  width: 55%;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 48%;
  left: 22%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.close-button::after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.swiper-container-wrapper {
  display: none;
}

/*.mo_team_all {
  display: flex;
  flex-wrap: wrap;
}
*/
.mo_team_name {
  display: flex;
  flex-wrap: wrap;
  gap:5px;
  align-items: center;
}

.mo_team_name img {
  height: 30px;
  width: auto;
}

/*.mo_team_name h5{
  color:#47ff9f
}*/

.mo_team_name_grab {
  /*width: calc(100% / 3);*/
}

.team_mo .secline_grab {
  padding: 0;
  margin-bottom: 40px;
}

.about_img_txt h3 {
   margin-top: 0;
}

.kid_page_content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding-right: 60px;
  position: relative;
  z-index: 1;
}

.kid_page_content img {
    width: 200px;
    height: auto;
    object-fit: cover;
}

.kid_page_content.first {
  /*padding-left: 270px;*/
  margin-left: 60px;
}

.kid_txt {
  max-width: 300px;
}

.gallery_list {
    width: 80%;
    max-width: 1440px;
    position: relative;
    /*margin-left:10%;*/
    margin-left:60px;
    display: inline-block;
    vertical-align: top;
    /*margin-top: -10px;*/
    z-index: 2;
}

.listImg_area {
    width: 100%;
}

.listImg_grid {
    font-size: 1em;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    -ms-flex-direction: column;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    display: -webkit-box;
    display: flex;
    /*height: 50vw;*/
}

.listImg_cell.type2_1 {
    -webkit-box-flex: auto;
    -ms-flex: auto;
    flex: auto;
    height: 600px;
    /* width: calc( (960px * 0.75) / 2); */
    /*width: calc( ((990px * 0.75) - 40px) * 0.6 );*/
    /*width: calc( (100% - 60px) / 3 );*/
}

.listImg_cell.type2 img, .listImg_cell.type2_1 img, .listImg_img.type2, .listImg_img.type2_1 {
    width: 100%;
}



.listImg_cell {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;

    /*width: calc( ( 980px * 0.75 - 40px ) / 3);*/
    width: calc( (100% - 60px) / 3 );

    margin: 10px;
    /*cursor: pointer;*/
}

.cell_2 {
   height: 290px;
   overflow: hidden; 
   position: relative;
}

.cell_2.top {
    margin-bottom: 20px;
}

.listImg_cell.type2_1 img {
    /*height: calc( 100vh - 230px);*/
    /*height: 100%;*/
    height: 600px;
    object-fit: cover;
}

.listImg_cell.type2 .listImg_cell_r1 {
    /*height: calc( (100vh - 230px - 20px) /2);*/
    /*height: calc( (100% - 20px) /2);*/
    height: 290px;
    object-fit: cover;
}

.listImg_cell.type2 .listImg_cell_r2 {
    height: 290px;
    object-fit: cover;
}



.list_content .listImg_cell {
    -webkit-box-flex: initial;
    -ms-flex: initial;
    flex: initial;
    width: calc( (100% - 40px) / 2 );

    margin: 10px;
    position: relative;
}

.list_content .listImg_cell .img {
    overflow: hidden;
    height: calc( (75vw - 20px)/2*0.7 );
}

.list_content .listImg_cell img{
    object-fit: cover;
    width: 100%;
    height: calc( (75vw - 20px)/2*0.7 );

    transform: scale(1, 1);
    -webkit-transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    -ms-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;

}

.gallery_list .listImg_cell {
    overflow: hidden;
    position: relative;
}

.gallery_list .listImg_cell .gimg {
    transform: scale(1, 1);
    -webkit-transition: transform 0.5s ease-out;
    -moz-transition: transform 0.5s ease-out;
    -o-transition: transform 0.5s ease-out;
    -ms-transition: transform 0.5s ease-out;
    transition: transform 0.5s ease-out;

    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;

}

.gallery_list .listImg_cell .gimg:hover {
    transform: scale(1.05, 1.05);

}


.gallery_title {
    /*width: 10%;*/
    width: 30px;
    display: inline-block;

    position: absolute;
    /*right: 30px;*/
    right: 0;
    top: 50px;
}

.gallery_title h2 {
    writing-mode: vertical-rl;
    text-orientation: sideways;
    /*margin: 0;*/
}

.gallery_title svg {
  transform: rotate(90deg);
  transform-origin: center;
  display: inline-block; 
}

.ig_section {
  margin: 60px 0;
  position: relative;
}

.ig_href {
  position: relative;
}

.gimg_svg {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 100%;
  color: #fff;
  z-index: 99;
  width: 20px;
  height: 20px;
  display: inline-block; /* 確保不是 none 或 block 的異常狀態 */
  vertical-align: middle;
}

.kid_page_content .btn {
  margin-top: 0;
}

.ig_section .team_name_bg {
  width: 100%;
  /*bottom: initial;*/
  bottom: -40px;
  /*top: 50%;*/
  /*left: 50%;*/
  /*transform: translate(-50%, -50%);*/
}

.kids_sec2 {
  display: flex;
  justify-content: end;
  padding-top: 60px;
}

.team_name_bg.sec2{
  clip-path: polygon(100% 40%, 0 0, 0 60%, 100% 100%);
}

.ig_section.sec2 {
  display: flex;
  justify-content: end;
}

.ig_section.sec2 .gallery_list {
  margin-right: 50px;
}

.ig_section.sec2 .gallery_title {
  right: initial;
  left: -70px;
}


.ig_section.sec2 .gallery_title svg {
  transform: rotate(-90deg);
}  

.kid_txt_grab {
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: center;
}

.about_img_nst {
  position: relative;
  /*width: 300px;*/
  /*width: 200px;*/
  width: 250px;
  height: 300px;
  overflow: hidden;
}

.about_img_nst img{
  object-fit: cover;
  /*width: 200px;
  height: 300px;*/
  width: 250px;
  height: auto;
  /*position: absolute;*/
  /*top: 0;*/
}

.color_box_r {
  background: #d6ffe6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.color_box_r > div {
  position: relative;
  text-align: center;
  /*padding: 0 20px;*/
  padding: 0 32px;
}

.color_box_icon {
  position: absolute;
  /*left: 20px;*/
  left: 32px;
  top: -1.5em;
  width: 2em;
}


.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inline_set.team1.team5 > .team_name {
  gap: 10px;
  justify-content: end;
  right: 90px;
}

.inline_set_mo_img {
  white-space: nowrap;
  position: relative;
}


.inline_set_mo_img img{
  display: inline-block;
}

.team_mo_img_l {
  left: -5%;
  left: -20%;
  position: relative;
}

.team_mo_img_r {
  left: -60%;
  left: 15%;
  position: absolute;
}

.index_t_sec {
  width: 100%;
  padding: 0 60px;
}


.index_t_grab {
  width: calc(100% / 3);
}

.secline_grab.new_top {
  margin-bottom: 60px;
}

.index_t_all {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 60px;
}

.index_t_title {
  /*text-align: center;
  color: #47ff9f;
  font-size: 2em;*/

    text-align: center;
    color: #47ff9f;
    font-size: 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.index_t_img {
  line-height: 0;
}

.index_t_grab .index_t_txt{
  display: flex;
  align-items: center;
  min-height: 250px;
  text-align: left;
  width: 100%;
}

.index_t_grab.it_center {
  /*margin-top: 250px;*/
}

.index_t_txt p {
  width: 200px;
  font-weight: 500;
  /*max-width: 200px;*/
}

.index_t_grab.it_left .index_t_txt {
    text-align: left; 
    padding-right: 20px;  
}

.index_t_grab.it_center .index_t_txt {
    text-align: center; 
    padding: 0 20px;
    justify-content: center;  
}

.index_t_grab.it_right .index_t_txt {
    text-align: right;
    padding-left: 20px; 
    justify-content: end; 
}

.index_t_sec_title {
  margin-top: 100px;
  text-align: center;
}

.index_t_sec_title h1 {
  font-size: 3em;
}

.index_map_grab {
  padding-left: 60px;
  position: relative;
}

.index_map_grab .index_map {
  position: relative;
  z-index: 2;
  padding-right: 0;
  background: transparent;

}

.index_map_grab .index_map_bcolor {
  background: #fff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 60px;
  width: calc(75vw - 120px);
  /*height: 500px;*/
  height: 100%;
  border-radius: 10px;
}

.index_ig .ig_section {
  width: calc(75vw - 120px);
}

.index_ig .gallery_list {
  width: 100%;
}

.index_ig .ig_section.sec2 {
  /*margin-left: 60px;*/
  margin: 0;
  margin-left: 80px;
}

.index_ig .ig_section.sec2 .gallery_list {
    margin-right: 0;
}  

.index_ig .ig_section.sec2 .gallery_title {
    right: initial;
    left: -80px;
}

.index_t_txt_mo {
    display: none;
}

.swiper_sec2_mo {
  display: none;
}


/*.swiper_minist_act {
  height: auto;
  max-height: 100%;
}

.swiper_minist_act img {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.swiper_minist_act .minist_img_title {
  position: relative;
}*/

@media (min-width: 1441px) {
    .index_c1 {
        top: -5%;
        left: 10%;
    }

    .index_c2 {
        top: 7%;
        left: 56%;
        
    }

    .index_c3 {
        top: 42%;
        left: 26%;
    }
}

@media (min-width: 1080px) {
  .swiper_minist_prev .swiper-slide {
  /*.color_box_l,
  .color_box_r {*/
  /*.swiper_minist_act {*/
    height: calc( (100vw - 120px) /5 );
    width: calc( (100vw - 120px) /5 );  
    max-width:calc( (100vw - 120px) /5 );
    max-height:calc( (100vw - 120px) /5 );
  }

  .swiper_minist_act,
  .color_box_l,
  .color_box_r {
    height: calc( (100vw - 120px) /4 );
    width: calc( (100vw - 120px) /4 );  
    max-width:calc( (100vw - 120px) /4 );
    max-height:calc( (100vw - 120px) /4 );
  }

  .minist_next,
  .minist_prev {
    height: calc( (100vw - 120px) /5 );
    max-height:calc( (100vw - 120px) /5 );
  }
}


@media (max-width: 1200px) {
  .team_grab {
    height: auto;
  }

  .team1_grab,
  .team2_grab,
  .team4_grab,
  .team5_grab {
    height: 336px;
  }

  .team3_grab {
    height: 415px;
  }

  .team2,
  .team3,
  .team_r_grab.team4_grab,
  .team5 {
    top: 0;
  }

  .team_end {
    top: 0;
    margin-bottom: 60px;
  }

  .team_r_grab {
    margin-left: 0;
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .team1 {
    width: 720px;
  }

  .team1_1 {
    bottom: 10px;
  }

  .inline_set.team1 > .team_name_bg {
    width: 760px;
  }

  .inline_set.team1 > .team_name {
    width: 660px;
    gap: 40px;
    /*left: 20px;*/
  }

  .inline_set.team1.team5 > .team_name {
    gap: 0px;
    justify-content: flex-start;
    right: auto;
    left: 80px;
  }

  .inline_set.team2 > .team_name {
    gap: 30px;
  }

  .inline_set.team2.team4 > .team_name {
    gap: 10px;
  }

  .inline_set.team3 > .team_name {
    gap: 30px;
    left: 36px;
  }

  .team2,
  .team4 {
    width: 100%;
    /*max-width: 740px;*/
    max-width: 560px;
  }

  .team3_1 {
    top: 57px;
  }

  .team5 {
    max-width: 586px;
  }

  /*.inline_set.team5 > .team_name_bg {
    bottom: 0;
  }

  .inline_set.team5 > .team_name {
    bottom: 0;
  }*/

  .team5_1,
  .team5_2,
  .team5_3 {
    bottom: 0;
    top: 0;
  }


  .team_name > div,
  .inline_set .team_name > div:nth-child(1),
  .inline_set .team_name > div:nth-child(2),
  .inline_set .team_name > div:nth-child(3),
  .inline_set .team_name > div:nth-child(4)  {
    left: 0;
  }
}

@media (max-width: 1100px) {


    .menu_area {
        display: block;
    }
    .menu_label {
        display: none;
    }

    .tool_bar {
        align-items: center;
    }
}

@media (max-width: 1000px) {
  .page_team > .flex_set {
    flex-wrap: wrap;
  }

  .page_team .page_title_sty_l {
    width: 100%;
  }

  .page_team .flex_set .flex_set {
    justify-content: space-between;
    flex-grow: 1;
  }

  .page_team .about_img_flex {
    min-width: auto;
    max-width: 100%;
  }

  .about_img > div {
    text-align: center;
  }

  .color_box_l {
    display: none;
  }

  .swiper_minist_act,
  .color_box_r {
    height: calc( (100vw - 120px) /3 );
    width: calc( (100vw - 120px) /3 );  
    max-width:calc( (100vw - 120px) /3 );
    max-height:calc( (100vw - 120px) /3 );
  }

}

@media (max-width: 800px) {
    .sec2_start_i {
        display: none;
    }

    .sec2_txt {
        padding-left: 0;
    }

    .index_sec2_l {
        width: calc(60vw - 120px);
    }

    .index_ig .index_sec2_l {
      width: 100%;
    }

    .index_ig .ig_section {
      width: calc(100% - 130px);
    }

    .sec2_item {
        width: 100%;
        min-width: 100%;
    }

    .sec2_img {
        width: calc(60vw - 120px);
        height: calc(60vw - 120px);
        /*height: auto;*/
        min-width: 100%;
        min-height: auto;
    }

    .index_sec2_r {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        margin-top: 0;
    }

    .index_c {
        font-size: 12px;
        width: 250px;
        height: 250px;
    }

    .footer {
        overflow: hidden;
        max-width: 100%;
        padding: 60px 20px;
    }

    .footer_grab {
        flex-wrap: wrap;
    }

    .footer_menu {
        flex-wrap: wrap;
    }  

    .footer_menu_l {
        max-width: 100%;
        flex-wrap: wrap;
        gap: 60px;
    }

    .footer_logo {
        margin: 0 auto;
    }

    .footer_l_txt {
        padding-left: 0;
    }

    .footer_menu_r {
        text-align: center;
    }

    .footer_icon {
        padding-left: 0;
        flex-direction: initial;
        gap:20px;
        justify-content: center;
        padding-top: 60px;
    }

    .footer_icon > div {
        padding-bottom: 0;
    }

    .copyright {
        text-align: center;
    }

    .index_sec_map .index_sec2_l{
        width: 100%;
    }

    .team_pc {
      display: none;
    }

    .team_mo {
      display: block;
    }

    .about_img_title {
      color: #000;
    }

    .color_box_districts,
    .bg_color_box {
      position: absolute;
    }

    .ministries_line {
      z-index: 2;
      width: 100%;
    }

    .districts_logo_d {
      min-width: 100%;
      margin-left: 0;
    }

    .districts_logo_f.end {
      min-width: 100%;
      width: 100%;
      margin-left: 0;
    }

    .districts  {
      width: 100%;
    }

    .districts_logo_f > div,
    .districts_logo_d > div,
    .districts_logo_f.end div {
      width: 80px;
      height: 80px;
    }

    .ministries_line p {
      text-align: center;
    }

    #alert{
      width: 80%;
      margin: 0 10%;
    }

    .close-button {
      width: 25px;
      height: 25px;
    }

    .swiper_minist_prev_grab, .swiper_minist_act_grab {
        display: none;
    }

    .sec_set.ministries {
      padding-right: 20px;
    }

    .ministries .team_mo {
        display: block;
        width: 100%;
        margin: 0 auto;
        /*margin-top: .8em;*/
        margin-top: 60px;
    }

    .gallery-top {
      height: 600px;
      max-height: 70vh;
    }


    .ministries .team_mo .gallery-top .swiper-slide img {
      /*max-height: calc(100vw - 40px);*/
      max-width: calc(100vw - 40px);
      height: 600px;
      max-height: 70vh;
      object-fit: cover;
    }

    .sev_mo_txt {
      position: absolute;
      background: rgb(0 0 0 / 80%);
      color: #fff;
      padding: 40px;
      bottom: 0;
      margin: 20px;
    }

    .sev_mo_txt svg {
      top: 20px;
    }
    
    .sev_mo_txt h2 {
      padding-bottom: 20px;
      border-bottom: 1px solid #fff;
    }

    .ministries .swiper-button-next, 
    .ministries .swiper-button-prev {
      top: initial;
      bottom: 130px;
    }
    
    

    /*.inst_list {
      justify-content: center;
    }*/

}

@media (max-width: 700px) {
  .swiper_select.swiper {
    width: 180px;
  }
}

@media (max-width: 600px) {
    .container {
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    .header {
        padding: 20px;
    }

    .logo img {
        margin-right: 0;
    }

    /*.menu_label,
    .tool_bar {*/
    .menu_label,
    .fb_icon,
    .yt_icon,
    .ig_icon,
    .tool_bar .nav__menu {
        display: none;
    }

    .index_sec2 {
        flex-wrap: wrap;
        /*padding: 0 20px;*/
        padding: 0;
        gap: 0;
    }

    .index_sec2_l,
    .index_sec2_r {
        width: 100%;
        padding: 0 20px;
    }

    .index_sec2_r {
      margin-top: 60px;
    }

    .index_map {
        padding: 20px;
    }

    .sec2_img {
        width: calc(100vw - 40px);
        height: calc(100vw - 40px);
    }

    .secline_grab {
        padding: 0 20px;
    }

    .index_c {
        font-size: 12px;
        width: 30vw;
        height: 30vw;
    }

    .index_c_title {
        color: #fff;
        font-size: 20px;
    }

    .index_c_content {
        display: none;
    }

    /*#menu.open .menuOutLayer {
        left: 0;
        width: 100vw;
        transition: left 1s ease-in-out;
    }*/

    #menu .menu_grab,
    #menu.open .menuOutLayer {
        /*display: inline-block;*/
        width: 100vw;
    }

    #menu .triangle2 {
        display: none;
    }

    body.open .pc_logo {
      display: none;
    }
    body.open .mo_logo {
      display: block;
    }

    /*#menu_mobile {
      height: 97px;
    }*/

    .mo_menu_line {
      position: relative;
      top: 0;
      /*height: 3px;*/
      height: 1px;
      margin-left: 20px;
      transition: width 0s;
    }

    .slide-title {
      flex-wrap: wrap;
    }

    .slide-title h2,
    .slide-title span {
      width: 100%;
    }

    

    #menu ul {
      margin: 40px 0 0px 20px;
      height: calc(100vh - 260px);
    }

    #menu .tool_bar {
      display: flex;
    }

    .sec_set {
      padding: 60px 20px;
    } 

    .about_img img {
      width: 100%;
    }

    .about_img_txt {
      max-width: 100%;
    }

    .about-timeLine .page-sec {
      padding: 0 20px 60px 20px;
      /*padding-top: 20px;*/
    }

    .video-wrapper {
      width: 100%;
      height: 56vw;
    }

    .index-about-txt {
    position: relative;
    top: 0;
    padding-bottom: 0;
  }


  .about-timeLine .dtc {
    width: 100% !important;
  }

  .about-timeLine .dtc {
    border-left: 3px solid var(--color_g) !important;
  }

  .about-timeLine .dtc:nth-child(1) {
    border-right: 0 !important;
  }

  .timeLine-year {
    float: initial !important; 
    margin-right: 0 !important; 
    margin-left: -4px !important;
    /*position: relative !important;*/
  }

  .timeLine-title,
  .dtc .timeLine-txt {
    margin: 0 !important;
    /*margin-left: 5vw !important;*/
    margin-left: 65px !important;
  }

  .timeLine-txt {
    padding-right: 0;
  }

  .timeLine-title {
    margin-bottom: 20px !important;
    width: auto;
  }

  .timeLine-img {
    margin-left: 5vw !important;
    width: calc( 100% - 5vw) !important;
  }

  .about-timeLine .dtc {
    min-height: auto;
  }

  .about-timeLine .page-sec .dt.even .dtc:nth-child(1) {
    order: initial;
    width: 100% !important;
    margin-left: 0;
  }

  .about-timeLine .page-sec .dt.even .dtc:nth-child(2) {
    border: 0;
  }

  .timeLine-year-two,
  .timeLine-item-sp {
    position: relative;
    margin:0;
  }

  .timeLine-item {
    padding-bottom: 0;
  }

  #menu.open .mo_menu_line {
      width: calc(100% - 41px);
  }

  .page_team .flex_set .flex_set {
      flex-wrap: wrap;
  }

  .page_team .about_img_flex {
    width: 100%;
  }

  .swiper_select {
    display: none;
  }

  .ministries_title h2 {
    font-size: 35px;
  }

  .ministries_title .ministries_line h2 {
    font-size: 1.5em;
  }

  .ministries_title {
    flex-wrap: wrap;
  }

  /*.swiper_minist_prev_grab,
  .swiper_minist_act_grab {
    display: none;
  }

  .sec_set.ministries {
    padding-right: 20px;
  }

  .ministries .team_mo {
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: .8em;
  }*/

  /*.ministries .team_mo .gallery-top .swiper-slide img {
    max-height: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    object-fit: cover;
  }*/

  .districts {
    flex-wrap: wrap;
  }

  .inst {
    height: 220px;
  }

  .districts_logo_f,
  .districts_logo_d,
  .districts_logo_f.end {
    min-width: 100%;
    margin-left: 0;
  }

  .districts_logo_f.end {
    float: initial;
  }

  .join_btn_grab {
    margin-top: 20px;
    margin-right: 0;
    justify-content: center;
  }

  /*#banner_ctr_next {
    right: 20px;
  }

  #banner_ctr_prev {
    left: 20px;
  }*/

  .swiper_inn h2,
  .inst_title h2,
  .ministries_line .districts_title_t {
    font-size: 35px;

  }

  .swiper_inn .hashtag {
    gap:3px;
  }

  .swiper_inn .act_item {
    line-height: 1.5em;
  }

  .inst {
    padding-top: 20px;
    width: 100%;
    overflow-x: hidden;
  }

  .inst_end::after {
    transform: rotate(14deg);
  }

  .banner_ctr_grab {
    width: 100%;
    text-align: center;
  }

  .inst_list {
    padding: 0 20px;
    padding-bottom: 60px;
  }

  .inst_end_txt {
    padding-right: 20px;
  }

  .inst_list_item {
    width: 100%;
  }

  .districts_logo_grab {
    width: 100%;
  }

  .inst_list_item img{
    height: calc((100vw - 40px) * 4/6 );
  }

  .page_team .about_img img {
    /*width: 400px;*/
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .about_img {
    max-height: 500px;
    overflow: hidden;
  }

  .about_sec1 .about_img {
    width: 100%;
  }

  .listImg_cell.type2_1, .listImg_cell.type2_1 img {
      height: 320px;
  }

  .cell_2 {
     height: 150px;
     overflow: hidden; 
  }

  .listImg_cell.type2 .listImg_cell_r1,
  .listImg_cell.type2 .listImg_cell_r2 {
      height: 150px;
  }

  .gallery_title {
    position: relative;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: end;
    padding-right: 10px;
  }

  .gallery_title svg,
  .ig_section.sec2 .gallery_title svg {
    transform: initial;
  }

  .gallery_list {
    width: 100%;
    margin-left: 0;
    padding-right: 10px;
    padding-left: 10px;
  }

  .kid_page_content.first {
    margin-left: 0;
    padding-right: 20px;
    padding-left: 20px
  }

  .kid_txt {
    max-width: 100%;
  }

  .kid_txt_grab {
    flex-wrap: wrap;
  }

  .ig_section.sec2 .gallery_list {
    margin-right: 0;
  }

  .ig_section.sec2 .gallery_title {
    left: 0;
  }

  .districts_logo_grab img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  
  .districts_logo_f, .districts_logo_d {
    height: 90px;
  }

  .inst_pretxt {
    padding: 60px 20px;
  }

  #banner_ctr_next {
    top: calc(50% - 20px);
    right: 20px;
  }
  #banner_ctr_prev {
    top: calc(50% - 20px);
    left: 20px;
  }

  .districts_d_txt .popitem {
    text-decoration: underline;
  }

  #districts .ministries_line .secline {
    margin-left: 20px;
  }

  .kid_page_content img {
    width: 160px;
  }

  .sec_set.ministries.kids_sec1 {
    padding-bottom: .8em;
  }

  .secline_l {
    flex-grow: 1;
    width: initial;
  }

  .index_map_grab {
    padding: 0 20px;
    border-radius: 5px;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);
  }

  .index_map_grab .index_map {
    padding: 20px 0;
    border-radius: 0;
  }

  .index_map_grab .index_map_bcolor {
    width: 100%;
    left: 0;
    padding: 0;
  }

  .index_ig .ig_section.sec2 {
    margin: 0;
    width: 100%;
  }

  .index_ig .ig_section.sec2 .gallery_title {
    position: absolute;
    width: 80px;
    z-index: 999;
    left: -41px;
    top: 150px;
  }

  .index_ig .ig_section.sec2 .gallery_title svg {
    transform: rotate(-90deg);
  }

  .index_ig .ig_section.sec2 .gallery_list {
    padding: 0 20px;
    margin-left: 40px;
  }

  .index_t_sec {
    padding: 0 20px;
  }

  .index_t_all {
    flex-wrap: wrap;
    gap: 20px;
  }

  .index_t_grab {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  /*.index_t_grab.it_left .index_t_txt {*/
  .index_t_grab .index_t_txt {
    background: #fff;
    width: 100%;
    padding: 20px;
    flex-grow: 1;
    text-align: center;
    max-width: 100%;
    order: 1;
  }

  .index_t_txt {
    display: block !important;
    text-align: center !important;
  }

  .index_t_txt p {
    text-align: center;
    width: 100%;
    font-weight: 300;
  }


  .index_t_txt_mo {
    display: block;
  }

  .index_t_txt_mo_line {
    width: 80px;
    height: 2px;
    background: rgb(71 255 159 / 80%);
    margin: 1em auto;
  }

  .index_t_txt > p {
    display: none;
  }

  .index_t_grab.it_center .index_t_txt {
    padding: 20px;
  }

  .swiper_sec2_mo {
    padding-left: 20px;
  }

  .swiper_sec2_mo .sec2_item,
  .swiper_sec2_mo .sec2_img {
    min-width: initial;
    width: 100%;
  }

  .swiper_sec2_mo img {
    width: 100%;
    height: calc(100vw - 40px);
    object-fit: cover;
  }
      

  .swiper_sec2_mo .swiper-slide {
    background: transparent;
  }

  .index_sec2_l_row {
    display: none;
  }

  .swiper_sec2_mo {
    display: block;
  }

  /*.banner_ctr_title,
  .banner_ctr {
    padding: 0 20px;
  }*/

  /*.banner_ctr {
    padding-bottom: 60px;
    gap: 20px;
  }
  .swiper_select.swiper {
    width: 180px;
  }*/



}