@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/*---------------------------------
	pc(tablet)・sp　切り替え
----------------------------------*/
/* sp */
@media (max-width: 767px) {
  .pc-on {
    display: none;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
  
  .t-left-sp {
    text-align: left!important;
  }
}

/*pc・tablet*/ 
@media (min-width: 768px) {
  .pc-on {
    display: block;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: none;
  }
}

/* tablet only */
@media (min-width: 768px) and (max-width: 991px) {
  .tab-on {
    display: block;
  }
}


/*---------------------------------
	共通　PCファースト
----------------------------------*/
body{
/*	font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;*/
	font-family: "Noto Sans JP", sans-serif,"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3","Yu Gothic", "Yu Gothic medium", "Arial", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
	overflow-x: hidden;
	color: #2B2B2B;
	max-width: 1920px;
	margin: 0 auto;
}

img {
	max-width: 100%;
	height: auto;
}

a{	
	text-decoration: none;
	color: inherit;
}
a:hover{
	color: inherit;
}
a:link, a:visited, a:hover, a:active, a:focus{
	text-decoration: none;
}

h1,
h2,
h3,
h4,
ul,
ol,
dl,
dt,
dd,
p,
figure{
	margin:0;
	padding:0;
}

ul,
ol{
	margin:0;
	padding:0;
	list-style-type: none;
}

button:focus {
	outline: none;
}
		

/*共通*/
.red{
	color: #B80E0B;
}

/*リスト*/
.dot-list li{
	position: relative;
	padding-left: 15px;
}

/*リストの「・」*/
.dot-list li:before{
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}

/*ドットなし・字下げ*/
.dot-list li.indent{
	padding-left: 0;
}
.dot-list li.indent:before{
	display: none;
}


/*  見出し
-------------------------------*/
.title-h2{
	position: relative;
	text-align: center;
	font-weight: bolder;
	font-size: 40px;
	margin: 0 0 60px;
}

.title-h2 .sub{
	letter-spacing: 0;
	font-size: 26px;
}

.title-h3{
	text-align: center;
	font-weight: bolder;
	font-size: 28px;
	margin: 0 0 30px;
}
.title-h4{
	text-align: center;
	font-weight: bolder;
	font-size: 20px;
}

.title-h2 span,
.title-h3 span{
	display: block;
	font-weight: bolder;
	line-height: 1.5;
}


@media (max-width:767px) {
	.title-h2{
		font-size: 28px;
		margin: 0 0 30px;
	}
	.title-h2 .sub{
		font-size: 22px;
	}
	.title-h3{
		font-size: 22px;
	}
	.title-h4{
		font-size: 18px;
	}
}



/*  ボタン
-------------------------------*/
.link-btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    background: #B80E0B;
    border-radius: 5px;
    width: 100%;
	max-width: 268px;
    padding: 18px 30px 18px 30px;
    margin: 20px auto;
	transition: 0.2s;
}
.link-btn:hover {
    color: #fff;
	opacity: 0.8;
	text-decoration: none;
}

/*矢印アイコン*/
.link-btn:before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    position: absolute;
	top: calc(50% - 10px);
    right: 0.7em;
    font-weight: bold;
    z-index: 2;
    color: #fff;
    width: 20px;
	font-size: 15px;
    transform: scale(1);
}

/*各ボタン*/
/*背景色：黒*/
.link-btn.bg-black{
	background: #232323;
	border: none;
}

/*アイコン：外部タブ*/
.link-btn.other-tab:before{
	content: "\f24d";
	right: 1em;
	transform: scale(1.3);
}

@media (max-width: 767px) {
	.link-btn {
		font-size: 14px;
	}
}

/*---------------------------------
	ヘッダー
----------------------------------*/
/*ロゴ無し　mv１枚画像の場合*/
.header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 3;
	position: relative;
	top: 4vw;
	width: 100%;
	height: 0;
	background: #BDE4F3;
	padding: 0 20px;
}

/*ナビ*/
.header-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
}


