@charset "utf-8";
  #appdeeplink{
    display: none;
  }
/* GW特集 2024
-------------------------------*/
/*カラー設定
--------------------*/
:root {
  --black: #212529;
  --white: #fff;
  --green: #A7DF9E;
  --green-l: #F3FFF1;
  --yellow: #fcd987;
  --yellow-m: #f5e9bb;
  --yellow-l: #faf6ed;
  --pink: #f14482;
}

/*共通
--------------------------*/
article {
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

/*.camend article:before{
  content: "2021年のGW特集は終了しました";
  text-align: center;background: #da4453;color:#fff;padding:16px 5px;
  display: block;
  width: 100%;
  font-size: 16px;
}*/

a:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
}

/* flex
----------------------------------*/
.flex {
  display: flex;
}

/* section
-------------------------------------*/
.section {
  padding: 90px 0 100px;
}

@media (max-width: 767px) {
  .section {
    padding: 45px 0;
  }
}

/* 見出し
--------------------------------------*/
.heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 36px;
  /* padding-bottom: 20px; */
  position: relative;
}

.heading span {
  display: block;
}

.heading .heading-img {
  display: inline-block;
  text-align: center;
  line-height: 1.4;
	width: 300px;
}

.heading .heading-img img {
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .heading {
    margin-bottom: 22px;
  }
  .heading .heading-img {
    width: 60%;
    margin: auto;
  }
}

/* title
--------------------------------*/
.title {
  background: var(--yellow-m);
  font-size: 24px;
  font-weight: bold;
  color: var(--black);
  line-height: 1.4;
  padding: 16px 20px;
  margin: 32px auto 24px;
}

@media (max-width: 767px) {
  .title {
    font-size: 16px;
    margin: 24px auto 18px;
  }
}

/* title-mid */
.title-mid {
  text-align: center;
  margin-bottom: 20px;
}

.title-mid span {
  font-weight: bold;
  font-size: 18px;
  color: var(--black);
  position: relative;
}

.title-mid span::before,
.title-mid span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 21px;
  height: 21px;
}

.title-mid span::before {
  left: -30px;
  background: url("/static/img/campaign/gw/img-border-left.svg") no-repeat
    center center/100%;
}
.title-mid span::after {
  right: -30px;
  background: url("/static/img/campaign/gw/img-border-right.svg") no-repeat
    center center/100%;
}

/* button
--------------------------------------*/
.button {
  display: block;
  max-width: 300px;
  width: 100%;
  margin: 30px auto;
  padding: 0;
}

.button-cv {
  max-width: 467px;
  text-align: center;
  margin: 30px auto 10px;
}

.button-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  border-radius: 10px;
  border: 2px solid var(--black);
  background: var(--green);
  color: var(--black);
  transition: 0.3s;
}

.button-link-tour {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 30px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.6;
  text-align: center;
  border-radius: 10px;
  border: 2px solid var(--black);
  background: var(--yellow);
  color: var(--black);
  transition: 0.3s;
}

.button-link:hover,.button-link-tour:hover {
  opacity: 0.6;
  color: var(--black);
  text-decoration: none;
}

.button-link::after,.button-link-tour::after {
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 24px;
  color: var(--black);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .button {
    max-width: 100%;
    margin: 20px auto;
  }

  .button-link,.button-link-tour {
    padding: 20px;
    font-size: 16px;
  }

  .button-link::after,.button-link-tour::after {
    top: auto;
    right: 20px;
    width: 20px;
    height: 18px;
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .button-link::after,.button-link-tour::after {
    top: calc(50% - 3px);
    right: 10px;
    width: 20px;
    height: 18px;
    font-size: 16px;
    transform: translateY(-50%);
  }
}

/*text-ib-link*/
.text-ib-link {
  display: inline-block;
  text-decoration: underline;
  color: #fff;
  position: relative;
  padding-right: 20px;
}

.text-ib-link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  color: #fff;
}

@media (max-width: 767px) {
  .text-ib-link {
    margin-top: 5px;
    font-size: 12px;
  }
}

/* text
--------------------------------------*/
.lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 20px;
  color: #3d3c3c;
}

.bold {
  font-weight: bold;
}

.small {
  font-size: 80%;
}

.text-center {
  text-align: center;
}

