@charset "utf-8";

#appdeeplink{
   display: none;
}

/* レストランバスTOP
-------------------------------*/
/*設定
--------------------*/
:root {
  --default: #2a2a2a;/*black*/
  --primary: #00A504;
  --secondary: #1A37E5;/*blue*/
  --line: #909090; /*gray*/
  --sun: #f1f1f1;/*red*/
  --white: #fff;
  --gray: #707070;
}

/* Fonts
------------------------------------*/
@font-face {
  font-family: "notosansjp";
  font-weight: 400; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 500; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 600; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosansjp";
  font-weight: 700; 
  src: url("/static/css/fonts/notosansjp/NotoSansJP-Bold.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "notosans";
  font-weight: 700; 
  src: url("/static/css/fonts/notosans/NotoSans-Bold.woff2") format("woff2");
  font-display: swap;
}


/*共通 パーツ
-------------------------------*/
article {
	font-family: "notosansjp","Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo,"ＭＳ ゴシック", sans-serif;
	overflow: hidden;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
}
img {
  max-width: 100%;
  height: auto;
}
small {
  font-size: 75%;
}

/* color
-----------------------------------*/
.color-default {
    color: var(--default) !important;
}
.color-white {
    color: var(--white) !important;
}


/* section
-------------------------------------*/
.section {
    padding: 100px 0;
}
@media (max-width: 767px)  {
    .section {
      padding: 45px 0;
    }
}
@media (min-width: 560px) and (max-width: 900px)  {
    .section {
      padding: 60px 0;
    }
}


/* block
-------------------------------------*/
.block {
    padding: 30px 0 70px;
}
@media (max-width: 767px)  {
    .block {
      padding: 16px 0 32px;
    }
}

/* heading
--------------------------------------*/
.heading {
  text-align: center;
  margin-bottom: 54px;
  position: relative;
}
.heading span {
   display: block;
 }
.heading .en {
   opacity: 1;
   display: inline-block;
   text-align: center;
   line-height: 1.4;
   font-size: 20px;
   margin-bottom: 14px;
 }
.heading .en img {
    text-align: center;
    margin-inline: auto;
}
.heading .jp {
   font-size: 30px;
   font-weight: 700;
	font-family: "notosansjp", sans-serif;
    line-height: 1.5;
    color: var(--default);
    margin-bottom: 16px;
 }
@media (max-width: 767px) {
  .heading {
      margin-bottom: 40px;
   }
   .heading .en {
      width: 84%;
      text-align: center;
      margin: auto;
   }
   .heading .en img {
      text-align: center;
      margin: 0 auto 10px;
   }
   .heading .jp {
      font-size: 18px;
      line-height: 1.5;
      margin-bottom: 0;
    }
}

/* title
--------------------------------------*/
.title {
    font-size: 22px;
    font-weight: 700;
	font-family: "notosansjp", sans-serif;
}
@media (max-width: 767px) {
    .title {
        font-size: 18px;
    }
}

/* button
--------------------------------------*/
.button__primary {
  width: 100%;
  max-width: 294px;
  display: inline-block;
  padding: 20px 24px;
  font-size: 20px;
  font-family: "notosansjp", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  border-radius: 100px;
  transition: 0.3s;
  background: var(--primary);
  color: var(--white);
}
.button__primary:hover {
    color: var(--white);
}
/* ホバー対応デバイス */
@media (hover: hover) {
  .button__primary:hover{
    opacity: 0.6;
    text-decoration: none;
  }
}

/* text
--------------------------------------*/
.lead {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--default);
  font-family: "notosansjp", sans-serif;
  font-weight: 500;
}
.large {
  font-size: 120%;
}
.middle {
  font-size: 80%;
  line-height: 1.2;
}
.small {
  font-size: 70%;
}
.text-center {
  text-align: center;
}
.font-weight-medium {
	font-weight: 500;
}
@media (max-width: 767px) {
  .lead {
    font-size: 14px;
    line-height: 1.5;
  }
}

