@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;
  --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;
}
.nopc{
  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;
}
.main *{
  box-sizing: border-box;
}
.main__content{
  background: url("../img/bg_sakura_ryt.gif"), url("../img/bg_sakura_lft.gif");
  background-repeat: no-repeat;
  background-size: 350px;
  background-position:  right top,left bottom;
  background-color: #FFFDF4;
}
.inner{
  width: var(--content-width);
  margin: auto;
  padding-bottom: 60px;
}
a{
  text-decoration: none;
  transition: var(--content-hover-speed);
	color: #333;
}
/* パンくず調整用 */
.breadcrumb {
  font-family: "メイリオ", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}
/* ---------------------------------------------
　　タイトル
--------------------------------------------- */
.title__wrapper{
  width: 100%;
  height: 647px;
  background: url("../img/mvpc.png") no-repeat center top;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFDF4;
}
/* ---------------------------------------------
　　見出し
--------------------------------------------- */
.head-title{
  margin-bottom: 24px;
  font-size: 44px;
  text-align: center;
  font-weight: 600;
}
.is-red{
  color: var(--content-color-red)
}
.sub-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 28px;
  text-align: center;
  font-weight: 600;
}
.sub-title::before,
.sub-title::after{
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: var(--content-color-red);
  flex-grow: 1;
}
/* ---------------------------------------------
　　ローカルナビ
--------------------------------------------- */
.navi_list{
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}
.navi_list>li>a{
  width: 150px;
  border: var(--content-border_s);
  padding: 10px;
  background: #FFF;
  gap: 6px;
  font-size: 20px;
  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: 16px;
  height: 12px;
  display: block;
}
.navi_list>li>a:hover{
  background: var(--content-color-l_pink);
}
/*------------------------------------------------
	商品設定
--------------------------------------------------*/
.item-wrap {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
  padding-bottom: 50px;
}
.item-wrap > li:empty {
  display: none;
}
/* 未使用
.item-box {
	width: 310px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #999;
  margin: 20px 10px 0;
  position: relative;
}
.item-box:hover {
	border: 1px solid #fdd000;
	transition: all 0.5s ease;
	opacity: .8;
}
.item-box a {
	display: block;
	color: #333;
	text-decoration: none;
	transition: all 0.5s ease;
}
.item-box:after {
  content: "";
  position: absolute;
  bottom: 1px;
  right: 1px;
  border-top: .8em solid transparent;
  border-right: .8em solid #fdd000;
}
.item-box .item-box-pic {
	position: relative;
}
.item-box .item-box-pic img {
	width: 100%;
	height: 185px;
	object-fit: cover;
	margin-bottom: 10px;
}
.item-box .item-box-ttl {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.5em;
	margin-bottom: 5px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.item-box .item-box-point {
	font-size: 13px;
	line-height: 1.5em;
	margin-bottom: 5px;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
.item-box ul {
	color: #a63807;
	font-size: 13px;
	margin-bottom: 10px;
}
.item-box ul li {
	display: inline;
	margin-right: 5px;
	margin-bottom: 10px;
  font-weight: bold;
}
.item-box ul li.item-box-type:before {
	content: '';
	display: inline-block;
	width: 15px;
  height: 16px;
  background: url(../img/ico-calendar.svg) no-repeat;
	vertical-align: middle;
	margin-right: 3px;
}
.item-box ul li.item-box-area:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 16px;
	background: url(../img/ico-spot.svg) no-repeat;
	vertical-align: middle;
	margin-right: 3px;
}
.item-box ul li.item-box-dpt:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 16px;
	background: url(../img/ico-busstop.svg) no-repeat;
	vertical-align: middle;
	margin-right: 3px;
}
.item-box .item-box-price {
	color: #db1010;
	font-size: 18px;
	font-weight: bold;
	text-align: right;
}
.item-box .item-box-dep{
  text-align: right;
  font-size: 12px;
}
*/
/*他地区発ボタン*/
.item-search-link {
  display: flex;
  justify-content: center;
}
.item-search-link a[href="https://bus-tour.his-j.com/osa/item/?cc="] {
  display: none;
}
.item-search-link a {
  display: inline-block;
  margin: 7px 2px 0;
  background-color: #c59d13;
  color: #fff;
  font-size: 13px;
  padding: 4px 5px;
  text-decoration: none;
  border-radius: 3px;
}
.item-search-link a:hover {
	background-color: #4a4a4a;
	transition: opacity 0.4s ease;
}
.item-search-link a:after {
	font-family: FontAwesome;
	font-weight: 900;
	content: "\f105";
	margin-left: 5px;
}
/* SP横向き */
@media screen and (max-width: 956px){
  .item-search-link a {
    font-size: 11px;
  }
}