@media (max-width: 767px) {
  .lead {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*color*/
.color-red {
  color: var(--red);
}

/* contents
---------------------------------------------*/
/*　MV
---------------------------------------*/
.mv-area {
  width: 100%;
  text-align: center;
}
.mv-area img {
  width: 100%;
  max-width: 100%;
  object-position: top center;
  object-fit: cover;
  margin: auto;
}

/* sentence-area
---------------------------------------*/
.sentence-area {
  background: var(--green-l);
  padding: 36px 0 30px;
}

@media (max-width: 767px) {
  .sentence-area {
    padding: 30px 0 30px;
  }
}

@media (max-width: 560px) {
  .sentence-area {
    padding: 30px 0 10px;
  }
}

/* page nav
--------------------------*/
.page-nav {
  margin: 20px auto 10px;
}

.page-nav ul {
  width: 80%;
  margin: auto;
  display: flex;
  gap: 2%;
  justify-content: center;
}

.page-nav li {
  width: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-nav li a {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: var(--black);
  padding: 18px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--black);
  border-radius: 50px;
  background-color: var(--green);
  transition: 0.3s;
}


.page-nav ul li:last-child a::before{
  content: "";
  position: absolute;
  top: -15px;
  left: 10px;
  width: 55px;
  height: 55px;
  display: inline-block;
  background: url("/static/img/campaign/gw/ico-sale.png") no-repeat center
    center/100%;
}

.page-nav li a::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  font-size: 14px;
  color: var(--black);
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (max-width: 992px) {
  .page-nav ul {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .page-nav {
    margin: 0 auto 10px;
  }

  .page-nav ul {
    width: 100%;
    gap: 1.5%;
  }

  .page-nav li {
    justify-content: space-between;
  }

  .page-nav li a {
    font-size: 12px;
    padding: 12px 20px;
  }
	
.page-nav ul li:last-child a::before{
  top: -6px;
  left: 6px;
  width: 38px;
  height: 37px;
}	

  .page-nav li a::after {
    right: 16px;
    font-size: 10px;
  }
}

@media (max-width: 340px) {
  .page-nav li a {
    font-size: 12px;
  }
	.page-nav ul li:last-child a::before{
  width: 32px;
  height: 31px;	
	}	
}

/* price-area
---------------------------------------------*/
.price-area {
  background: var(--green-l);
  padding: 10px 0 100px;
}

@media (max-width: 767px) {
  .price-area {
    padding: 10px 0 60px;
  }
}

@media (max-width: 560px) {
  .price-area {
    padding: 10px 0 60px;
  }
}

/* calendar
-------------------------*/
.calendar-box {
  border-radius: 10px;
  border: 1px solid #71827c;
  background: var(--green);
  padding: 36px 32px 30px;
}

.calendar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: center;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px dotted var(--white);
  margin-bottom: 16px;
}

.calendar-item {
  width: 13%;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 4px;
}

.calendar-item .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* week */
.calendar-item .week {
  text-align: center;
  padding: 5px 10px;
  width: 100%;
}
.calendar-item .week img{
	height: 16px;
}

.calendar-item.gray .week {
  background: #777570;
}

.calendar-item.red .week {
  background: #e85376;
}

.calendar-item.blue .week {
  background: #5eb8ff;
}

/* day */
.calendar-item .day {
  text-align: center;
  padding: 8px 16px 0;
	font-size: 30px;
	font-weight: 900;
	font-family: 'Oswald', sans-serif;
	line-height: 1em;
	color: #111;
	
}

/* price */
.calendar-item .price-num {
  display: flex;
  justify-content: center;
  align-items: baseline;
  border-top: 1px solid #eee;
  padding: 3px 0 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: var(--black);
}

.calendar-item .price-en {
  font-size: 70%;
}

/* starあり*/
.calendar-item.star .day {
  position: relative;
}

.calendar-item.star .day::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  background: url("/static/img/campaign/gw/img-star.svg") no-repeat center
    center/100%;
}

.calendar-item.star .price-num {
  color: var(--pink);
}

@media (max-width: 1024px) {
  .calendar-item {
    width: 18%;
  }
}

@media (max-width: 767px) {
  .calendar-box {
    padding: 30px 22px 20px;
  }
  .calendar-item {
    width: 31%;
  }

  /* price */
  .calendar-item .price-num {
    padding: 6px 0 0;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .calendar-item {
    width: 31%;
  }
    
  .price-button {
    width: 85%;
  }
    
  .price-button .button-link {
    padding: 16px;
  }
}

.attention-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--black);
  margin-bottom: 8px;
}

