@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, "Arial Black", "Noto Sans TC", serif, "微軟正黑體", "新細明體", "細明體";
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  letter-spacing: 1px;
  box-sizing: border-box;
}
body::before {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

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

div, span {
  display: block;
  width: 100%;
}

button {
  display: none;
}

*:focus {
  outline: none;
} /*解決滾動到區塊時出現框線問題*/
:root {
  --main-color01: #f15a24;
  --main-color02: #ff931e;
}

p {
  font-size: 1.15vw;
  line-height: 1.5;
  color: #fff;
  font-weight: 400;
}
@media (max-width: 992px) {
  p {
    font-size: 1.5vw;
  }
}
@media (max-width: 768px) {
  p {
    font-size: 3.5vw;
  }
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

.mob {
  display: none;
}
@media (max-width: 768px) {
  .mob {
    display: block;
  }
}

.pad-pc {
  display: block;
}
@media (min-width: 992px) {
  .pad-pc {
    display: none;
  }
}

.pad-h {
  display: none;
}
@media (max-width: 992px) {
  .pad-h {
    display: block;
  }
}

.wrapper_bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0%;
  z-index: -2;
  overflow: hidden;
}
.wrapper_bg::after {
  display: block;
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
}

.btn_style {
  transform-origin: center;
  transform: scale(1);
  transition: all 0.15s ease-in-out;
}
.btn_style:hover {
  cursor: pointer;
  transform: scale(0.9);
}

:root {
  --shadow-opacity: 0;
}

/*---kv---*/
header {
  width: 100%;
  position: fixed;
  left: 0%;
  top: 0%;
  z-index: 9999;
  padding: 1vw 0;
  box-shadow: 0 5px 5px rgba(242, 95, 36, var(--shadow-opacity));
  transition: box-shadow 0.5s ease-in-out;
}
header::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: #fff;
  z-index: -1;
}

.header_w {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_w .logo-1 {
  width: 13.5%;
  order: 1;
}
@media (max-width: 768px) {
  .header_w .logo-1 {
    width: 32.2%;
  }
}
.header_w .logo-2 {
  width: 18%;
  position: relative;
  order: 3;
}
@media (max-width: 768px) {
  .header_w .logo-2 {
    width: 48.2%;
  }
}
.header_w nav {
  width: auto;
  position: relative;
  order: 2;
}
@media (max-width: 768px) {
  .header_w nav {
    display: none;
  }
}
.header_w nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_w nav ul li {
  display: inline;
  position: relative;
  font-size: 1vw;
  line-height: 1.2;
  color: #000;
  border-left: 1px solid #000;
  padding: 0 0.5vw;
}
.header_w nav ul li:last-child {
  border-right: 1px solid #000;
}
.header_w nav ul li::after {
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: var(--main-color01);
  position: absolute;
  left: 5%;
  bottom: -10%;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.header_w nav ul li a {
  text-decoration: none;
  position: relative;
  font-size: 1vw;
  line-height: 1;
  color: #000;
  z-index: 2;
  transition: all 0.25s ease-in-out;
}
.header_w nav ul li:hover a {
  color: var(--main-color01);
}
.header_w nav ul li:hover::after {
  width: 90%;
}

.agent_w {
  width: 20%;
  position: absolute;
  right: -0.25%;
  top: 5.9vw;
  z-index: 2;
  filter: drop-shadow(-5px 5px 2px rgba(242, 95, 36, var(--shadow-opacity)));
  transition: filter 0.5s ease-in-out;
}
@media (max-width: 768px) {
  .agent_w {
    display: none;
  }
}
.agent_w .agent_box {
  position: relative;
}
.agent_w .agent_box .agent {
  display: block;
  width: 85%;
  font-size: 1vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  border-radius: 200px;
  background: linear-gradient(to right, var(--main-color02) 0%, var(--main-color01) 100%);
  position: absolute;
  right: -5%;
  top: -6%;
  z-index: 2;
  padding: 3.5% 0;
}

.kv_w {
  position: relative;
  margin: 0% auto;
  padding-top: 6vw;
  overflow: hidden;
}

#swiper-container00 > .swiper-wrapper > .swiper-slide {
  position: relative;
}
#swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box {
  position: relative;
}
#swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv01_info {
  width: 19%;
  position: absolute;
  right: 2.9%;
  bottom: -100%;
  z-index: 2;
  opacity: 0;
  transition: all 1s ease-in-out 1s;
}
@media (max-width: 768px) {
  #swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv01_info {
    width: 100%;
    right: 0;
  }
}
#swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv02_info, #swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv03_info {
  width: 19%;
  position: absolute;
  right: 5.9%;
  bottom: -100%;
  z-index: 2;
  opacity: 0;
  transition: all 1s ease-in-out 1s;
}
@media (max-width: 768px) {
  #swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv02_info, #swiper-container00 > .swiper-wrapper > .swiper-slide .kv_box .kv03_info {
    width: 100%;
    right: 0;
  }
}

