@charset 'UTF-8';
/**
 * たびらいレンタカー共通cssです。
 * reset.css・base.css の直後で読み込んで使用して下さい。
 */
/* ==========================================================================
   見出し
   ========================================================================== */
/* 大見出し */
.rc-headline {
	position: relative;
	padding-left: 45px;
	margin-top: 1em;
	margin-bottom: 1.5em;
	background-size: 40px auto;
	background-position: 0 center;
	background-repeat: no-repeat;
	font-weight: 700;
	font-size: 16px;
	line-height: 18px;
	color: #333;
	min-height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display:         flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	        align-items: center;
}

.rc-headline::after {
	position: absolute;
	bottom: -10px;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background: -webkit-linear-gradient(left, #7192bb 40%, #ebeff2 41%);
	background:         linear-gradient(to right, #7192bb 40%, #ebeff2 41%);
}

/* 中見出し */
.rc-subHeadline {
	margin: 1em 0;
	padding: 8px 16px 8px 12px;
	border-radius: 3px;
	border-left: solid 4px #1460ba;
	background: #ebeff2;
	font-weight: 700;
	font-size: 13px;
	color: #4379ba;
}

/* ==========================================================================
   wrapper配色指定
   ========================================================================== */

.rc-wrapper.\--bgGray {
    background-color: #f8f8f8;
}

/* ==========================================================================
   ボタン
   ========================================================================== */

.rc-button {
    box-sizing: border-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    position: relative;
}

/* 矢印設定 */

.rc-button.\--arr::after {
    content: '';
    margin-right: 4%;
    width: 14px;
    height: 14px;
}

/* 配色指定 */

.rc-button.\--arrWhite::after {
    border-bottom: 4px solid #fff;
    border-right: 4px solid #fff;
}

.rc-button.\--arrGray::after {
    border-bottom: 4px solid #999;
    border-right: 4px solid #999;
}

.rc-button.\--arrBlue1::after {
    border-bottom: 4px solid #003894;
    border-right: 4px solid #003894;
}

.rc-button.\--arrBlue2::after {
    border-bottom: 4px solid #59bded;
    border-right: 4px solid #59bded;
}

.rc-button.\--arrGreen::after {
    border-bottom: 4px solid #37b48c;
    border-right: 4px solid #37b48c;
}

/* 方向指定 */

.rc-button.\--arrAbove::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-bottom: -4%;
}

.rc-button.\--arrRight::after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.rc-button.\--arrBottom::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 2%;
}

/* オレンジボタン
--------------------------- */

.rc-button.\--isOrange {
    width: 280px;
    padding: 14px 0 14px 10px;
    text-decoration: none;
    background-color: #f08300;
    border: 1px solid #d87600;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0 0 inset;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    font-family: "メイリオ", "Meiryo", "HiraKakuPro-W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "osaka", "Arial", "Helvetica", "Verdana", "sans-serif";
}

/* 緑ボタン
--------------------------- */

.rc-button.\--isGreen {
    width: 280px;
    padding: 14px 0 14px 28px;
    text-decoration: none;
    background-color: #37b48c;
    border: 1px solid #64c4a5;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.2) 0 1px 0 0 inset;
    text-shadow: 0px -1px 1px rgba(0, 0, 0, 0.2);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
    font-family: "メイリオ", "Meiryo", "HiraKakuPro-W3", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "osaka", "Arial", "Helvetica", "Verdana", "sans-serif";
}


/* ==========================================================================
   パンくず
   ========================================================================== */
/* パンくずの非表示 */
.breadcrumb,
.rc-breadcrumb__content {
	display: none;
}

/* ぱんくず */
.pl-breadcrumb {
    font-family: Verdana, Roboto, "Droid Sans", "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
    margin-top: 30px;
    border-top: 2px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    width: 100%;
    height: 42px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
}

.pl-breadcrumb__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    height: 42px;
    padding-right: 17px;
    height: 100%;
}

.pl-breadcrumb__item {
    display: inline-block;
    list-style: none;
    padding-right: 22px;
    font-size: 10px;
    line-height: 42px;
    color: #505050;
}