.attention-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  font-size: 14px;
}

@media (max-width: 767px) {
    .attention-list li {
        font-size: 12px;
    }
}

/* price-box */
.price-box {
    margin: 80px auto;
}

@media (max-width: 767px) {
    .price-box {
        width: 100%;
	    margin: 60px auto;	
    }
}

/*　最安値表
-----------------------------------*/
/*タイトル・見出しの設定*/
.price-box .title-base-01 {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}
.busprice-title{
	    display: flex;
    justify-content: center;
}
.search-text{
    font-weight: bold;
	font-size: 16px;
    margin: 0 0 5px;
	text-align: left;
}
@media (max-width: 767px) {
     .price-box .title-base-01 {
        font-size: 18px;
    }  
}

/* 最安値表　ボックス */
.price-box .table-responsive {

}


#lowest-price{
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
#lowest-price .tab-pane{
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
#lowest-price .nav{
  padding:20px;
  
}
#lowest-price .nav li{
  text-align:center;
  font-size:16px;
  line-height:1.0;
  padding: 0 3px 0 1px;
}

#lowest-price .nav li a{
  display:block;
  color:#787878;
  font-weight:bold;
  background:#fff;
  padding:10px 20px;
  border-radius:60px;
  border:1px solid #787878;
}
#lowest-price .nav li a:hover,
#lowest-price .nav li a.active{
  text-decoration:none;
	color: #2F242C;
	border: #2F242C 1px solid;
	background:#F4CD3E;
}
#lowest-price table{
  font-size:14px;
  width:86%;
  margin:10px auto;
	outline: 1px solid #E7E7E7;
	border-radius: 10px;
}


#lowest-price table th,
#lowest-price table td{
  padding:16px;
  line-height:1.0;
  text-align: center;
  font-size: 16px;
	background: #fff;
}

#lowest-price table thead {
	border: none;
}
#lowest-price table thead th{
	background: var(--green);
	border: none;
}
#lowest-price table thead th.after_2months{
	border-top-right-radius: 10px;
}

#lowest-price table thead th:first-child{
		border-top-left-radius: 10px;
}


#lowest-price table th:first-child,
#lowest-price table td.route_title{
  width:200px;
  background: var(--green);
  padding-left:15px;
  padding-right:15px;
  border-color:#fff;
  text-align: center;
	border-right: 1px solid #fff;
}
#lowest-price table td.route_title a{
  color: #111111;
}
.table thead th{
  color:#111111;
  border-bottom:none;;
}
#lowest-price table td.route_title{
  color:#111111;
}
.this_month,
.next_month,
.after_2months,
.after_3months{
  text-align:right;
}
.this_month a,
.next_month a,
.after_2months a,
.after_3months a,
.this_month a:hover,
.next_month a:hover,
.after_2months a:hover,
.after_3months a:hover{
  color:#EC7190;
  font-size:20px;
  font-weight:bold;
}
.this_month a:before,
.next_month a:before,
.after_2months a:before,
.after_3months a:before{
  content: "￥";
    font-size: 18px;
}

#lowest-price table tr:last-child td{
	border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;	
}


@media(max-width : 1199px) {
  #lowest-price .nav li{
    font-size:14px;
  }
  #lowest-price table{
    font-size:12px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:20px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 18px;
  }
}
@media(min-width : 768px) and (max-width : 991.98px) {
  #lowest-price .nav li{
    font-size:16px;
  }
  #lowest-price table{
    font-size:14px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:16px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 14px;
  }
}
@media(max-width : 767px) {
  #lowest-price{
    height:auto;
  }
  #lowest-price .nav{
    padding:15px 8px;
  }
 #lowest-price .nav li{
		  padding: 0 2px;
  }		  
  #lowest-price table{
    margin: 8px auto;
    width: calc(100% - 20px);
  }
  #lowest-price table th,
  #lowest-price table td{
    padding:10px 5px;
    font-size: 12px;
  }
  #lowest-price table td{
    text-align: center;
  }
  #lowest-price table td.route_title{
    text-align: left;
  }
  #lowest-price table th:first-child,
  #lowest-price table td.route_title{
    padding-left:10px;
    padding-right:10px;
    width: 100px;
    font-size: 12px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:12px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 10px;
  }
}
@media(max-width:374px) {
  #lowest-price .nav li{
    font-size:12px;
  }
  #lowest-price table{
    width:98%;
  }
  #lowest-price table td.route_title{
    padding-left:10px;
  }
  #lowest-price table th:first-child, 
  #lowest-price table td.route_title{
    width:95px !important;
  }
}
#lowest-price .scroll-set .nav{
  padding:12px 13px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