/*PC時のみ*/
@media (min-width: 992px) {
	/*ハンバーガーメニューボタン*/
	.navbtn {
		display: none;/*非表示*/
	}
	
	/*PCナビ共通*/
	.header .nav-wrap{
		width: 100%;
		max-width: 590px;
	}

	.header ul.list-nav{
		display: flex;
		align-items: center;
		justify-content: center;
		list-style: none;
		background: #fff;
		border-radius: 50px;
		margin: 0;
	}
	.header .btn-item{
		margin-right: 10px;
	}
	.header .btn-item:last-of-type{
		margin-right: 0;
	}

	/*各ナビの設定*/
	.header .btn-item a{
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		max-width: 160px;
		padding: 13px 5px;
		font-weight: bold;
		font-size: 17px;
		color: #232323;
		transition: 0.2s;
	}
	.header .btn-item a:hover{
		color: #B80E0B;
	}
}


/* タブレット以下 */
@media (max-width: 991px) {
	/* ハンバーガーメニュー　ボタン */
	.navbtn {
		/*buttonタグのデフォルト装飾解除*/
		padding: 0;
		outline: none;
		border: none;
		background: transparent;
		cursor: pointer;
		color: #97857e;
		font-size: 30px;
		display: block;/*表示*/
		position: fixed;
        top: 0px;
        right: 10px;
		z-index: 100;
	}
	
	/*	三本線の色*/
	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after{
		background-color: #000 !important;
	}

	/*	開いた時*/
	.open .navbtn {
		z-index: 110;
		position: fixed;
		right: 10px;
	}
	
	/*	三本線の色*/
	.open .hamburger-inner, .open .hamburger-inner::before, .open .hamburger-inner::after{
		background-color: #fff !important;
	}

	/* 色 */
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after,
	.hamburger.is-active .hamburger-inner,
	.hamburger.is-active .hamburger-inner::before,
	.hamburger.is-active .hamburger-inner::after {
		background-color: currentColor;
	}

	/*メニュー中身*/
    .header-nav {
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        /* background-color: #4e483ae6; */
        background-color: rgba(60, 176, 219, 0.9);
        transition: 0.3s;
		color: #fff;
    }

    /* ナビ開いてるとき　htmlタグにクラス「open」付く */
    .open .header-nav {
        transform: translate(-100%, 0);
    }

    .header-nav ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
        color: #fff;
		font-size: 18px;
    }
}


/*　MV 
-------------------------------*/
.mv-area {
	width: 100%;
	text-align: center;
	padding: 40px 0 0;
	background: #BDE4F3;
}

/*ロゴ無し　mv1枚画像の場合*/
.mv-area {
	padding: 0;
}

.mv-area img {
	max-width: 100%;
	object-fit: cover;
	object-position: top center;
	margin: auto;
}

/* タブレット以下 */
@media (max-width: 787px) {
	.mv-area {
		padding: 0;
	}
}


/*---------------------------------
	section　Service
----------------------------------*/
#Service{
	background: url(/static/img/maas/mobi/kr001/bg-repeat.png) top left; 
	padding: 80px 0 90px;
    margin: 80px 0 0;
}

.about-intro{
	text-align: center;
}

.about-intro .title-h2{
	margin-bottom: 30px;
}
.about-intro p{
	font-size: 16px;
	margin-bottom: 0;
}
.about-intro p + p{
	margin-top: 20px;
}
.row-about{
	display: flex;
}
.col-about{
	width: 33.33%;
	padding: 0 20px;
}
.dl-about{
	text-align: left;
	margin-top: 20px;
}

/*注意書き*/
#Service .wrap-attention{
	background: #fff;
    border-radius: 15px;
    padding: 20px 40px;
    margin: 30px 20px;
}

/*タイトル*/
.dl-about dt{
	font-size: 18px;
	margin-bottom: 20px;
}

@media(max-width:786px) {
	#Service{
		padding: 40px 0;
		margin: 40px 0 0;
	}
	.about-intro{
		margin-bottom: 40px;
		text-align: left;
	}
	.about-intro p{
		font-size: 14px;
	}
	.row-about{
		display: block;
	}
	.col-about{
		width: 100%;
		padding: 0 20px;
		margin: 0 0 30px;
	}
	.dl-about{
		text-align: left;
		margin-top: 10px;
	}
	.dl-about dt{
		margin-bottom: 10px;
	}
	.dl-about dd{
		font-size: 14px;
	}

	/*注意書き*/
	#Service .wrap-attention{
		padding: 15px;
		margin: 30px 20px;
	}
}


