@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;700&display=swap');

:root{
  --content-color-base: #4c4c4c;
  --content-color-red: #ff3f3f;
  --content-color-gray: #b3b3b3;
  --content-color-l_pink: #ffebeb;
  --content-color-beige: #f2eceb;
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-size-sp: calc(24vw / 7.5);
  --font-base: "Zen Old Mincho", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-right: url(../img/arrow_right.png);
  --content-arrow-down: url(../img/arrow_down.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}
.nosp{
  display: none
}
.main{
  font-family: var(--font-base);
  font-size: var(--content-font-size);
  /*font-weight: bold;*/
  position: relative;
  color: var(--content-color-base);
  line-height: 1.5;
  margin-bottom: 5vw;
}
.main *{
  box-sizing: border-box;
}
.main__content{
  background: url("../img/bg_sakura_ryt.gif") no-repeat right bottom / 34vw;
  background-color: #FFFDF4;
}
.main__content::after{
  content: "";
  background: url("../img/bg_sakura_lft.gif") no-repeat left top / contain;
  width: calc(232vw / 7.5);
  height: calc(195vw / 7.5);
  position: absolute;
  left: 0;
  top: calc(372vw / 7.25);
}
.inner{
  width: var(--content-width);
  margin: auto;
  padding: calc(60vw / 7.5) 0;
  position: relative;
}
a{
  text-decoration: none;
  transition: var(--content-hover-speed);
	color: #333;
}
/* パンくず調整用 */
.breadcrumb {
  width: 100%;
  font-family: "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}
/* ---------------------------------------------
　　タイトル
--------------------------------------------- */
.title__wrapper{
  width: 100%;
  height: calc(372vw / 7.5);
  background: url("../img/mvsp.png") no-repeat center top / cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #FFFDF4;
}
.main-title>img{
  width: calc(360vw / 7.5)
}
/* ---------------------------------------------
　　見出し
--------------------------------------------- */
.head-title{
  margin-bottom: 4vw;
  font-size: calc(54vw/ 7.5);
  text-align: center;
  position: relative;
  z-index: 30;
  font-weight: 600;
  line-height: 1.4em;
}
.is-red{
  color: var(--content-color-red)
}
.sub-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(24vw/ 7.5);
  margin-bottom: calc(24vw/ 7.5);
  font-size: calc(36vw / 7.5);
  font-weight: 600;
}
.sub-title::before,
.sub-title::after{
  content: "";
  display: inline-block;
  width: 10vw;
  height: 1px;
  background-color: var(--content-color-red);
  flex-grow: 1;
}
/*------------------------------------------------
　　ローカルナビ
--------------------------------------------------*/
.navi_list{
  display: flex;
  gap: calc(16vw / 7.5);
  margin-bottom: calc(40vw / 7.5);
  justify-content: center;
}
.navi_list>li>a{
  width: 26vw;
  border: var(--content-border_s);
  padding: calc(8vw / 7.5) calc(16vw / 7.5);
  background: #FFF;
  gap: calc(8vw / 7.5);
  font-size: calc(28vw / 7.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  color: #333;
}
.navi_list>li>a::after{
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(20vw / 7.5);
  height: calc(13vw / 7.5);
  display: block;
  margin-top: 0.5vw;
}
.navi_list>li>a:hover{
  background: var(--content-color-l_pink)
}
/*------------------------------------------------
	商品設定
--------------------------------------------------*/
.item-wrap {
	width: 94vw;
	margin: 0 auto;
  padding-bottom: 10vw;
}
.item-wrap > li:empty{
	display: none;
}
/* 未使用
.item-box {
	width: 100%;
	padding: 2vw 2vw;
	background-color: #fff;
	position: relative;
	border: solid 1px #999;
  margin: 2vw 0 0;
}
#ranking .item-box {
  margin: 4vw 0 0;
}
.item-box a {
	display: flex;
  justify-content: space-between;
	color: #333;
	text-decoration: none;
}
.item-box:after {
  content: "";
  bottom: 0;
  right: 0;
  border-top: 0.8em solid transparent;
  border-right: 0.8em solid #fdd000;
  position: absolute;
  z-index: 100;
}
.item-box .item-box-info_left {
	width: 26vw;
}
.item-box .item-box-pic {
	width: 26vw;
}
.item-box .item-box-pic img {
	width: 100%;
	height: 19vw;
	object-fit: cover;
}
.item-box .item-box-info_right {
	width: 61vw;
}
.item-box .item-box-ttl {
	font-size: 3.6vw;
  font-weight: bold;
  line-height: 1.4em;
  margin-bottom: 1vw;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.item-box .item-box-point {
	font-size: 3vw;
  line-height: 1.4em;
  margin-bottom: 1vw;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.item-box ul {
	color: #a63807;
	font-size: 3.0vw;
	margin-bottom: 2vw;
}
.item-box ul li {
	display: inline;
	margin-right: 1vw;
}
.item-box ul li.item-box-type:before {
	content: '';
	display: inline-block;
	width: 3.5vw;
	height: 4vw;
	background: url(../img/ico-calendar.svg) no-repeat;
	vertical-align: middle;
	margin-right: 1vw;
}
.item-box ul li.item-box-area:before {
	content: '';
	display: inline-block;
	width: 3vw;
	height: 4vw;
	background: url(../img/ico-spot.svg) no-repeat;
	vertical-align: middle;
	margin-right: 1vw;
}
.item-box ul li.item-box-dpt:before {
	content: '';
	display: inline-block;
	width: 3vw;
	height: 4vw;
	background: url(../img/ico-busstop.svg) no-repeat;
	vertical-align: middle;
	margin-right: 1vw;
}
.item-box .item-box-price {
	color: #db1010;
	font-size: 4.0vw;
    line-height: 1.4em;
	font-weight: bold;
	text-align: right;
}
.item-box .item-box-dep{
    text-align: right;
    font
*/
/*他地区発ボタン*/
.item-search-link {
    display: flex;
    justify-content: flex-end;
}
.item-search-link a[href="https://bus-tour.his-j.com/osa/item/?cc="] {
    display: none;
}
.item-search-link a {
    display: inline-block;
    margin: -1vw 0 3vw 2vw;
    background-color: #c59d13;
    color: #fff;
    font-size: 3.4vw;
    padding: 2vw 3vw;
    text-decoration: none;
    border-radius: 3px;
}
.item-search-link a:after {
    font-family: FontAwesome;
    font-weight: 900;
    content: "\f105";
    margin-left: 2vw;
}

/*アイコン*/
/*
.item-box-icon:empty,
.item-box-icon span:empty{
	display: none;
}
.item-box-icon {
	display: flex;
	flex-wrap: wrap;
}
.item-box-icon span {
  margin-right: 1vw;
	margin-bottom: 1vw;
  font-size: 2.8vw;
  line-height: 1.0em;
	color: #fff;
  padding: 1vw 2vw;
	display: none;
}
.item-box-icon span.show {
	display: inline-block;
}
*/
/*------------------------------------------------
	バスツアーをもっと探す
--------------------------------------------------*/
.btn-bustop {
  width: 78vw;
  margin: 0 auto;
  text-align: center;
  font-size: 3.2vw;
  line-height: 3.0em;
  border-radius: 1.5em;
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-bustop a {
  display: block;
  background-color: #ffc6d3;
  color: #4d4d4d;
  text-decoration: none;
  border-radius: 1.5em;
  box-shadow: 4px 4px 0 rgba(0 0 0 / 20%);
}
.btn-bustop a::after {
  content: "▶";
  padding-left: 2vw;
}
/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-simple *,
.line-wrap-detail * {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;	
}
.line-wrap-simple {
  padding: 5vw 0;/*ページによって調整*/
}
.line-wrap-detail {
  padding: 5vw 0 0;/*ページによって調整*/
  background-color: #fff;
}
.line-inner {
  width: 94vw;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1vw;
  line-height: 1.5;
}
.line-wrap-detail .line-inner {
  background: #fcfff6;/*ページによって調整*/
  border: solid 1px #d3d3d3;
}
.line-inner .fukidashi {
  font-size: 4.1vw;
  font-weight: bold;
  margin-bottom: 2vw;
}
.line-inner .head {
  background-color: #15c618;
  padding: 2vw 0;
  color: #fff;
  font-size: 4.3vw;
  font-weight: bold;
}
.line-inner .textarea {
  padding: 4vw 2vw 2vw;
}
.line-inner .btnarea {
  padding: 2vw 2vw 5vw;
}
.line-inner .text1 {
  font-size: 3.4vw;
  line-height: 1.5em;
  margin-bottom: 1vw;
}
.line-inner .text1 span {
  display: inline-block;
  font-weight: bold;
  color: #fb0b0b;
  background-color: #ffe1e1;
  padding: 0 0.5vw;
}
.line-inner .text2 {
  font-size: 4.1vw;
  font-weight: bold;
  background: linear-gradient(transparent 60%, #fff231 0%);
  line-height: 1.7em;        
  display: inline-block;
}
.line-button {
  margin: 0 auto;
}
.line-wrap-simple .line-button {width: 90vw;}
.line-wrap-detail .line-button {width: 80vw;}

.line-button a {
  display: block;
  color: #fff;
  font-size: 3.5vw;
  font-weight: bold;
  border-radius: 8vw;
  box-shadow: 0px 3px 0px 0 rgba(0, 0, 0, .14);
  background: url(/kansai/images/icon/icon-linekansai.png) no-repeat;
  background-size: 12vw;
  background-position: 3vw;
  background-color: #15c618;
  padding: 2.4vw 4vw 1.8vw 16vw;
  position: relative;
  text-decoration: none;
}
.line-button a span.small {
  display: block;
  font-size: 2.8vw;
  font-weight: normal;
}
.line-button a span.strong {
  display: block;
}
.line-button a span.strong::after {
  font-family: "FontAwesome", "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f138";
  font-size: 4vw;
  margin-left: 1.4vw;
}
.line-button a span.line-friend {
  font-size: 1.3em;
  color: #fff231;
  padding: 0 0.5vw;
}



/*
.sub-title>span{
  font-size: calc(36vw/ 7.5);
  text-align: center;
}
.note__txt{
  font-size: calc(20vw/ 7.5);;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
*/
/*** おすすめのお花見スポット ***/
/*
.content__wrapper.spot{
  padding-top:  calc(60vw/ 7.5);
}
.content__wrapper.spot::before{
  content: "";
  background: url("../img/bg_sakura_lft.gif") no-repeat left top / contain;
  width: calc(232vw / 7.5);
  height: calc(195vw / 7.5);
  position: absolute;
  top: calc(-40vw / 7.5);
  left: 0;
}
.select__tab{
  display: flex;
  gap: calc(24vw/ 7.5);;
  margin-bottom: calc(60vw/ 7.5);
}
.select__tab>li{
  width: calc((100% - (24vw/ 7.5)) / 2);
  border-radius: calc(8vw/ 7.5);
  background: var(--content-color-gray);
  text-align: center;
  padding: calc(16vw/ 7.5) 0;
  color: #FFF;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.select__tab>li.is-current{
  background: var(--content-color-red)
}
.tab__txt{
  font-size: calc(36vw/ 7.5);
}
.tab__txt>small{
  display: block;
  font-size: calc(24vw/ 7.5);
  line-height: 1.2
}
.select__content{
  display: none
}
.select__content.is-active{
  display: block;
}
.area__content+.area__content{
  margin-top: calc(100vw / 7.5);
}
.spot__content{
  position: relative
}
.spot__content+.spot__content{
  margin-top: calc(80vw / 7.5);
}
.spot__box{
  display: flex;
  flex-wrap: wrap;
  gap: calc(16vw / 7.5);
}
.spot__img{
  width: 100%;
  height: calc(400vw / 7.5);
  background: url("../img/bg_photo.gif") repeat;
  padding: calc(10vw / 7.5);
}
.spot__name{
  font-size: calc(40vw / 7.5);
}
.spot__name>small{
  font-size: 70%;
}
.spot__copy{
  font-size: calc(28vw / 7.5);
  color: var(--content-color-red);
}
.spot__txt{
}
.copyright{
  display: block;
  font-family: var(--font-sans);
  font-size: calc(20vw / 7.5);
  font-weight: normal;
  color: var(--content-color-gray);
  margin-top: calc(8vw / 7.5);
}
.spot__data{
  background: #FFF;
  padding: calc(10vw / 7.5);
  margin-top: calc(16vw / 7.5);;
  font-family: var(--font-sans);
  font-weight: 400;
}
.spot__data>li{
  display: flex;
  gap: calc(8vw / 7.5);
  font-size: calc(22vw / 7.5);
}
.spot__data>li>span{
  width: 3em;
  flex-shrink: 0
}
*/
/*** product__content ***/
.product__content{
  margin-top: calc(32vw / 7.5);
  font-family: var(--font-sans);
}
.item__linkbox{
  display: flex;
  flex-direction: column;
  gap: calc(24vw / 7.5);
  margin: calc(32vw / 7.5) auto 0;
}
.item__linkbox .item__link>a{
  display: block;
  background: var(--content-color-red);
  border-radius: 8px;
  padding: calc(24vw / 7.5) 0;
  font-size: calc(26vw / 7.5);
  color: #FFF;
  text-align: center;
  position: relative
}
.item__linkbox .item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(14vw / 7.5);
  height: calc(21vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto;
}
.item__linkbox .item__link>a:hover{
  opacity: .8
}
 /*CSS調整*/
.product-list.row-style>li{
        width: 100%;
        border-radius: 0;
        margin: 0;
        padding: 0;
        background: none;
        box-shadow: none;
        position: relative;
    }
.product-list.row-style>li > div > a:first-child {
        width: 100%;
        border-radius: 0;
        margin: 0 auto calc(28vw /(750 / 100));
        padding: calc(16vw /(750 / 100));
        background: #FFF;
        box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
        position: relative;
    }
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port{
	bottom:auto;
	background: none;
	padding: 0;
	position: static;
}
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port .port-type{
	color: #333;
	font-size: calc(24vw / (750 / 100));
	font-weight: bold;
}
.product-list>li{
  position: relative
}
.product-list {
 display: block;
 margin-bottom: calc(70vw / 7.5)!important;
}
/*.item-txt__wrapper{
  padding-bottom: calc(90vw / (750 / 100))!important;
}*/

#feature .slick-prev, #feature .slick-next{
	margin-top: 0!important;
}
/*目的地追加*/
.item-box-area{
	color: #cc4e3c;
	font-size: 3.0vw;
	margin: 1vw 0;
}
.item-box-area:before {
	content: '';
	display: inline-block;
	width: 3vw;
	height: 4vw;
	background: url(../img/ico-spot.svg) no-repeat;
	vertical-align: middle;
	margin-right: 1vw;
}
.item-box-dpt:before {
	content: '';
	display: inline-block;
	width: 3vw;
	height: 4vw;
	background: url(../img/ico-busstop.svg) no-repeat;
	vertical-align: middle;
	margin-right: 1vw;
}

/*------------------------------------------------
	クローズ
--------------------------------------------------*/
#close {
  padding: 8vw 0;
  text-align: center;
  font-size: 3.7vw;
  line-height: 1.6em;
  background: #FFFDF4;
}
#close a {
  color: var(--content-color-red);
}

/*** 検索モジュール ***/
/*
.content__wrapper.search{
  background: var(--content-color-l_pink);
  padding: calc(48vw / 7.5) 0;
  font-family: var(--font-sans);
}
.content__wrapper.search .inner{
  width: 100vw
}
*/
/*** 桜の基本情報 ***/
/*
.content__wrapper.info{
  background: #F7F6EB;
  padding-top:  calc(60vw/ 7.5);
}
.content__wrapper.info::before{
  content: "";
  background: url("../img/bg_sakura_ryt.gif") no-repeat left top / contain;
  width: calc(232vw / 7.5);
  height: calc(195vw / 7.5);
  position: absolute;
  top: 0;
  right: 0;
}
.info__content+.info__content{
  margin-top: calc(80vw / 7.5);
}
.item__list{
  display: flex;
  gap: calc(24vw / 7.5);
}
.item__list.sakura__brand{
  overflow: scroll;
}
.item__list.sakura__brand>li{
  flex: 0 0 85%;
  padding-top: calc(430vw / 7.5);
  background: no-repeat center top / contain;
}
.item__list.sakura__brand>li.yoshino{
  background-image: url("../img/photo_someiyoshino.png")
}
.item__list.sakura__brand>li.shidare{
  background-image: url("../img/photo_shidarezakura.png")
}
.item__list.sakura__brand>li.yae{
  background-image: url("../img/photo_yaezakura.png")
}
.item__name{
  font-size: calc(36vw / 7.5);
}
.item__name>small{
  font-size: 70%;
}
.item__copy{
  font-size: calc(30vw / 7.5);
  color: var(--content-color-red);
  line-height: 1.25
}
.item__spot{
  margin-top: calc(24vw / 7.5);
  background: #FFF;
  padding: calc(10vw / 7.5);
  font-family: var(--font-sans);
  font-weight: normal;
}
.item__spot .is-red{
  display: inline-block;
  margin-right: calc(8vw / 7.5)
}

.item__list.sakura__best{
  flex-direction: column;
}
.item__list.sakura__best>li{
  display: flex;
  gap: calc(16vw / 7.5)
}
.item__list.sakura__best>li .item__img{
  width: 40vw;
  height: 30vw;
}
.item__list.sakura__best>li .item__box{
  flex: 1
}
*/

/*** FAQ ***/
/*
.faq__list>li:not(:last-child){
  padding-bottom: calc(20vw / 7.5);
  margin-bottom: calc(20vw / 7.5);
  border-bottom: var(--content-border_s) var(--content-color-gray);
}
.que__txt{
  display: flex;
  gap: calc(16vw / 7.5);
  align-items: center;
  margin-bottom: calc(16vw / 7.5);
  font-size: calc(30vw / 7.5);
}
.que__txt::before{
  content: "Q.";
  font-size: calc(36vw / 7.5);
  color: var(--content-color-red);
  display: block;
}
.ans__txt{
  display: flex;
  gap: calc(16vw / 7.5);
  line-height: 1.25
}
.ans__txt::before{
  content: "A.";
  font-size: calc(36vw / 7.5);
  display: block;
}
*/

/* 記事コンテンツ */
/*
.post__list{
  display: flex;
  flex-direction: column;
  gap: calc(24vw / 7.5);
}
.post__list>li>a{
  display: flex;
  gap: calc(16vw / 7.5);
  position: relative
}
.post__list>li>a::after{
  content: "";
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: var(--content-color-red);
  width: calc(24vw / 7.5);
  height: calc(24vw / 7.5);
  position: absolute;
  right: 0;
  bottom: 0;
}
.post__list>li>a:hover{
  opacity: 0.7
}
.post__img{
  width: 40vw;
  height: 24vw;
}
.post__title{
  flex: 1;
  line-height: 1.25
}
  */