#lowest-price .scroll-set{
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background:none;
  padding:0;
}
#lowest-price .scroll-set .nav-tabs {
	border-bottom: none;
}


#lowest-price .scroll-set .nav-tabs li a{
  font-size:16px;
}
#lowest-price .scroll-set .nav{
  width:100%;
}
@media(min-width : 768px) and (max-width : 991.99px) { 
  #lowest-price .scroll-set .nav{
    padding:21px 13px;
  }
  #lowest-price .scroll-set{
    overflow-x: hidden;
    background:none;
    padding:0;
  }
  #lowest-price .scroll-set .nav-tabs li a{
    font-size:14px;
  }
  #lowest-price .scroll-set .nav{
    width:100%;
  }
} 
@media(max-width:767px) { 
  #lowest-price .scroll-set .nav{
    padding:10px 0;
  }
  #lowest-price .scroll-set{
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    background:none;
    padding:0;
  }
  #lowest-price .scroll-set .nav-tabs li a{
    padding: 6px 7px;
    font-size:12px;
  }
}
.prefectures-ul{
    display:flex;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.prefectures-ul li{
    margin: 0 8px 0 0;
}
.prefectures-ul li a {
    color: #111;
    padding: 3px 10px;
	display: block;
	width: 100%;
}	
@media (max-width : 767px) {
	.wrap-departure-arrival .search-text{
		font-size: 12px;
		font-weight: bold;
	}	
	/*タブ*/
	#lowest-price .scroll-set .nav{
		min-width: 380px;
		justify-content: left;
	}
	
	.wrap-departure-arrival {
        width: 100%;
        padding: 0 10px;
		margin: 10px auto 0;
		display: block;
	}
	.wrap-departure-arrival .search-text{
		font-size: 12px;
		font-weight: bold;
	}
	.prefectures-ul li{
		margin: 0 4px 4px 0;
	}
	.prefectures-ul li a{
		font-size: 12px;
		padding:2px 8px;
	}
	
	.wrap-departure,
	.wrap-arrival{
		width: 100%;
	}
	
	/*到着地のみ*/
	.wrap-arrival{
		margin-top: 8px;
		margin-left: 0px;
	}
}	

input.datepicker,
.datepicker tbody td:hover {
  cursor: pointer;
}

.table-condensed thead tr:nth-child(2) {
  background:#ddd;
  border: 1px solid #d3d3d3;
  cursor:default !important;
}

.table-condensed thead tr:nth-child(2) th:hover {
  background:#fee6ee !important;
}

.table-condensed {
  font-size:15px;
  border: 1px solid #d3d3d3;
}

.table-condensed th,
.table-condensed td {
  padding:7px !important;
  border-radius:0;
}

.table-condensed td.day.active,
.table-condensed td.day.focused,
.table-condensed td.day:hover {
  border-radius:0px;
}

.table-condensed td.day:hover {
  background:#fee6ee !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);
}

.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  color:#333 !important;
}

.datepicker-days .table-condensed thead tr:last-child th {
  background:#f4f4f4;
  border:1px solid #d3d3d3;
}

.datepicker-days td:last-child {
  color:#006699;
  background:#e8f2fa;
}

.datepicker-days td:first-child {
  color:#ff384c;
  background:#ffeefd;
}

.datepicker-days td {
  border:1px solid #d3d3d3;
}

.datepicker table tr td span {
  height:40px;
  line-height:40px;
}

.datepicker td.holiday{
  color: #ff384c;
  background: #ffeefd;
}



/* tour-area
---------------------------------------------*/
.tour-area {
  background: var(--yellow-l);
}

@media (max-width: 767px) {
}

@media (max-width: 560px) {
}