/*---------------------------------
	section　Use
----------------------------------*/
#Use{
	padding: 140px 0 70px;
}

/*ご利用ケース*/
.case-intro{
	text-align: center;
	margin: 0 0 60px;
}

/*3列*/
.row-use{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 960px;
	margin:0 auto;
}
.col-use{
	width: 33.33%;
	margin-bottom: 20px;
	padding: 0 10px;
}

.wrap-use{
	padding: 20px;
	text-align: center;
	background: #fff;
	border-radius: 4px;
	font-weight: bolder;
}
.wrap-use p{
	font-weight: bolder;
	font-size: 24px;
	margin: 15px 0 0;
}


@media(max-width:786px) {
	#Use{
		padding: 40px 0 0;
	}

	/*1列*/
	.col-use{
		width: 100%;
		margin-bottom: 30px;
	}
	.wrap-use{
		padding: 10px 10px;
		text-align: center;
	}
	.wrap-use p{
		font-size: 20px;
	}
}

/*---------------------------------
	section　Area
----------------------------------*/
#Area{
	padding: 80px 0 0;
}

#Area .section-body{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

/*各地図記事*/
.area-item {
    padding: 0 7px 100px;
    max-width: 563px;
}

/*下妻市*/
.area-item03 dl{
	display: flex;
	justify-content: center;
}
.area-item03 dl:nth-of-type(2){
	text-align: right;
}
.area-item03 dl:nth-of-type(2) span{
	padding-right: 10px;
}


/*カードデザイン*/
.area-item .card-wrap{
	background: #fff;
	border: solid 1px #D7D7D7;
	padding: 0 20px;
}

/*見出し*/
.area-item .title-wrap{
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
	min-height: 90px;
}

.area-item .card-wrap h4.one-line{
	display: flex;
	justify-content: center;
	align-items: center;
}

/*グーグルマップ*/
.wrap-map{
	position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
	text-align: center;
	margin: 0 auto 15px;
	min-height: 400px;
}

.wrap-map iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}


/*運行時間*/
.time-wrap{
	text-align: center;
}




@media (max-width: 767px) {
	#Area{
		padding: 60px 0 30px;
	}
	/*各地図記事*/
	.area-item{
		padding: 0 10px 25px;
	}
	
	/*グーグルマップ*/
	.wrap-map{
		min-height: 300px;
	}
}


@media (max-width: 991px) {
	/*下妻市*/
	.area-item03 dl{
		display: block;
	}
	.area-item03 dl:nth-of-type(2){
		text-align: center;
	}
	
	.area-item .title-wrap small{
		font-size: 13px;
	}
}



/*---------------------------------
	section　Flow
----------------------------------*/
#Flow{
	padding: 0 0 100px;
}

/*サービス利用の流れ*/
#Flow .wrap-flow{
	max-width: 926px;
	margin: auto;
}

/*ボタン全体*/
.wrap-flow-btn{
	margin: 50px 0 0;
}

.wrap-flow-btn a{
padding: 18px 30px 18px 10px;
}
.wrap-flow-btn ul{
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 947px;
	width: 100%;
	margin: auto;
}
.wrap-flow-btn ul li{
	max-width: 190px;
	width: 100%;
	margin-right: 13px;
}

/*最後の要素*/
.wrap-flow-btn ul li:last-of-type{
	max-width: 290px;
	margin-right: 0;
}
.wrap-flow-btn ul li:last-of-type a{
	max-width: 290px;
}
/*最後のから2番目*/
.wrap-flow-btn ul li:nth-last-child(2){
	max-width: 290px;
	margin-right: 13px;	
}
.wrap-flow-btn ul li:nth-last-child(2) a{
	max-width: 290px;
}

/*各ボタン*/
.wrap-flow-btn .link-btn{
	border-radius: 10px;
}

/*利用上の注意*/
.wrap-use-attention{
	margin: 100px 0 0 ;
}

.wrap-use-attention .attention-item .attention-title{
	font-weight: bold;
	font-size: 18px;
}
.inner-attention{
	height: 400px;
	padding: 40px;
	overflow-y: scroll;
	border:1px solid #ccc;
}