.pl-breadcrumb__link {
    text-decoration: none;
    color: #2068b7 !important;/*「日本自駕遊」ページでbodyにリンクカラー#fffがあるため最優先させる */
    background: #ffffff;
    display: inline-block;
    position: relative;
}

.pl-breadcrumb__item:first-child > .pl-breadcrumb__link {
    padding-left: 10px;
}

.pl-breadcrumb__item:not(:last-child) .pl-breadcrumb__link::after {
    content: '';
    position: absolute;
    top: -2px;
    right: -18px;
    width: 42px;
    height: 43px;
    -webkit-transform: scale(0.707) rotate(45deg);
            transform: scale(0.707) rotate(45deg);
    z-index: 1;
    border-top: 3px solid #e8e8e8;
    border-right: 3px solid #e8e8e8;
}

/* ==========================================================================
   バナーエリア
   ========================================================================== */
.rc-bannerArea {
    display: block;
    width: 95%;
    margin: 0px auto 8%;
}

a.rc-bannerArea img {
    width: 100%;
}

/* ==========================================================================
   SNSボタン
   ========================================================================== */
.snsWrapper {
	padding: 10px 0;
}

.snsArea {
	float: right;
}

.snsButton {
	float: left;
	margin-left: 10px;
}

/* ==========================================================================
   シンプルヘッダー・フッター
   ========================================================================== */
.tabirai_header__logo.\--isSimple span.\--isJp img {
	padding: 15px 5px;
    height: 35px;
}

.tabirai_header__logo.\--isSimple span.\--isInbound img {
	padding: 11px 5px 10px;
    height: 44px;
}

.tabirai_header__barTextWrapper.\--isSimple {
    background: #59bded;
}

.tabirai_header__barText.\--isSimple {
	position: relative;
    padding: 12px 15px 12px 40px;
    color: #ffffff;
    font-size: 13px;
    line-height: 1.1;
}

.tabirai_header__barText.\--isSimple::before {
    content: '';
    background-image: url(/s/car/common/images/ico/ico_car_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 17px;
    height: 16px;
    position: absolute;
    left: 14px;
    top: 11px;
}

.tabirai_header__barText.\--isSimple span.--isJp {
    font-family: HiraKakuPro-W3,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",メイリオ,Meiryo,"ＭＳ Ｐゴシック",osaka,Arial,Helvetica,Verdana,sans-serif;
}

#globalFooter {
    border-top: 0;
}

.pagetopButton {
    background: url(/s/car/common/images/arrow04.png) no-repeat right center,
				url(/s/car/common/images/bg_pattern03.png) repeat-x 0 0;
    background-size: 15px 12px, 10px 29px;
    background-position: 244px center;
    border: 1px solid #666666;
    border-radius: 14px;
    margin: 3em auto 2em;
    padding: 4px 0;
    width: 270px;
    text-align: center;
	font-size: 14px;
}


#page-top {
    display: none;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 999;
}

#page-top p {
    margin: 0;
    padding: 2px 10px;
    text-align: center;
    transition: all .3s;
    border: 1px solid #bbb;
    border-radius: 5px;
}

#move-page-top {
    color: #333;
    line-height: 30px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

/* ==========================================================================
   ローディング画像
   ========================================================================== */
.rc-loader__wrapper,
.rc-prefLoader__wrapper {
    display: none;
	position: fixed;
	top: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.8);
}

.rc-prefLoader__wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
    margin: -25px 0 0 -25px;
}

.rc-loader__wrapper img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 280px;
    height: 180px;
    margin: -90px 0 0 -140px;
}

.rc-loader__wrapper.\--inbound img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 200px;
    height: 150px;
    margin: -75px 0 0 -100px;
}

/* サイトマップ導線 */
div.navSitemap {
    position: absolute;
    right: 4%;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding-top: 2px;
}

div.navSitemap a {
    border: 2px solid #6d6d6d;
    padding: 6px 10px;
    border-radius: 5px;
    color: #6d6d6d;
    font-size: 14px;
    text-decoration: none;
}