/*アイコン*/
/*
.item-box-icon:empty,
.item-box-icon span:empty{
	display: none;
}
.item-box-icon {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.item-box-icon span {
	margin-right: 5px;
	margin-bottom: 5px;
  font-size: 11px;
  line-height: 1.0em;
	color: #fff;
  padding: 3px 5px;
	display: none;
}
.item-box-icon span.show {
	display: inline-block;
}
*/
/* ---------------------------------------------
　　バスツアーをもっと探す
--------------------------------------------- */
.btn-bustop {
  width: 600px;
  margin: 40px auto 0;
  text-align: center;
  font-size: 18px;
  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;
  filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, 0.2));	
}
.btn-bustop a:hover {
  background-color: #ff99b1;
  transition: all 0.6s ease;    
}
.btn-bustop a::after {
  content: "▶";
  padding-left: 10px;
}
/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-simple *,
.line-wrap-detail * {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;	
}
.line-wrap-detail {
  padding: 50px 0 0;/*ページによって調整*/
  background-color: #fff;
}
.line-inner {
  width: 992px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1vw;
  line-height: 1.5;
}
.line-wrap-detail .line-inner {
  background: #fff;
  border: solid 1px #d3d3d3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  letter-spacing: 1px;
}
.line-inner .head {
  width: 100%;
  text-align: center;
  background-color: #15c618;
  padding: 6px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
}
.line-inner .textarea {
  width: 50%;
  text-align: left;
  padding: 30px 0 30px 30px;
}
.line-inner .btnarea {
  width: 49%;
  display: flex;
  align-items: center;
  padding: 30px 30px 30px 0;
}
.line-inner .text1 {
  font-size: 17px;
  line-height: 1.4em;
}
.line-inner .text1 span {
  display: inline-block;
  font-weight: bold;
  color: #fb0b0b;
  background-color: #ffe1e1;
  padding: 0 2px;
}
.line-inner .text2 {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: -2px;
  background: linear-gradient(transparent 60%, #fff231 0%);
  display: inline-block;
  line-height: 1.7em;
  padding: 0 4px;
}
.line-button a {
  display: block;
  color: #fff;
  font-size: 15px;
  text-align: center;
  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: 50px;
  background-position: 12px;
  background-color: #15c618;
  padding: 10px 10px 6px 70px;
  position: relative;
  text-decoration: none;
}
.line-button a:hover {
  opacity: .8;
  transition: all 0.6s ease;        
}
.line-button a span.small {
  width: 88%;
  display: block;
  font-size: 14px;
  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: 15px;
  margin-left: 6px;
  padding-right: 14px;
}
.line-button a span.line-friend {
  font-size: 1.3em;
  color: #fff231;
  padding: 0 2px;
}
.line-qr {
  width: 80px;
  margin-right: 8px;
}
.line-qr img {
  width: 100%;
}

/*
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
*/

/*** おすすめのお花見スポット ***/
/*
.select__tab{
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
.select__tab>li{
  width: calc((100% - 24px) / 2);
  border-radius: 8px;
  background: var(--content-color-gray);
  text-align: center;
  padding: 16px 0;
  color: #FFF;
  cursor: pointer
}
.select__tab>li.is-current{
  background: var(--content-color-red)
}
.tab__txt{
  font-size: 24px;
}
.tab__txt>small{
  display: block;
  font-size: 16px;
}

.area__content+.area__content{
  margin-top: 80px;
}
.spot__content{
  position: relative
}
.spot__content+.spot__content{
  margin-top: 60px;
}
.spot__content:nth-child(even)::after{
  content: "";
  background: url("../img/bg_sakura_ryt.gif") no-repeat left top / contain;
  width: 464px;
  height: 380px;
  position: absolute;
  top: 0;
  right: -464px;
}
.spot__box{
  display: flex;
  gap: 24px;
}
.spot__img{
  width: 486px;
  height: 220px;
  background: url("../img/bg_photo.gif") repeat;
  padding: 8px;
}
.spot__item{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spot__name{
  font-size: 28px;
}
.spot__name>small{
  font-size: 60%;
}
.spot__copy{
  font-size: 18px;
  color: var(--content-color-red);
}
.copyright{
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: normal;
  color: var(--content-color-gray);
  margin-top: 4px;
}
.spot__data{
  background: #FFF;
  padding: 8px;
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: 400;
}
.spot__data>li{
  display: flex;
  gap: 8px;
  font-size: 12px;
}
*/

/*** product__content ***/
.product__content{
  margin-top: 32px;
  font-family: var(--font-sans);
}
.item__linkbox{
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 24px auto 0;
}
.item__linkbox .item__link{
  max-width: 640px;
  flex-grow: 1;
}
.item__linkbox .item__link>a{
  display: block;
  background: var(--content-color-red);
  border-radius: 8px;
  padding: 10px 0;
  font-size: 16px;
  color: #FFF;
  text-align: center;
  position: relative
}
.item__linkbox .item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 14px;
  height: 21px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.item__linkbox .item__link>a:hover{
  opacity: .8
}
/*調整*/
.product-list>li {
        padding: 0;
        background: none;
        box-shadow: none;
        position: relative;
    }
.product-list>li > div > a:first-child {
        padding: 0;
        background: #FFF;
        box-shadow: 0 2px 4px rgb(0 0 0 / 15%);
        position: relative;
    }
.product-list>li:hover {
        box-shadow: none;
    }
.product-list>li > div > a:first-child:hover {
        box-shadow: 0 2px 20px rgb(0 0 0 / 25%);
    }
.product-list.card-style>li .product-list__item .item-photo__wrapper img{
	object-fit: cover;
    width: 100%;
    height: 170px;
}
.item-txt__port{
	 position: initial!important;
	background:rgba(0 0 0 / 100%)!important;
}
.product-list{
  gap: 14px 10px;
  margin: 0 auto 60px!important;
}
.product-list>li{
  position: relative
}
/*.item-txt__wrapper{
  padding-bottom: 50px!important;
}*/
/*目的地追加*/
.item-box-area{
	color: #cc4e3c;
	font-size: 12px;
	padding: 2px 0 3px;
}
.item-box-area:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 16px;
	background: url(../img/ico-spot.svg) no-repeat;
	vertical-align: middle;
	margin-right: 3px;
}
.item-box-dpt:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 16px;
	background: url(../img/ico-busstop.svg) no-repeat;
	vertical-align: middle;
	margin-right: 3px;
}