#swiper-container00 > .swiper-wrapper > .swiper-slide-active {
  position: relative;
}
#swiper-container00 > .swiper-wrapper > .swiper-slide-active .kv_box {
  position: relative;
}
#swiper-container00 > .swiper-wrapper > .swiper-slide-active .kv_box .kv01_info {
  opacity: 1;
  bottom: 0;
}
#swiper-container00 > .swiper-wrapper > .swiper-slide-active .kv_box .kv02_info, #swiper-container00 > .swiper-wrapper > .swiper-slide-active .kv_box .kv03_info {
  opacity: 1;
  bottom: 0;
}

main {
  position: relative;
  z-index: 3;
}
main section {
  padding-top: 10%;
}

.root_w {
  width: 92.1%;
  margin: 0 auto;
}

/*---s01--------------*/
.box_w {
  background: #fff;
  border: 1px solid var(--main-color01);
  border-radius: 30px;
  padding: 5%;
  box-sizing: border-box;
  margin: 5% auto;
}

.box_w02 {
  background: #fff;
  border: 1px solid var(--main-color01);
  border-radius: 30px;
  padding: 0 5% 5%;
  box-sizing: border-box;
  margin: 5% auto;
}

.box_w03 {
  padding: 0 5% 5%;
  box-sizing: border-box;
  margin: 5% auto;
}

.about_w {
  position: relative;
}
.about_w h2 {
  width: 24.5%;
  position: absolute;
  left: -0.75%;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .about_w h2 {
    width: 45%;
    left: -1.5%;
    top: 5vw;
  }
}
.about_w .about_content {
  width: 89.2%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .about_w .about_content {
    margin-top: 20%;
    width: 100%;
  }
}
.about_w .about_content h3 {
  width: 68%;
  margin: 2.5% auto;
}
@media (max-width: 768px) {
  .about_w .about_content h3 {
    width: 100%;
  }
}
.about_w .about_content ul.about {
  display: flex;
}
@media (max-width: 768px) {
  .about_w .about_content ul.about {
    flex-wrap: wrap;
  }
}
.about_w .about_content ul.about li {
  width: 50%;
  padding: 0 5%;
  border-right: #F15A24 dotted 3px;
}
@media (max-width: 768px) {
  .about_w .about_content ul.about li {
    width: 80%;
    margin: 0 auto;
    border-right: none;
    border-bottom: #F15A24 dotted 3px;
  }
}
.about_w .about_content ul.about li:last-child {
  border: none;
}
.about_w .about_content ul.about li img {
  margin: 0 auto;
}
.about_w .about_content ul.about li p {
  font-size: 1.2vw;
  line-height: 2vw;
  color: #4d4d4d;
  text-align: left;
}
@media (max-width: 768px) {
  .about_w .about_content ul.about li p {
    font-size: 3vw;
    line-height: 4.5vw;
    padding-bottom: 4vw;
  }
}

.s01_logo01 {
  width: 34%;
}
@media (max-width: 768px) {
  .s01_logo01 {
    width: 45%;
  }
}

.s01_logo02 {
  width: 48%;
}
@media (max-width: 768px) {
  .s01_logo02 {
    width: 70%;
  }
}

