@charset "utf-8";
/* CSS Document */ :root {
  --black: #333;
  --brown: #343434;
  --yellow: #ffe906;
  --kyellow: #FFCB22;
  --pink: #cc1852;
  --blue: #0077BE;
  --navy: #10407f;
  --knavy: #363466;
  --gray: #999;
  --ugray: #F2F2F2;
  --red: #F01C1C;
  --rave: #f3ecf9;
  --umizu: #A4ECFE;
  --cream: #ffecb6;
  --green: #06c755;
  --f_sans: 'Noto Sans JP', sans-serif;
  --f_serif: 'Noto Serif JP', serif;
  --center_contain: no-repeat center center / contain;
}
img {
  max-width: 100%;
}
#nopc,.nopc,.br-sp{ display: none !important;}
main.main { font-family: "Noto Sans JP", serif;}
#wrap {
  width: 100%;
  min-height: 400px;
  margin: 0 auto;
  font-size: 1.2rem;;
  color: var(--black);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "sans-serif";
}
/* MV */
#mv {
  width: 100%;
  background-image: url(../img/main.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  height: 550px;
  display: flex;
  align-items: center;
}
p.title{ margin: -1rem auto 0;}

/* ナビ */
#pageNavi.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	box-shadow:0px 1px 2px 0px rgba(0,0,0,0.1);
}
#pageNavi {
	width: 100%;
	height: 64px;
	background-color: var(--pink);
}
#pageNavi ul {
	height: 64px;
	margin: 0 auto;
	display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  width: 992px;
  margin: 0 auto;
}
#pageNavi li {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: #FFF3DF;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    transition: .3s;
    letter-spacing: 1px;
	  text-align: center;
    border-left: solid 3px #FFF3DF;  
    cursor: pointer;
}
#pageNavi ul li a {
    color: inherit;
    text-decoration: inherit;
}
#pageNavi ul li a:hover {
    opacity: .7;
}
#pageNavi li:last-of-type {
    border-right: solid 3px #FFF3DF;
}
p.taiwan-title {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: var(--pink);
  margin-top: 1rem;
  line-height: 2.3rem;
}
p.heading--note {
  text-align: center;
  font-weight: bold;
  margin: -2rem 0 2rem;
}
.heading--title {font-weight: bold; margin-top: 1rem; margin-bottom: 3rem;}
.heading--subTitle {
  font-size: 0.8em;
  padding: 0.5rem 0;
  background: var(--pink);
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.Title--sub {
  text-align: center;
  font-size: 1.5rem;
  margin: -3rem 0 1rem;
  font-weight: 700;
}
.heading--schedule {
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.4;
    font-size: 2.29rem;
    font-weight: bold;
}
/* 案内 */
.textBox { padding: 0 2rem;}
.textBox p { font-size: 1.2rem;}
.map_txt { width: 100%;}
.map_txt .ph{
  display: flex;
  justify-content: center;
}
.map_txt .ph li{ width: 270px; margin-right: 10px;}
.map_txt .p{ width: 270px; margin-right: 10px;}
.guidancebox {
  display: flex;
  align-content: space-around;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: -3rem;
}
.mongolia_ph { margin-left: 1rem;}
.hayawari {text-align: center; margin: -2rem 0 2rem;}

/* フライトスケジュール */
section#flight { margin-top: -4rem;}
.flightSchedule tr { background: #fff;}

/* 台湾の魅力 */
h2.heading--title:before, h2.heading--title:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url(../img/flower.png) no-repeat;
    background-size: contain;
    margin: 0 15px;
}
h2.heading--seentitle{
  font-size: 2.29rem;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.4;
}
#seen h5 {
  font-size: 1.3em;
  font-weight: bold;
  color: var(--pink);
  text-align: center;
}
#seen h5 span{ font-size: 1rem;}
/* ツアーポイント */
.tour_point {
  background: var(--rave);
  margin-bottom: 1rem;
}
.tour_point ol{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  font-size: 1.2rem;
  font-weight: 600;
  padding: 2rem;
}
.tour_point li{
  position: relative;
  border-bottom: dashed 1px var(--purple);
  padding-left: 3rem;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.tour_point li:before{
  position: absolute;
  counter-increment: number;
  content: counter(number) ;
  left: 0px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: #fff;
  background: var(--purple);
  border-radius: 50%;
  top: 40%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.conts{
  width: 100%;
  text-align: center;
  margin: -1rem 0 2rem;
}
.bus_conts{
  width: 100%;
  text-align: center;
  margin: -1rem 0 2rem;
}
/* 1並び商品 */
section#oitbeppu,section#seen,section#free,section#bn_area { background: var(--rave);}
.lx_textBox { width: 100%;}
.heading--md{ line-height: 1.8rem; font-size: 1.25rem;}
.tour_waku {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
}
.col_waku {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.grid-col__body {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}
.col_waku .imgContainer--full>img { aspect-ratio: 5 / 3.5;}
.tour_waku .img { margin-right: 2rem; width: 60%;}
.lx_textBox h3,.mnTxt_1 h3 {
  font-size: 1.1em;
  font-weight: 600;
  color: var(--red);
}
.text_tour {
  font-size: 1rem;
  padding: 0.5rem;
  background: var(--ugray);
  margin: 0.5rem 0;
}
.text--smallPrice {
  font-weight: 600;
  color: var(--red);
  text-align: end;
  padding-right: 1rem;
  margin-top: auto;
}
.tour-nenyu{ 
  font-size: 1rem;
  text-align: end;
}
/* 4並び商品 */
.section__container.free-title { margin-bottom: -3rem;}
section#freeplan { margin-bottom: 2rem;}
div#freetour {
  width: 992px;
  margin: 0 auto;
}
.grid-col__link {
  border: 2px solid #ddd;
  padding: 0.5rem;
  margin-bottom: 1rem;
  background: #fff;
}
.imgContainer--full {margin-bottom: 0.5rem; border-radius: 0;}

/* もっと見る */
.link_more { text-align: center; margin-top: 1rem;}
.button { max-width: 400px; margin: 2rem -1rem;}
.button--type-outline {
  color: #fff;
  background-color: var(--pink);
  border-color: #fff;
}
.button--type-outline:focus, .button--type-outline:hover {
  color: #fff;
  background-color: var(--pink);
  border-color: #fff;
  letter-spacing: 0.15em;
  opacity: 0.6;
}
/* 市長のあいさつ */
.introduction_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.introduction_detail p { font-size: 1.2rem; }
.introduction_detail span { display: block; }
.introduction_img {width: 30%;}
.introduction_detail {width: 80%;}

/* 問い合わせ */
.ui-static-section-wrapper.contact {
  border: 1px solid var(--pink);
  padding: 0;
}
.ui-static-section-wrapper.contact a{text-decoration: none; color: #000;}
.contact h3 {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  background: var(--pink);
  color: #fff;
  font-size: 1.5em;
  padding: 0.3em;
  margin: 0 0 0.5em;
}
.contact dl {
  margin: 1em auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
  font-size: 1.2em;
  place-content: center;
  align-items: center;
  width: 90%;
}
.contact dt {
  background: var(--navy);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 0.5em;
  width: 90%;
}
.contact dd span {
  font-size: 1.5em;
  font-weight: bold;
}
.h-note {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 600;
  font-style: normal;
  color: var(--navy);
  text-align: center;
  font-size: 20px;
}
dl.first_tenpo {
  border-bottom: 4px dotted #000000;
  padding-bottom: 1rem;
}
/*▼▼完売▼▼*/
.soldout a{ pointer-events: none !important }
.soldout{
  position: relative;
  display: flex;
  }
.soldout::after{
  background: rgba(0,0,0,0.7);
  position: absolute;
  content: 'SOLD OUT';
  font-size: 3.5rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  height:95%;
  width: 100%;
}
.soldout .text--smallPrice { color: #4c4c4c !important;}
  
/* 特集 */
.feature,.innner,.section__container{ width: 992px; margin: 0 auto;}
.footerArea { margin-bottom: 2rem;}
.align-center a {padding: 0 1rem;}
.align-center {
  display: flex;
  padding: 1r;
  justify-content: space-around;
}
p.feature {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 2rem;
}
ul.clearfix {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
ul.clearfix li{ padding: 1rem;}
div#PushuInfo{
  margin: 2rem 0;
  background: var(--ugray);
}

/* ★スマホ用★ */
.headfoot-is-sp .section__container{ width: 100%;}
.headfoot-is-sp .goTop__img--pc {
  display: none;
}
.headfoot-is-sp #nopc,.headfoot-is-sp .nopc,.headfoot-is-sp .br-sp{ display: block !important;}
.headfoot-is-sp #nosp,.headfoot-is-sp .nosp,.headfoot-is-sp .br-pc{ display: none !important;}
.headfoot-is-sp #wrap nav ul li a{
  font-size: 1rem;
	font-weight: bold;
  line-height: 1.5rem;
}
.headfoot-is-sp #pageNavi li:first-child { border-left: none;}
.headfoot-is-sp #pageNavi li:last-of-type { border-right: none;}

.headfoot-is-sp #wrap { min-height: auto;}
.headfoot-is-sp .heading--title,.headfoot-is-sp .heading--schedule { 
  font-size: 1.6rem;
  margin: 1rem 0;
}
/* MV */
.headfoot-is-sp #mv {
  background-image: url(../img/main_sp.jpg);
  background-size: 100%;
  height: 61vw;
}
.headfoot-is-sp p.title { text-align: center;}
.headfoot-is-sp p.title img { width: 85%;}

/* ナビ */
.headfoot-is-sp #pageNavi { height: 70px;}
.headfoot-is-sp #pageNavi ul { width: 100%; height: 70px;}
.headfoot-is-sp .Title--sub { 
  margin: -1rem 0 1rem;
  line-height: 1.3rem;
  padding-top: 0.5rem;
}
.headfoot-is-sp .Title--sub span { font-size: 1rem;}
.headfoot-is-sp h2.heading--schedule { font-size: 1.5rem; margin-left: 1.2rem;}
.headfoot-is-sp .textBox p { text-align: center;}
.headfoot-is-sp p.heading--note { margin: -1rem 0; font-size: 0.9rem;}

/* 案内 */
.headfoot-is-sp .guidancebox {
  display: block;
  margin-bottom: -1rem;
}
.headfoot-is-sp p.taiwan-title {
  margin: 1rem 0;
  line-height: 2rem;
  font-size: 1.6rem;
}
.headfoot-is-sp .textBox { padding: 0 1rem;}
.headfoot-is-sp .flightSchedule caption { font-size: 1.5rem; padding: 0.3rem 0 0;}
.headfoot-is-sp .flightSchedule th { font-size: 0.9rem;}
.headfoot-is-sp .note{ text-align: center; font-size: 0.6rem;}
.headfoot-is-sp .hayawari { margin: -1rem 0 2rem;}

/* 台湾の魅力 */
.headfoot-is-sp h2.heading--title:before,.headfoot-is-sp h2.heading--title:after {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

/* ツアーポイント */
.headfoot-is-sp .tour_point li{ padding-left: 3rem;}
.headfoot-is-sp .tour_point li:before{
  width: 30px;
  height: 30px;
  line-height: 30px;
}
/* 台湾の魅力 */
.headfoot-is-sp .grid-col3 {width: 50%; align-items: flex-start;}
.headfoot-is-sp #seen h5 span{ font-size: 0.7em;}

/* ツアーポイント */
.headfoot-is-sp .conts{ margin: 0 0 1.5rem;}
.headfoot-is-sp .bus_conts { padding: 0.5rem 1rem 0;}

/* 1並び商品 */
.headfoot-is-sp .tour_waku { 
  display: block;
  align-items: flex-start; 
  padding-bottom: 1rem;
} 
.headfoot-is-sp .tour_waku .img { margin-right: 0.5rem; width: 100%; zoom: 2; ma}
.headfoot-is-sp .lx_textBox { margin-top: 0.5rem; padding: 0 1rem;}
.headfoot-is-sp .heading--md {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  line-height: 1.7rem;
}
.headfoot-is-sp p.textBox_sb { margin: 0 0 0.5rem;}
.headfoot-is-sp .text_tour { padding: 0;}
.headfoot-is-sp .text--smallPrice { padding-right: 0; text-align: center;}
.headfoot-is-sp .tour-nenyu{ text-align: center; font-size: 0.8rem;}
.headfoot-is-sp .tagList__text { margin: 0 auto;}
.headfoot-is-sp .one_tour { margin-bottom: 1rem;}


/* 4並び商品 */
.headfoot-is-sp .col_waku { flex-direction: row;}
.headfoot-is-sp .imgContainer--full { width: 100%;}
.headfoot-is-sp .col_waku .imgContainer--full { width: 70%; margin-right: 1rem;}
.headfoot-is-sp .grid-col__body { width: 100%; padding-bottom: 0;}
.headfoot-is-sp .grid-col__link { margin-bottom: 0;}

/* フリープラン */
.headfoot-is-sp div#freetour { width: 100%; padding: 1rem;}
.headfoot-is-sp .section__container.free-title { margin-bottom: -1rem;}


/* もっと見る */
.headfoot-is-sp .button { max-width: 700px; margin: 2rem auto 1rem;}

/* 市長のあいさつ */
.headfoot-is-sp .introduction_box { display: block; margin-top: 0;}
.headfoot-is-sp .introduction_detail p { font-size: 1rem;  margin-top: 1rem; }
.headfoot-is-sp .introduction_detail span { text-align: center; }
.headfoot-is-sp .introduction_img  {width: 80%; margin: 0 auto;}
.headfoot-is-sp .introduction_detail  {width: 100%;}

/* 特集 */
.headfoot-is-sp .innner,.headfoot-is-sp .section__container{ width:100%; margin: 0 auto;}
.headfoot-is-sp .feature{ width:100%; margin: 2rem auto 0;}
.headfoot-is-sp ul.clearfix {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.headfoot-is-sp ul.clearfix li{  width: calc(90% / 2); padding: 0.5rem;}

/* 完売 */
.headfoot-is-sp .soldout::after{ height:100%;}

/* ★タブレット用★ */
.is-ipad .spot__point_box li { width: calc(90% / 3);}
.is-ipad .spot__point_box li:nth-child(even) { margin: 0 auto 0.5rem; }
.is-ipad .map_txt { width: 60%;}



@media (orientation: portrait){
.is-ipad .breadcrumb { width: 100%;}
    width: 1024px;
    margin: 0 auto;
.is-ipad #wrap nav ul{ width: 100%;}
.is-ipad .section__container { width: 100%;}
.is-ipad p.floorplan { width: 65%;}
.is-ipad #pageNavi ul { width: 100%;}
.is-ipad div#freetour { width: 100%;}
.is-ipad ul.clearfix { width: 100%;}
}