/*------------------------------------------------
	クローズ
--------------------------------------------------*/
#close {
  padding: 0 0 80px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8em;
  background: #FFFDF4;
}
#close a {
  color: var(--content-color-red);
}

/*** 検索モジュール ***/
/*
.content__wrapper.search{
  background: var(--content-color-l_pink);
  padding: 48px 0;
  font-family: var(--font-sans);
}
  */

/*** 桜の基本情報 ***/
/*
.content__wrapper.info{
  background: #F7F6EB;
  padding-top: 60px;
}
.info__content+.info__content{
  margin-top: 80px;
}
.item__list{
  display: flex;
  gap: 20px;
}
.item__list>li{
  width: calc((100% - (20px * 2)) / 3);
}
.item__list.sakura__brand>li{
  padding-top: 230px;
  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: 28px;
}
.item__name>small{
  font-size: 60%;
}
.item__copy{
  font-size: 16px;
  color: var(--content-color-red)
}
.item__spot{
  margin-top: 16px;
  background: #FFF;
  padding: 8px;
  font-family: var(--font-sans);
  font-weight: normal;
}
.item__spot .is-red{
  display: inline-block;
  margin-right: 4px;
}
*/
/*** FAQ ***/
/*
.faq__list>li:not(:last-child){
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: var(--content-border_s) var(--content-color-gray);
}
.que__txt{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 18px;
}
.que__txt::before{
  content: "Q.";
  font-size: 24px;
  color: var(--content-color-red);
  display: block;
}
.ans__txt{
  display: flex;
  gap: 8px;
  line-height: 1.25
}
.ans__txt::before{
  content: "A.";
  font-size: 18px;
  display: block;
}
*/

/* 記事コンテンツ */
/*
.post__list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.post__list>li{
  width: calc((100% - (16px * 3)) / 4);
}
.post__list>li>a{
  display: block
}
.post__list>li>a:hover{
  opacity: 0.7
}
.post__title{
  margin-top: 4px;
  line-height: 1.25
}
  */