/*---s02--------------*/
.time_w {
  position: relative;
}
.time_w h2 {
  width: 18.9%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .time_w h2 {
    width: 40%;
  }
}
.time_w h2::before {
  display: block;
  content: "";
  width: 50.5%;
  height: 80%;
  background: url(../images/s02/h2_ch.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  left: -55%;
  top: 0%;
  z-index: 2;
}
.time_w h2::after {
  display: block;
  content: "";
  width: 66%;
  height: 80%;
  background: url(../images/s02/h2_en.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: -70%;
  top: 0%;
  z-index: 2;
}
.time_w .timetable {
  width: 68.6%;
  margin: 2.5% auto;
}
@media (max-width: 768px) {
  .time_w .timetable {
    width: 100%;
  }
}

/* 停飛公告 */
h2.bulletin_title {
  width: 18.9%;
  position: relative;
  margin: 0 auto;
}
h2.bulletin_title::before {
  display: none;
}
h2.bulletin_title::after {
  display: none;
}
@media (max-width: 768px) {
  h2.bulletin_title {
    width: 40%;
  }
}

div.bulletin_info {
  width: 68.6%;
  margin: 2.5% auto;
}
@media (max-width: 768px) {
  div.bulletin_info {
    width: 100%;
  }
}
div.bulletin_info h3 {
  font-size: 2vw;
  font-weight: 500;
  line-height: 2;
  color: #f15a24;
  border-bottom: 2px solid #F15A24;
}
@media (max-width: 768px) {
  div.bulletin_info h3 {
    font-size: 4vw;
  }
}
div.bulletin_info p {
  color: #333;
  line-height: 2;
  text-align: justify;
  margin: 2% auto;
}

/*---s03--------------*/
.view_w {
  position: relative;
}
.view_w h2 {
  margin: 2.5% auto;
}
.view_w h2.h2_bohol {
  width: 32.2%;
}
@media (max-width: 768px) {
  .view_w h2.h2_bohol {
    width: 50%;
  }
}
.view_w h2.h2_boracay {
  width: 37.8%;
}
@media (max-width: 768px) {
  .view_w h2.h2_boracay {
    width: 50%;
  }
}

.view_content {
  width: 89.2%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .view_content {
    width: 100%;
  }
}

.view_g {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .view_g {
    flex-wrap: wrap;
  }
}
.view_g img {
  width: 77%;
}
@media (max-width: 768px) {
  .view_g img {
    width: 100%;
  }
}
.view_g .view_info {
  width: 21%;
  padding-top: 1%;
}
@media (max-width: 768px) {
  .view_g .view_info {
    width: 100%;
  }
}
.view_g .view_info h3 {
  font-size: 1.8vw;
  font-weight: 600;
  color: #f15a24;
}
@media (max-width: 768px) {
  .view_g .view_info h3 {
    font-size: 4vw;
    line-height: 8vw;
  }
}
.view_g .view_info p {
  font-size: 1vw;
  line-height: 1.8vw;
  padding: 0 1%;
  color: #000;
}
@media (max-width: 768px) {
  .view_g .view_info p {
    font-size: 3vw;
    line-height: 5vw;
    font-weight: 300;
    padding: 0 0 5% 0;
  }
}

.swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  padding: 2.5vw 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .swiper-pagination {
    padding: 5.5vw 0 2.5vw 0;
  }
}

.swiper-pagination-bullet {
  width: 1vw;
  height: 1vw;
  margin: 5px;
  background: #fff;
  border: 1px solid var(--main-color01);
  opacity: 1;
  margin-top: 2%;
}
@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 2.5vw;
    height: 2.5vw;
    margin: 3px;
  }
}

.swiper-pagination-bullet-active {
  background: var(--main-color01);
}

.btn_ebook {
  display: inline-block;
  position: relative;
  width: auto;
  border-radius: 200px;
  background: linear-gradient(to right, var(--main-color02) 0%, var(--main-color01) 100%);
  overflow: hidden;
  padding: 0.5% 2%;
  float: right;
  margin-top: -6vw;
  z-index: 5;
}
@media (max-width: 768px) {
  .btn_ebook {
    margin-top: 0;
    padding: 1% 6%;
  }
}
.btn_ebook a {
  text-decoration: none;
}
.btn_ebook a span {
  display: inline-block;
  width: auto;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .btn_ebook a span {
    font-size: 3.2vw;
  }
}

/*---s05--------------*/
.news_w {
  position: relative;
}
.news_w h2 {
  width: 24.5%;
  position: absolute;
  left: -0.75%;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .news_w h2 {
    width: 45%;
    left: -1.5%;
    top: 5vw;
  }
}
.news_w .news_content {
  width: 73%;
  position: relative;
  margin: 5% auto 0;
}
@media (max-width: 768px) {
  .news_w .news_content {
    width: 100%;
    margin: 15% 0 3% 0;
  }
}
.news_w .news_content h3 {
  width: 60%;
  margin: 2.5% auto;
}
.news_w .news_content .news_list_g .news_list {
  display: flex;
  justify-content: space-between;
  padding: 1% 0;
}
.news_w .news_content .news_list_g .news_list img {
  width: 15%;
  padding: 2% 0;
}
.news_w .news_content .news_list_g .news_list .news_title {
  width: 83%;
  border-bottom: #F15A24 dotted 3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news_w .news_content .news_list_g .news_list .news_title p {
  font-size: 1.1vw;
  font-weight: 300;
  color: #000;
  line-height: 2vw;
}
@media (max-width: 768px) {
  .news_w .news_content .news_list_g .news_list .news_title p {
    font-size: 3vw;
    line-height: 5vw;
  }
}