/*slider ベース設定
-------------------------------------*/
.slick-dots li {
    width: 30px;
    height: 5px;
    line-height: 1;
    margin: 0 6px;
}
.slick-dots li button {
    padding: 0;
    width: 30px;
    height: 5px;
}
.slick-dots li button { 
    padding: 0;
    background: #d9d9d9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 100px;
    border: 1px solid #d9d9d9;
    width: 30px;
    height: 5px;
    line-height: 1;
}
.slick-dots li.slick-active button {
    background: #989898;
	border: 1px solid #989898;
}
.slick-dots li button:before {
    content: none;
}

@media (max-width: 767px) {
	.slick-dots {
		bottom: -30px;
	}
}

/* Contents
---------------------------------------------*/
/*　MV
-------------------------------*/
.mv-area {
  position: relative;
  width: 100%;
  text-align: center;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
	.mv-area {
		margin-bottom: 0;
	}
}

/* slider
-------------------------*/
.view-slider {
    margin-bottom: 110px;
}
.view-slider__img img {
    width: 100%;
    max-width: 100%;
}

/*2枚目以降のスライダー調整*/
.view-slider .view-slider__item:nth-of-type(n+2) {
  display: none; 
}
/*slick-initializedが付与されたら表示*/
.view-slider.slick-initialized .view-slider__item:nth-of-type(n+2) {
  display: block; 
}
/*slick-initializedが付与されたら表示*/
@media (max-width: 767px) {
	.view-slider {
		margin-bottom: 70px;
	}
}


/* About
--------------------------------------*/
.about-lead {
	text-align: center;
	font-weight: 500;
	font-size: 22px;
}
@media (min-width: 768px) and (max-width: 1024px) {
	.about-lead {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.about-area {
		padding: 26px 0 32px;
	}
	.about-heading {
		text-align: left;
		margin-bottom: 14px;
	}
	.about-heading .en {
		text-align: left;
	}
	.about-heading .en img {
		text-align: left;
		margin: 0 auto 10px 0;
	}
	.about-lead {
		text-align: left;
		font-size: 16px;
		margin-bottom: 0;
	}
}
@media (min-width: 560px) and (max-width: 900px) {
	.about-area {
		padding: 45px 0;
	}
}

/* Schedule
---------------------------------------*/
.schedule__calendar{
	text-align: center;
	max-width: 910px;
	width: 100%;
	margin: auto;
}

/* Booking
--------------------------------------*/
.booking-area {
    padding: 60px 0 0;
}
.booking-content {
  padding: 0 0 100px;
  border-top: 1px solid var(--default);
}
.route-header {
  padding-top: 25px;
  padding-left: 40px;
  position: relative;
    margin-bottom: 25px;
}
.route-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 1px;
  height: 70px;
  background: var(--default);
  opacity: 1;
  transition: 0.3s;
}
.booking-heading {
    margin-bottom: 60px;
}
.booking-heading .en{
  opacity: 1;
  transition: 0.3s;
}
.booking-heading .jp {
    font-weight: 700;
    margin-bottom: 13px;
}
.booking-area .booking-heading .jp {
    margin-top: 10px;
    display: block;
    font-size: 30px;
    color: var(--default);
}
.booking-concept {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}
@media (max-width: 767px) {
  .booking-area {
    padding: 30px 0 0;
  }
  .booking-area > .booking-heading {
    padding: 0 15px;
  }
  .booking-content {
     padding-top: 0;
  }
  .route-header {
      padding-top: 22px;
      padding-left: 20px;
  }
  .route-header::before {
     top: 0;
     height: 64px;
  }
  .booking-heading {
     margin-bottom: 0;
   }
   .booking-heading .en {
     text-align: center;
   }
   .route-heading .en {
     text-align: left;
   }
   .booking-heading .en img {
     text-align: center;
   }
   .route-heading .en img {
     text-align: left;
   }
   .booking-area .booking-heading .jp {
        margin-top: 10px;
        font-size: 18px;
    }
    .booking-concept {
      font-size: 14px;
      line-height: 1.5;
    }
}
@media (min-width: 560px) and (max-width: 900px) {
	.booking-area {
		padding: 80px 0 0;
	}
}

/* route
------------------------------------------*/
.route-area {
    padding-bottom: 0;
}