@media (max-width: 992px) {
	.wrap-flow-btn a{
		font-size: 14px;
	}	
.inner-attention{
	padding: 20px;
}	
}


@media (max-width: 767px) {
	#Flow {
		padding: 30px 0 50px;
	}
	
	/*利用上の注意*/
	.wrap-use-attention{
		margin: 80px 0 0 ;
	}
	
	/*各ボタン*/
	.wrap-flow-btn ul{
		flex-wrap: wrap;
	}
	.wrap-flow-btn ul li{
		margin-right: 0px!important;
		max-width: 268px!important;
	}
	.wrap-flow-btn .link-btn{
		padding: 18px 20px 18px 5px;
		margin: 10px auto;
	}
	.wrap-flow-btn ul li a{
		max-width: 268px!important;
	}
	.wrap-flow-btn li:last-of-type .link-btn:before{
		transform: scale(1);
	}
}


/*利用上の英語切り替え対応*/

.wrap-use-attention .nav-tabs{
	border-bottom: none;
	justify-content: flex-end;
	margin-bottom: 20px;
	
}

.wrap-use-attention .nav-tabs .nav-link{
	padding: 6px 30px;
}

.wrap-use-attention .nav-tabs .nav-item{
	margin-bottom: 0;
}



.wrap-use-attention .nav-tabs li:first-child{
	border-top:1px solid #ccc;
	border-left:1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-right:1px solid #ccc;
	background: #EEE;
	color: #999;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;	
	
}

.wrap-use-attention .nav-tabs li:nth-child(2){
	border-top:1px solid #ccc;
	border-right:1px solid #ccc;
	border-bottom: 1px solid #ccc;
	background: #EEE;
	color: #999;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;	
	
}



.wrap-use-attention .nav-tabs li:first-child.nav-item.show .nav-link,.wrap-use-attention .nav-tabs li:first-child.nav-item .nav-link.active{
		color: #111;
	font-weight: bold;
	background: #fff;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;	
}

.wrap-use-attention .nav-tabs li:nth-child(2).nav-item.show .nav-link,.wrap-use-attention .nav-tabs li:nth-child(2).nav-item .nav-link.active{
	color: #111;
	font-weight: bold;
	background: #fff;
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;		
}

@media (max-width: 767px) {
	
.wrap-use-attention .nav-tabs .nav-link{
	font-size: 12px;
}
.wrap-use-attention .nav-tabs .nav-link{
	padding: 4px 16px;
}	
	
}


/*---------------------------------
	section　FAQ
----------------------------------*/
#FAQ{
	background: url(/static/img/maas/mobi/kr001/bg-repeat.png) top left; 
	padding: 80px 0;
}

/*見出し*/
#FAQ .title-h2 .sub{
    background: #fff;
    border: solid 2px #232323;
    max-width: 180px;
    padding: 10px;
    margin: 20px auto;
}

/*QとA　共通
------------------------*/
#faq-accordion .card {
    border: none;
    max-width: 947px;
    margin: auto;
}

#faq-accordion .card + .card{
	margin-top: 20px;
}

/*左のQとA*/
#faq-accordion .num-label{
	background: none;
	font-size: 30px;
	font-weight: bold;
	width: auto;
	padding: 0;
	color: #000000;
	position: absolute;
	top: 50%;
	left: 30px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	margin-right: 20px;
}

/*質問
------------------------*/
#faq-accordion .card-header{
	border: none;
	background: none;
	padding: 0;
}
/*質問テキスト*/
#faq-accordion .card-header .faq-ttl{
	display: block;
	margin-left: 0;
	padding-left: 30px;
	font-size: 20px;
	font-weight: bold;
	color: #232323;
}
/*質問項目の余白*/
#faq-accordion .card-header button{
	padding: 30px 80px;
	position: relative;
	width: 100%;
	text-align: left;
	cursor: pointer;
	background: #fff;
	border: none;
	border-radius: 4px;
}
/*質問項目の右矢印*/
#faq-accordion .card-header button:before{
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translate(0, -50%);
	width: 40px;
	height: 40px;
	border-radius: 100px;
	background: #D8DBDF;
	font-size: 18px;
	font-weight: 900;
	color: #232323;
}
/*閉じてるとき*/
#faq-accordion .card-header button.collapsed:before{
	content: "\f078";
	background: #000;
	color: #fff;
}