.btn_more {
  display: inline-block;
  position: relative;
  width: auto;
  border-radius: 200px;
  background: linear-gradient(to right, var(--main-color02) 0%, var(--main-color01) 100%);
  overflow: hidden;
  padding: 0.5% 2%;
  z-index: 5;
}
@media (max-width: 768px) {
  .btn_more {
    overflow: visible;
    padding: 0.5% 4%;
    margin: 1%;
  }
}
.btn_more a {
  text-decoration: none;
}
.btn_more a span {
  display: inline-block;
  width: auto;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

/*---s06--------------*/
.tour_w {
  position: relative;
}
.tour_w h2 {
  width: 18.9%;
  position: relative;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tour_w h2 {
    width: 38%;
    margin: 0 32% 0 30%;
  }
}
.tour_w h2::before {
  display: block;
  content: "";
  width: 66%;
  height: 80%;
  background: url(../images/s06/h2_ch.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  left: -65%;
  top: 0%;
  z-index: 2;
}
.tour_w h2::after {
  display: block;
  content: "";
  width: 92.2%;
  height: 80%;
  background: url(../images/s06/h2_en.png) no-repeat center;
  background-size: 100%;
  position: absolute;
  right: -95%;
  top: 0%;
  z-index: 2;
}

ul.tour_g {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  margin: 1% auto;
}
ul.tour_g li {
  width: 23%;
  margin: 2% 1%;
}
@media (max-width: 768px) {
  ul.tour_g li {
    width: 46%;
    margin: 4% 2%;
  }
}

/*---s07--------------*/
.contact_w {
  position: relative;
}
.contact_w h2 {
  width: 26.8%;
  position: absolute;
  left: -0.75%;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .contact_w h2 {
    width: 45%;
    left: -1.5%;
    top: 5vw;
  }
}
.contact_w .contact_content {
  width: 89.2%;
  position: relative;
  margin: 5% auto 0;
}
@media (max-width: 767px) {
  .contact_w .contact_content {
    margin-top: 20%;
  }
}
.contact_w .contact_content .company {
  margin: 0 auto;
  width: 37%;
}
@media (max-width: 767px) {
  .contact_w .contact_content .company {
    width: 90%;
  }
}
.contact_w .contact_content ul.contact_info_g {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 5%;
  justify-content: space-around;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g {
    flex-direction: column;
    margin-top: 0;
  }
}
.contact_w .contact_content ul.contact_info_g li {
  width: 24%;
  text-align: center;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li {
    width: 70%;
  }
}
.contact_w .contact_content ul.contact_info_g li:nth-child(1) {
  border-right: #F15A24 dotted 2px;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li:nth-child(1) {
    border-right: none;
    border-bottom: #F15A24 dotted 2px;
  }
}
.contact_w .contact_content ul.contact_info_g li:nth-child(2) {
  border-right: #F15A24 dotted 2px;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li:nth-child(2) {
    border-right: none;
    border-bottom: #F15A24 dotted 2px;
  }
}
.contact_w .contact_content ul.contact_info_g li:nth-child(4) {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li:nth-child(4) {
    justify-content: center;
    margin: 5% 0;
  }
}
.contact_w .contact_content ul.contact_info_g li .contact_info {
  padding: 8% 0;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li .contact_info {
    padding: 4% 0;
  }
}
.contact_w .contact_content ul.contact_info_g li .contact_info h3 {
  font-size: 1vw;
  color: #f15a24;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li .contact_info h3 {
    font-size: 3.5vw;
  }
}
.contact_w .contact_content ul.contact_info_g li .contact_info p {
  font-size: 1vw;
  color: #000;
}
@media (max-width: 767px) {
  .contact_w .contact_content ul.contact_info_g li .contact_info p {
    font-size: 3vw;
  }
}
.contact_w .contact_content .map {
  width: 90%;
}

ul.info_list {
  width: 100%;
  display: flex;
  margin: 5% auto 0 auto;
  justify-content: center;
}
@media (max-width: 767px) {
  ul.info_list {
    flex-wrap: wrap;
  }
}
ul.info_list li {
  padding: 0 2%;
  border-right: #F15A24 solid 1px;
  font-size: 0.9vw;
  letter-spacing: 0.2vw;
  color: #000;
}
@media (max-width: 767px) {
  ul.info_list li {
    margin: 2% 0;
    font-size: 2.5vw;
  }
  ul.info_list li:nth-child(2) {
    border: none;
  }
  ul.info_list li:nth-child(4) {
    border: none;
  }
}
ul.info_list li:last-child {
  border: none;
}