.routetabs {
    padding: 32px 0 0;
}

.route-lead {
    text-align: left;
}

/* route-tab
-------------------------------------*/
.route-block {
	border-top: 1px dashed var(--line);
}
/* タブボタン */
.routetabs-buttonlist {
	display: flex;
    column-gap: 2.5%;
	justify-content: center;
	position: relative;
    border-bottom: none;}

.routetabs-buttonlist.nav-tabs li {
    width: 22%;
}
.routetabs-buttonlist li {
	text-align: center;
}
.routetabs-buttonlist.nav-tabs li > a {
    display: block;
	font-size: 16px;
	font-family: "notosansjp",sans-serif;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	transition: 0.3s;
    cursor: pointer;
	color: var(--secondary);
    background: var(--white);
    border-radius: 100px;
    border: 1px solid var(--secondary);
    padding: 15px 2%;
	width: 100%;
	max-width: 240px;
}
.routetabs-buttonlist.nav-tabs li > a:hover {
    opacity: 1;
    border-color: inherit;
}
.routetabs-buttonlist.nav-tabs .nav-link.active {
    border: 2px solid var(--secondary);
    background-color: var(--secondary);
    opacity: 1;
    color: var(--white);
}

/*タブボタン アクティブ時の挙動*/
.routetabs-buttonlist li button.active {
    position: relative;
}
@media (max-width: 767px) {
	.routetabs {
		padding: 0;
	}
	.routetabs-buttonlist {
		column-gap: 2%;
	}
     /* タブボタン */
    .routetabs-buttonlist.nav-tabs {
        justify-content: center;
    }
    .routetabs-buttonlist.nav-tabs li {
         width: 49%;
         margin-bottom: 10px;
     }
	 .routetabs-buttonlist li button,
	 .routecetabs-buttonlist li a{
		 font-size: 16px;
	 }
    .routetabs-buttonlist.nav-tabs li a{
        width: 100%;
        font-size: 16px;
        line-height: 1.2;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

/* タブコンテンツ　*/
.route-content {
	display: none;
	transition: 0.3s;
}
.route-content-inner {
	padding: 0 8%;
	max-width: 1020px;
	margin: auto;
}
.route-content.active {
	display: block;
}
/* 日程*/
.route-box {
	border: 1px solid #000;
	border-radius: 15px;
	padding: 18px 30px;
	max-width: 564px;
	margin: 0 auto 45px;
}
.route-title {
	text-align: center;
	font-size: 18px;
	color: var(--default);
	font-family: "notosansjp", sans-serif;
	font-weight: 700;
	margin-bottom: 10px;
}
.route-list {
	display: flex;
	justify-content: space-between;
	column-gap: 1%;
}
.route-list li{
	font-size: 16px;
	font-family: "notosansjp", sans-serif;
	font-weight: 500;
	color: var(--default);
}

.title-line {
	font-size: 20px;
	font-weight: 700;
	font-family: "notosansjp", sans-serif;
	line-height: 1.3;
	margin-top: 40px;
	margin-bottom: 20px;
	padding-left: 16px;
	border-left: 9px solid var(--secondary);
}
.title-line + .lead {
	margin-left: 20px;
}
/* flow */
.flow-list {
	margin-top: 40px;
}
.flow-list li {
	display: block;
	position: relative;
	background: #F3F5FF;
	border-radius: 8px;
	padding: 20px 4%;
	margin-top: 54px;
}
.flow-list li:first-child {
	margin-top: 0;
}
.flow-list li:not(:last-child)::after {
	content: '';
	position: absolute;
	display: inline-block;
	left: 50%;
	bottom: -43px;
	transform: translateX(-50%);
	width: 4rem;
	height: 38px;
	background: url('/restaurantbus/osaka/img/ico-arrow.svg') no-repeat center center / 100%;
}
.flow-list__wrap {
	display: flex;
	align-items: center;
}
.flow-list__wrap dt,
.flow-list__wrap dd {
	font-size: 20px;
	font-weight: 700;
	font-family: "notosansjp", sans-serif;
}
.flow-list__wrap dt {
	width: 24%;
}
.flow-list__wrap dd {
	width: 76%;
	margin-left: 8%;
	line-height: 1.2;
}
.flow-list__wrap dd .medium{
	font-size: 16px;
    display: inline-block;
}
.flow-list__wrap dd small {
	font-size: 14px;
	font-weight: 500;
}

/* 予約 */
.route-reservation {
	margin-top: 40px;
	display: flex;
	justify-content: flex-end;
	align-items: baseline;
	column-gap: 2%;
	font-family: "notosansjp",sans-serif;
	color: #000;
}
.route__one {
	font-size: 16px;
	font-weight: 500;
}
.route__price {
	font-size: 16px;
	font-weight: 700;
}
.route__price .num {
	font-size: 28px;
	font-weight: 700;
	font-family: "notosans", sans-serif;
}
.route__button {
  width: 100%;
  max-width: 294px;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 992px) {
	.route-content-inner {
		padding: 0;
	}

	.flow-list__wrap dt,
	.flow-list__wrap dd {
		font-size: 18px;
	}
}

@media (max-width: 767px) {
	.route-content-inner {
		padding: 0;
		max-height: 100%;
	}
	.route-box {
		border-radius: 15px;
		padding: 14px 30px;
		max-width: 100%;
		margin: 0 auto 28px;
	}
	.route-title {
		font-size: 16px;
		margin-bottom: 12px;
	}
	.route-list {
		justify-content: flex-start;
		flex-wrap: wrap;
		column-gap: 10%;
	}
	.route-list li{
		font-size: 14px;
	}
	
	.title-line {
		font-size: 18px;
		margin-top: 28px;
		margin-bottom: 16px;
		padding-left: 12px;
	}

	.title-line + .lead {
		margin-left: 0;
	}

	/* flow */
	.flow-list {
		margin-top: 26px;
	}
	.flow-list li {;
		border-radius: 8px;
		padding: 20px 4%;
	}
	.flow-list li:not(:last-child)::after {
		width: 3rem;
		height: 2.5rem;
	}
	.flow-list__wrap {
		display: flex;
		align-items: center;
	}
	.flow-list__wrap dt,
	.flow-list__wrap dd {
		font-size: 15px;
	}
	.flow-list__wrap dt {
		width: 39%;
	}
	.flow-list__wrap dd {
		margin-left: 7%;
	}
	.flow-list__wrap dd .medium {
		font-size: 13px;
	}
	.flow-list__wrap dd small {
		font-size: 12px;
	}
	
	/*予約*/
	 .route__button {
		margin: 12px auto;
	 }
	.route-reservation {
		margin-top: 24px;
		flex-wrap: wrap;
		justify-content: center;
	}
	.route__one {
		font-size: 16px;
	}
	.route__price {
		font-size: 16px;
		font-weight: 700;
	}
	.route__price .num {
		font-size: 28px;
	}
	.route__button {
	  width: 100%;
	  max-width: 100%;
	}
}



/* organized
-------------------------*/
.organized-area {
    padding: 60px 0 90px;
	background: var(--secondary);
}
.organized-heading {
	margin-bottom: 25px;
}
.organized-area .lead {
	line-height: 1;
}
.organized-area .lead > small {
	font-size: 14px;
	line-height: 1;
}
.organized-list div {
	margin: auto;
	display: flex;
	justify-content: center;
}
.organized-area .organized-list dt,
.organized-area .organized-list dd {
	color: var(--white);
	font-size: 20px;
	font-family: "notosansjp", sans-serif;
	font-weight: 500;
}

@media (max-width: 767px) {
    .organized-area {
        padding: 40px 0 70px;
    }
	.organized-heading {
		margin-bottom: 12px;
	}
	.organized-area .lead {
		line-height: 1.2;
	}
	.organized-area .lead > small {
		font-size: 12px;
	}
	.organized-list div{
		width: 100%;
	}
	.organized-area .organized-list dt,
	.organized-area .organized-list dd {
		font-size: 14px;
	}
}

@media (max-width: 330px) {
	.organized-area .organized-list dt, 
	.organized-area .organized-list dd {
		font-size: 13px;
	}
}