/* select
---------------------*/
.select-box {
  border-radius: 10px;
  overflow: hidden;
  padding: 24px 30px;
  background: url("/static/img/campaign/gw/bg-select-box.png") no-repeat center
    center;
  margin-bottom: 20px;
}

.wrap-select {
  text-align: center;
}

.select-btn {
  background: var(--white);
  border-radius: 10px;
  border: 2px solid var(--black);
  width: fit-content;
/*  text-align: center;*/
  display: inline-block;
  padding: 16px 30px;
}


/* select-contents
------------------------*/
.pref-content {
/*  display: none;*/
  margin-bottom: 10px;
}

.table-tr {
    display: none;
}

.table-tr.defo-tr {
  display: block;
}

.result-tour {
  padding: 0 0 30px;
}

 @media (min-width: 1140px) {
     .result-tour > .container {
       max-width: 1240px;
    }   
}


/* scroll box
-----------------------*/
.scroll-container {
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.scroll-wrap {
/*  width: 1200px;*/
  width: fit-content;
}

@media (min-width: 576px) {
    .scroll-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .scroll-container {
        max-width: 720px;
    }
}
@media (min-width: 960px) {
    .scroll-container {
        max-width: 920px;
    }
}

@media (min-width: 1140px) {
     .scroll-container {
         overflow-x: auto;
         max-width: 1080px;
    }
}

@media (min-width: 1300px) {
     .scroll-container {
         max-width: 1240px;
    }
}


/* plan card
--------------- */
.plan-list {
  display: flex;
  gap: 1%;
}

.plan-list li {
  width: 220px;
  margin-bottom: 20px;
}

.plan-link {
  display: flex;
  flex-wrap: wrap;
  padding: 16px 10px 10px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--black);
  background: var(--white);
  position: relative;
}

.ico-sale{
	  position: relative;
}
.ico-sale::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 43px;
  height: 42px;
  display: inline-block;
  background: url("/static/img/campaign/gw/ico-sale.png") no-repeat center
    center/100%;
}

.plan-img {
    margin-bottom: 16px;
}

.plan-img img {
  border-radius: 10px;
  object-fit: cover;
}

.plan-text {
  color: var(--black);
}

.plan-name {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
}
.label-taiwan{
  display: block;
  width: calc(100% - 30px);
  background: #9F0B00;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  padding: 5px 8px 3px;
  margin-right: 5px;
  position: absolute;
  top: 20px;
  left: 15px;
  text-align: center;
  font-size: 14px;
}
.label-busan{
  display: block;
  width: calc(100% - 30px);
  background: #2d92fa;
  color: #fff;
  border-radius: 10px;
  line-height: 1;
  padding: 5px 8px 3px;
  margin-right: 5px;
  position: absolute;
  top: 20px;
  left: 15px;
  text-align: center;
  font-size: 14px;
}
.plan-description {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 20px;
}

.plan-price {
  text-align: right;
  margin-left: auto;
  color: var(--black);
  font-size: 13px;
}

.plan-price .num {
  padding-left: 10px;
  color: var(--pink);
  font-weight: bold;
  font-size: 16px;
}

.plan-price .day small {
  color: var(--pink);
}

.plan-price b {
    font-size: 12px;
}

.plan-button {
  margin: 16px auto 10px;
}

.plan-button .button-link {
  padding: 14px 10px;
  background: var(--yellow);
  font-size: 13px;
    text-align: left;
}

.plan-button .button-link::after {
    font-size: 13px;
    right: 8px;
}

@media (min-width: 1301px) {
    .plan-list {
        flex-wrap: wrap;
    }
    
    .plan-list li{
        width: 19%;
    }
}

@media (max-width: 1300px) {
    .plan-list li{
        width: 220px;
    }
}

@media (max-width: 767px) {
    .plan-list li {
        width: 220px;
    }
    .plan-text {
        font-size: 13px;
    }
    
    .plan-name {
        text-align: left;
    }
    
    .plan-description {
        font-size: 13px;
    }

    .plan-price {
        margin-left: 0;
        font-size: 11px;
    }
    
    .plan-price b {
        font-size: 10px;
    }
}

.txt-hayawari{
	position: relative;
}

.txt-hayawari::before{
	content: "＼ 出発21日前ならオトクな【早割21】 ／";
	font-weight: bold;
	display: inline-block;
	margin-bottom: 5px;
	font-size: 0.85em;
}