/*回答
------------------------*/
/*回答項目の余白*/
#faq-accordion .card-body {
    padding: 25px 25px 25px 70px;
    position: relative;
}

#faq-accordion .card-body p{
	font-size: 16px;
	line-height: 1.6;
}

#faq-accordion .card-body p + p{
	margin-top: 20px;
}


@media(max-width: 767px) {
	#FAQ{
		padding: 40px 0;
	}

	/*QとA*/
	#faq-accordion .num-label{
		font-size: 26px;
		margin-right: 30px;
		left: 12px;
	}
	
	/*質問項目の余白*/
	#faq-accordion .card-header button{
		padding: 15px 10px;
	}

	/*質問テキスト*/
	#faq-accordion .card-header .faq-ttl{
		font-size: 16px;
		padding-left: 64px;
		padding-right: 44px;
	}
	
	/*右の矢印アイコン*/
	#faq-accordion .card-header button:before{
		width: 24px;
		height: 24px;
		font-size: 12px;
		right: 20px;
	}

	/*回答項目の余白*/
	#faq-accordion .card-body {
		padding-top: 15px;
	}
}



/*---------------------------------
	section　Ride-share
----------------------------------*/
#Ride-share{
	background: url(/static/img/maas/mobi/kr001/bg-ride-share.jpg) no-repeat top center / cover; 
	padding: 40px 15px;
}

#Ride-share .wrap-inner{
	background: #fff;
	max-width: 947px;
	width: 100%;
	border: solid 1px #707070;
	border-radius: 10px;
	padding: 40px;
}

#Ride-share .title-h3 .sub{
	font-size: 20px;
	font-weight: 600;
}

#Ride-share .wrap-text{
	font-size: 18px;
}

.about-ride-share{
	margin: 20px 0 10px;
}

@media(max-width: 767px) {
	#Ride-share .wrap-inner{
		padding: 20px;
	}
	#Ride-share .title-h3 .sub{
		font-size: 18px;
	}
	#Ride-share .wrap-text{
		font-size: 16px;
	}
}
	
/*---------------------------------
	section　Contact
----------------------------------*/
#Contact{
	padding: 30px 0 200px;
}

/*ボタン共通*/
#Contact .link-btn{
	max-width: 563px;
	font-size: 22px;
	padding: 30px;
	border-radius: 10px;
}

/*各ボタン*/
#Contact .link-btn.reservation-btn{
	border: solid 2px #E45458;
	margin-bottom: 100px;
}
#Contact .link-btn.reservation-btn:before{
	display: none;
}

#Contact .link-btn.bg-black{
    max-width: 371px;
    font-size: 16px;
    padding: 20px;
}

/*お電話でのお問い合わせ～*/
.contact-text {
    font-weight: 900;
    font-size: 20px;
}

/*TEL*/
.contact-tel{
	margin: 20px 0 60px;
	font-weight: bold;
}
.contact-tel a{
    display: block;
    position: relative;
    font-size: 34px;
    font-weight: bold;
    max-width: 371px;
    padding: 10px 20px 10px 50px;
    border: solid 2px #232323;
    border-radius: 10px;
    background: #fff;
    margin: 20px auto;
}
.contact-tel a span{
    position: relative;
}

.contact-tel a span:before {
    content: "";
    position: absolute;
    background: url(/static/img/maas/mobi/kr001/icon-tel.png) no-repeat center / 100%; 
    top: calc(50% - 15px);
    left: -30px;
    width: 25px;
    height: 35px;
}
	
@media (max-width: 767px) {
	#Contact{
		padding: 30px 0 120px;
	}
	#Contact .link-btn{
		padding: 20px 30px;
	}
	
	/*各ボタン*/
	#Contact .link-btn.reservation-btn{
		margin-bottom: 70px;
	}
	
	/*お電話でのお問い合わせ～*/
	.contact-text {
		font-size: 18px;
	}
	
	/*TEL*/
	.contact-tel{
		margin: 20px 0 50px;
	}
	.contact-tel a{
		font-size: 30px;
	}
}