.copyright {
  font-size: 1vw;
  margin: 2% auto;
  text-align: center;
  font-size: 0.9vw;
  letter-spacing: 0.2vw;
  color: #000;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 2vw;
  }
}

/*---s08--------------*/
.hotel_w {
  position: relative;
}
.hotel_w h2 {
  width: 24.5%;
  position: absolute;
  left: -0.75%;
  top: 2vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .hotel_w h2 {
    width: 45%;
    left: -1.5%;
    top: 5vw;
  }
}
.hotel_w .hotel_content {
  width: 89.2%;
  position: relative;
  margin: 8% auto 0 auto;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hotel_w .hotel_content {
    margin-top: 20%;
  }
}
.hotel_w .hotel_content2 {
  width: 100%;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.hotels_list_g {
  width: 80%;
  position: relative;
  margin: 20% auto 10%;
}
.hotels_list_g .hotels_list {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/*---footer--------------*/
.footer_p {
  position: relative;
  margin-top: -25%;
  z-index: 2;
}

/*-------------------------------------------------------------*/
.overlay {
  width: 100%;
  background: linear-gradient(to right, rgb(238, 57, 46) 1%, rgb(252, 179, 10) 100%);
  background-size: 100%;
}

.overlay nav {
  top: 0vh;
  height: 100vh;
}
.overlay nav ul {
  display: block;
  width: 30%;
  height: 90%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  padding: 5% 10%;
}
@media (max-width: 768px) {
  .overlay nav ul {
    width: 80%;
  }
}
.overlay nav ul a li {
  width: 100%;
  display: flex;
}
.overlay nav ul a li span {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  color: #fff;
  text-align: center;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.overlay nav ul a:hover li span {
  color: #f1571d;
  border: 2px solid #fff;
  background: #fff;
}

.overlay .overlay-close {
  top: 0;
}

.overlay .overlay-close {
  max-width: 58px;
  max-height: 58px;
}

button.menu_m {
  display: none;
  position: relative;
  top: 0%;
  right: 5%;
  width: 4.3%;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  z-index: 990;
  outline: 0;
  order: 3;
}
@media (max-width: 768px) {
  button.menu_m {
    display: block;
    width: 8vw;
  }
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  background: linear-gradient(to right, rgb(238, 57, 46) 1%, rgb(252, 179, 10) 100%);
}

/*---選項卡---*/
.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tabs label {
  order: 1;
  display: block;
  /*padding: 1rem 2rem;
  margin-right: 0.2rem;*/
  cursor: pointer;
  /*background: #90CAF9;*/
  /* background: url("images/tab/tab_btn_bg.png"); */
  font-weight: bold;
  transition: background ease 0.2s;
  position: relative;
  z-index: 3;
}

.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  /*padding: 1rem;
  background: #fafafa;
  margin:0.2% 0 0.5% 0;*/
}

.tabs input[type=radio] {
  position: absolute;
  opacity: 0;
}

@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label.tab_btn01 {
    background: url("../images/s08/btn_hotel_01_on.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label.tab_btn02 {
    background: url("../images/s08/btn_hotel_02_on.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label.tab_btn03 {
    background: url("../images/s08/btn_hotel_03_on.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label.tab_btn04 {
    background: url("../images/s08/btn_hotel_04_on.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label.tab_btn05 {
    background: url("../images/s08/btn_hotel_05_on.png");
    background-size: 100% 100%;
  }
}

.tabs input[type=radio]:checked + label + .tab {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tabs input[type=radio]:checked + label + .tab {
    margin: 0% auto 0;
  }
}

/*--------------*/
.tabs > label {
  margin: 0.5% 1.3% !important;
}
.tabs > label:nth-child(7) {
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .tab_btn01 {
    width: 30%;
    background: url("../images/s08/btn_hotel_01_off.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tab_btn02 {
    width: 30%;
    background: url("../images/s08/btn_hotel_02_off.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tab_btn03 {
    width: 30%;
    background: url("../images/s08/btn_hotel_03_off.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tab_btn04 {
    width: 30%;
    background: url("../images/s08/btn_hotel_04_off.png");
    background-size: 100% 100%;
  }
}

@media (max-width: 768px) {
  .tab_btn05 {
    width: 30%;
    background: url("../images/s08/btn_hotel_05_off.png");
    background-size: 100% 100%;
  }
}

.tabs {
  display: flex;
  justify-content: flex-start;
}

.tab {
  padding-top: 5%;
}/*# sourceMappingURL=style.css.map */