/*---------------------------------
	固定ボタン
----------------------------------*/
.fixed-btn{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 2;
	background: rgba(255,255,255,0.7);
	padding: 20px 30px;
	text-align: center;
	width: 100%;
}

.fixed-btn .link-btn{
	max-width: 304px;
	font-size: 20px;
	padding: 29px 30px 30px 29px;
	margin: 0 0 0 auto;
}

.fixed-btn .link-btn:before{
	display: none;
}


@media (max-width: 767px) {
	.fixed-btn{
		left:0;
		margin: auto;
	}
	.fixed-btn .link-btn{
		font-size: 18px;
		padding: 10px;
		margin: 0 auto;
	}
}



/*------------------------------------------------
  一時的にクローズ対応
-------------------------------------------------*/

/*20250114公開までクローズ　
※公開時は以下css消すだけでOK（リンク等もcssで無効化中）
------------------------------------------------*/

/*クリック不可*/
/*
.display-off-0114on{
	position: relative;
	margin-top: 100px;
}
.display-off-0114on a{
	pointer-events: none!important;
	filter: brightness(0.5);!important;
	margin-top: 100px;
}
*/

/*注意書きテキスト*/
/*
.display-off-0114on:after{
	content: "※1/14からお問い合わせ開始";
	display: block;
	font-size: 18px;
	font-weight: bold;
	color: #B80E0B;
	position: absolute;
	top: -50px;
	left: 0;
	right: 0;
	margin: auto;
}
*/


/*20250127公開までクローズ　
※公開時は以下css消すだけでOK（リンク等もcssで無効化中）
------------------------------------------------*/
/*共通
------------------------*/
/*クリック不可*/
/*a.display-off-0127on{
	position: relative;
	pointer-events: none!important;
	filter: brightness(0.5);!important;
}*/

/*注意書きテキスト*/
/*.wrap-flow-btn:after,
a.display-off-0127on:after{
	content: "1月20日～26日はシステム上、WEB申込可能ですが、\A試験運行中のため、ご利用いただけません。";
	white-space: pre;
	display: block;
	font-size: 14px;
	font-weight: bold;
	position: absolute;
	bottom: -37px;
	left: 0;
	right: 0;
	margin: auto;
	color: #999;
	line-height: 1.2;
}*/
.wrap-flow-btn:after,
#Contact a.display-off-0127on:after{
	font-size: 16px;
}


/*サービス利用の流れ
------------------------*/
.wrap-flow-btn{
	position: relative;
}
.wrap-flow-btn:after{
	color: #2B2B2B;
	text-align: center;
	font-size: 16px;
}
/*ボタン下の文言は削除*/
.wrap-flow-btn a.display-off-0127on:after{
	content: "";
}


/*お問い合わせ部分のボタン
------------------------*/
#Contact .link-btn.reservation-btn{
	margin: 80px auto 60px;
}

#Contact a.display-off-0127on:after{
	bottom: 0;
	top: -50px;
}


/*固定ボタン
------------------------*/
.fixed-btn{
	padding: 20px 30px 40px;
}
/*固定ボタンはテキスト内容別*/
/*
.fixed-btn a.display-off-0127on:after{
	content: "※2025年1月27日より本格運行\A(1月20日よりWEB申込開始)";
}
*/


@media (max-width: 767px) {
	a.display-off-0127on:after{
		font-size: 11px;
		bottom: -32px;
	}
	
	.wrap-flow-btn:after,
	#Contact a.display-off-0127on:after{
		font-size: 13px;
	}

	
}

/*NEWS
------------------------*/
.news-box {
    padding: 20px 30px;
    background: #fffdf6;
    border: solid 3px #da4453;
	margin: -40px auto 40px;
}
.news-box p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #da4453;
}
.news-box p .label-news{
    background: #da4453;
    color: #fff;
    font-size: 105%;
    display: inline-block;
    padding: 6px 8px;
    border-radius: 4px;
    position: relative;
    top: -2px;
    font-weight: bold;
    margin-bottom: 8px;
}
@media (max-width: 767px) {
	.news-box {
	margin: -20px auto 40px;		
	}
	.news-box p {
	font-size: 16px;
	}
}

