/* ========================================================
   style_top.css
   たびらい県ページトップで使用します。
   Update: 2017/5/8
========================================================= */

/* =========================================================
   共通設定
========================================================= */

/* 遊ゴシック体のウェイト調整用ハック */
@font-face {
	font-family: 'YuGothic M';
	src: local(Yu Gothic Medium);
}

#main {
	font-family: YuGothic, 'YuGothic M', 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', sans-serif;
	color: #333;
}

/* パン屑
--------------------------- */
.pl-breadcrumb {
	overflow: hidden;
	text-align: left;
	font-size: 12px;
	width: 980px;
	margin: .5em auto .5em;
	padding: 0;
	list-style: none;
}

.pl-breadcrumb__item {
	display: inline-block;
	list-style: none
}

.pl-breadcrumb__item::after {
	content: '>';
	display: inline-block;
	margin: 0 .25em;
}

.pl-breadcrumb__item:last-child::after {
	content: none;
}

/* =========================================================
   汎用コンポーネント
========================================================= */

/* Button
--------------------------- */

/*
 * オプション（Modifier）でスタイルを変更可能。
 *
 * <a class="pl-button">基本ボタン</a>
 * <a class="pl-button +arrow">矢印付ボタン</a>
 */

.pl-button {
	width: 270px;
	height: 50px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	    justify-content: flex-start;
	-ms-flex-align: center;
	    align-items: center;
	padding: 0 1.25em;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	border-radius: 0;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-size: 18px;
	transition: background-color .1s linear;
	background-color: #f08300
}

.pl-button:link,.pl-button:visited {
	color: #fff;
	text-decoration: none;
}

.pl-button:hover {
	background-color: #ffeed9;
	color: #f08300;
	text-decoration: none;
}

.pl-button.\+arrow {
	position: relative;
}

.pl-button.\+arrow::after {
	content: "";
	width: 16px;
	height: 16px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: rotate(45deg);
	box-sizing: border-box;
	margin-top: -8px;
}


/* Lead Text
--------------------------- */

.pl-leadText {
	font-size: 26px;
	font-weight: 400;
	font-feature-settings : "palt";
	text-align: center;
	color: #003894
}

.pl-leadText::before {
	content: "＼";
	display: inline-block;
	margin-right: 1em;
	color: inherit;
}

.pl-leadText::after {
	content: "／";
	display: inline-block;
	margin-left: 1em;
	color: inherit;
}


/* =========================================================
   セクション コンポーネント
========================================================= */

/* MainVisual
--------------------------- */

.pl-mainVisual {
	max-width: 1260px;
	width: 100%;
	height: 420px;
	margin: 0 auto;
	visibility: hidden;
	opacity: 0;
	transition: opacity 250ms linear
}

.pl-mainVisual.active {
	visibility: visible;
	opacity: 1;
}

.pl-mainVisual__item {
	position: relative;
	display: block
}

.pl-mainVisual__item img {
	width: 100%;
}

.pl-mainVisual__item:hover {
	opacity: .9;
}

.pl-mainVisual__item__content {
	position: absolute;
	top: 50%;
	right: 200px;
	background-color: rgba(0, 56, 148, .7);
	color: #fff;
	margin-top: -90px;
	padding: 3em 2em 1.5em 2.5em;
	box-sizing: border-box;
	min-height: 180px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-ms-flex-align: start;
	    align-items: flex-start;
}

.pl-mainVisual__item__content.\--isReverse {
    right: auto;
    left: 200px;
}

.pl-mainVisual__item__content__label {
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #fff;
	color: #003894;
	font-size: 18px;
	box-sizing: border-box;
	padding: .25em 1em;
}

.pl-mainVisual__item__content__text {
	font-size: 25px;
	font-weight: 700;
	font-feature-settings : "palt";
	line-height: 1.3;
	margin: 0 0 .75em
}

.pl-mainVisual__item__content__text:last-child {
	margin-bottom: 0;
}

.pl-mainVisual__item__content__plans {
	margin: 0 0 .75em;
	padding: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center
}

.pl-mainVisual__item__content__plans dt {
	border: 1px solid #fff;
	font-size: 18px;
	box-sizing: border-box;
	padding: .25em 1em;
	margin-right: .5em;
}

.pl-mainVisual__item__content__plans dd {
	margin: 0;
	padding: 0;
	font-size: 26px;
}

.pl-mainVisual__item__content__plans:last-child {
	margin-bottom: 0;
}

.pl-mainVisual__item__area {
	position: absolute;
	background-color: rgba(255, 140, 0, .8);
	color: #fff;
	padding: .25em .75em;
	font-size: 16px;
	top: 0;
	left: 0;
}

/* Springbord Navigarion
--------------------------- */

.pl-springboard {
	/* margin: 5em 0 5em; */
	margin: 5em 0 3em;
}

.pl-springboard__list {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 980px;
	margin: 0 auto;
	background-color: #fff
}

.pl-springboard__list .pl-springboard__list__item:first-child .pl-springboardMediaHoler::after {
	left: 100px;
}

.pl-springboard__list .pl-springboard__list__item:nth-child(2) .pl-springboardMediaHoler::after {
	left: 350px;
}

.pl-springboard__list .pl-springboard__list__item:nth-child(3) .pl-springboardMediaHoler::after {
	left: 600px;
}

.pl-springboard__list .pl-springboard__list__item:nth-child(4) .pl-springboardMediaHoler::after {
	left: 840px;
}

.pl-springboard__list a:hover {
	text-decoration: none;
}

.pl-springboard__list__item {
	width: 244px;
	height: 206px;
	margin-bottom: 20px;
	box-sizing: border-box;
	transition: margin-bottom 400ms ease-in-out 50ms;
	will-change: margin-bottom;
	padding: 0 10px;
	font-feature-settings : "palt"
}

.pl-springboard__list__item.\--isHeadline {
	text-align: center;
	background-color: #003894;
	border-right: 10px solid #fff;
	border-left: 10px solid #fff;
	font-size: 22px;
	color: #fff;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	line-height: 1.4;
	font-weight: 700;
	padding: 0;
}

.pl-springboard__list__item.active {
	margin-bottom: 250px;
}

.pl-springboard__list__item.highlight .pl-springboardBox {
	background-color: #B0CFFF;
}

.pl-springboard__list__item__headline {
	margin: 0;
	font-size: 22px
}

.pl-springboard__list__item__headline span {
	display: block;
	font-size: 26px;
}


/* Springbord Navigarion - Box */

.pl-springboardBox {
	border: 1px solid #003894;
	background-color: #fff;
	color: #333;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: end;
	    justify-content: flex-end;
	-ms-flex-align: center;
	    align-items: center;
	height: 100%;
	cursor: pointer;
	margin: 0
}

.pl-springboardBox:hover {
	background-color: #B0CFFF;
}

.pl-springboardBox__title {
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-positive: 1;
	    flex-grow: 1;
}

.pl-springboardBox__title__icon {
	-ms-flex-positive: 1;
	    flex-grow: 1;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}

.pl-springboardBox__title__text {
	display: block;
	margin: 0;
	font-feature-settings : "palt";
}

.pl-springboardBox__content {
	margin: 0;
	padding: 0;
	height: 80px;
	font-size: 16px;
	text-align: center;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}


/* Springbord Navigarion - Media */

.pl-springboardMediaHoler {
	position: absolute;
	left: 0;
	top: 245px;
	border: 1px solid #ccc;
	width: 100%;
	background-color: #B0CFFF;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	height: 190px;
	opacity: 1;
	visibility: visible;
	transition: all 200ms ease-in-out 100ms;
	will-change: opacity
}

.pl-springboardMediaHoler::before {
	content: "";
	width: 100%;
	height: 40px;
	top: -40px;
	left: 0;
	position: absolute;
	display: block;
}

.pl-springboardMediaHoler::after {
	content: "";
	display: inline-block;
	height: 0;
	width: 0;
	border-top: 0 solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 25px solid #B0CFFF;
	border-left: 20px solid transparent;
	position: absolute;
	left: 0;
	top: -25px;
}

.pl-springboardMediaHoler[aria-hidden="true"] {
	opacity: 0;
	visibility: hidden;
}

.pl-springboardMedia {
    background-color: #fff;
	border: 1px solid #003894;
    width: 450px;
    height: 140px;
    margin: 0 13px;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	position: relative
}

.pl-springboardMedia:hover {
	text-decoration: none;
	opacity: .85;
}

.pl-springboardMedia::after {
	position: absolute;
	content: "";
	display: inline-block;
	width: 16px;
	height: 16px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	position: absolute;
	top: 50%;
	right: 1em;
	transform: rotate(45deg);
	box-sizing: border-box;
	margin-top: -8px;
}

.pl-springboardMedia__title {
	width: 210px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}

.pl-springboardMedia__title__icon {
	text-align: center;
	-ms-flex: 1 1 0%;
	    flex: 1 1 0%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-pack: center;
	    justify-content: center;
}

.pl-springboardMedia__title__text {
	font-size: 18px;
	font-weight: 400;
	font-feature-settings : "palt";
	text-align: center;
	color: #000;
	height: 40px;
}

.pl-springboardMedia__image {
	width: 210px;
}

.pl-springboardMedia__content {
	-ms-flex: 1 1 0%;
	    flex: 1 1 0%;
	background-color: #003894;
	color: #fefefe;
	font-size: 14px;
	padding: 1em 2.5em 1em 1.5em;
}


/* Information
--------------------------- */

.pl-infoWrapper {
	margin: 0 auto;
	box-sizing: border-box;
	padding-bottom: 3em;
}

/* Information - Local Section */
.pl-localSec {
	margin-bottom: 6em;
}

/* Information - Info Section */
.pl-infoSec {
	margin-bottom: 2em;
}


/* Trip Content
--------------------------- */

.pl-tripbox {
	margin-bottom: 7em;
}

.pl-tripbox__leadText {
	width: 100%;
	color: #FFF;
	font-size: 42px;
	font-weight: 100;
	text-align: left;
	padding: 0 .5em;
	box-sizing: border-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between
}

.pl-tripbox__leadText:after {
	content: '';
	display: inline-block;
	right: 25px;
	width: 15px;
	height: 15px;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
}

.pl-tripbox__leadText.\--isLetter-spacing {
	letter-spacing: 13px;
}

.pl-tripbox__leadText img:hover {
	opacity: .85;
}

.pl-tripbox__inner {
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	    justify-content: center;
	width: 1050px;
	margin: 0 auto 2.5em;
}

.pl-tripbox__inner__area {
	width: 320px;
	height: 140px;
	background-size: cover;
	text-decoration: none;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	margin: 0 .5em 1em;
}

.pl-tripbox__inner__area.\--isOkinawa {
	background-image: url(/common/images/top/tripbox_okinawa.jpg);
}

.pl-tripbox__inner__area.\--isKyushu {
	background-image: url(/common/images/top/tripbox_kyushu.jpg);
}

.pl-tripbox__inner__area.\--isHokkaido {
	background-image: url(/common/images/top/tripbox_hokkaido.jpg);
	/*margin-right: 0;  7/24コメントアウト */
}

.pl-tripbox__inner__area.\--isShizuoka {
	background-image: url(/common/images/top/tripbox_shizuoka.jpg);
}

.pl-tripbox__inner__area.\--isKanagawa {
	background-image: url(/common/images/top/tripbox_kanagawa.jpg);
}

.pl-tripbox__inner__area.\--isYamanashi {
	background-image: url(/common/images/top/tripbox_yamanashi.jpg);
}

.pl-tripbox__inner__area:hover {
	text-decoration: none;
	opacity: .85;
}

.pl-tripbox__inner__box {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	padding-left: 125px;
}

.pl-tripbox__inner__box__list {
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 1em
}

.pl-tripbox__inner__box__list:nth-child(odd) {
	width: 43%;
}

.pl-tripbox__inner__box__list:nth-child(even) {
	width: 57%;
}

.pl-tripbox__inner__box__list:only-child {
	width: 100%;
}

.pl-tripbox__inner__box__list__name {
	margin-right: 5px;
}

.pl-tripbox__inner__box__list__content {
	margin-left: 5px;
}

.pl-tripboxList {
	display: -ms-flexbox;
	display: flex;
}

.pl-tripboxList__item {
	position: relative;
	padding: 0 10px
}

.pl-tripboxList__item:before {
	content: '';
	position: absolute;
	top: 45%;
	left: 0;
	width: 0;
	height: 0;
	margin-top: -5px;
	border-top: 5px solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #0062ff;
	background-color: white;
}


/* Hero Content
--------------------------- */

.pl-hero {
	background-image: url(/common/images/top/pic_hero_01.jpg);
	background-size: cover;
	width: 980px;
	/* height: 390px; */
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	margin: 0 auto 4em;
}

.pl-hero__inner__text {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 1.7;
}

.pl-hero .pl-hero__inner__point {
	box-sizing: border-box;
    max-width: 980px;
}

.pl-hero__inner__button > .pl-button {
	margin: 20px auto;
}

.pl-hero__inner__point__list {
	display: -ms-flexbox;
	display: flex;
}

.pl-hero__inner__point__list__item {
	width: 50%;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: solid 2px rgba(255,255,255,0.5);
    padding: 20px 10px;
    margin: 10px;
    line-height: 1.8;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ACバナー */
.pl-infoWrapper .advertisement {
	margin: 0px auto;
    margin-bottom: 50px;
    max-width: 980px;
}
.pl-infoWrapper .advertisement img {
	width: 100%;
	object-fit: contain;
}

/* Box Content
--------------------------- */

.pl-boxHolder {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
}

.pl-box {
	width: 310px;
	border: 1px solid #003894;
	margin: 0 1em;
	padding-bottom: 1.25em;
}

.pl-box__title {
    color: #fff;
    background-color: #003894;
	background-repeat: no-repeat;
    font-weight: 700;
    padding: 0 1em;
    height: 70px;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center;
    font-size: 18px;
    line-height: 1.3
}

.pl-box__title.\--tabishiori {
	background-image: url(/common/images/top/img_tabishiori_01.png);
	background-position: top right -40px;
}

.pl-box__title.\--concierge {
	background-image: url(/common/images/top/img_concierge_01.png);
	background-position: bottom -12px right 15px;
}

.pl-box__content__text {
	font-size: 18px;
	text-align: center;
	line-height: 1.4;
	margin: 1em 0 .5em;
}

.pl-box__content__button > .pl-button {
	margin: 0 auto;
}


/* Flag Content
--------------------------- */

.pl-flag {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    border-top: 1px solid #003894;
    border-bottom: 1px solid #003894;
	width: 640px;
	margin: 0 auto 1.5em;
	padding: 1.5em 0;
}

.pl-flag__item {
	margin: 0 .5em;
	font-size: 18px;
}


.pl-sns {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
}

.pl-sns__item {
	margin: 0 .25em;
}


/* SNS Button
--------------------------- */

/*
 * オプション（Modifier）でスタイルを変更可能。
 *
 * <a class="pl-snsButton --isFacebook">facebook</a>
 * <a class="pl-snsButton --isTwitter">Twitter</a>
 * <a class="pl-snsButton --isGooglePlus">Google+</a>
 * <a class="pl-snsButton --isInstagram">Instagram</a>
 * <a class="pl-snsButton --isYoutube">YouTube</a>
 * <a class="pl-snsButton --isPinterest">Pinterest</a>
 */

.pl-snsButton {
	width: 100px;
	height: 40px;
	font-size: 12.5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	background-color: #bbb;
	border-radius: 4px
}

.pl-snsButton:link,.pl-snsButton:visited {
	color: #fff;
	text-decoration: none;
}

.pl-snsButton:hover,
	.pl-snsButton:active {
	color: #fff;
	text-decoration: none;
}

.pl-snsButton.\--isFacebook {
	background-color: #5070BD;
}

.pl-snsButton.\--isFacebook:hover,
		.pl-snsButton.\--isFacebook:active {
	background-color: rgb(100, 129, 196);
}

.pl-snsButton.\--isTwitter {
	background-color: #6DBFFB;
}

.pl-snsButton.\--isTwitter:hover,
		.pl-snsButton.\--isTwitter:active {
	background-color: rgb(136, 203, 252);
}

.pl-snsButton.\--isGooglePlus {
	background-color: #FF6161;
}

.pl-snsButton.\--isGooglePlus:hover,
		.pl-snsButton.\--isGooglePlus:active {
	background-color: rgb(255, 122, 122);
}

.pl-snsButton.\--isInstagram {
	background-color: #C83D90;
}

.pl-snsButton.\--isInstagram:hover,
		.pl-snsButton.\--isInstagram:active {
	background-color: rgb(206, 80, 155);
}

.pl-snsButton.\--isYoutube {
	background-color: #D13535;
}

.pl-snsButton.\--isYoutube:hover,
		.pl-snsButton.\--isYoutube:active {
	background-color: rgb(213, 72, 72);
}

.pl-snsButton.\--isPinterest {
	background-color: #FF9239;
}

.pl-snsButton.\--isPinterest:hover,
		.pl-snsButton.\--isPinterest:active {
	background-color: rgb(255, 160, 82);
}


/* 広告エリア
--------------------------- */

.pl-tieupHolder {
    overflow: hidden;
    clear: both;
    width: 980px;
    margin: 20px auto 5em;
}

.pl-tieup {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.pl-tieup__item {
	width: 310px;
	box-sizing: border-box;
	margin: 0 25px 1.5em 0
}

.pl-tieup__item:nth-child(3n) {
	margin-right: 0;
}

.pl-tieup__item:link,.pl-tieup__item:visited {
	color: #333;
}

.pl-tieup__item:hover {
	text-decoration: none;
	opacity: .85;
}

.pl-tieup__item__title {
	color: #2068b7;
	font-size: 15px;
	margin: 0 0 1em
}

.pl-tieup__item__title span {
	display: block;
	color: #333;
	font-size: 13px;
	margin-bottom: .5em;
}

.pl-tieup__item__content {
	display: -ms-flexbox;
	display: flex;
}

.pl-tieup__item__content__image {
	position: relative;
	width: 140px;
	margin-right: 1em
}

.pl-tieup__item__content__image img {
	width: 100%;
}

.pl-tieup__item__content__image .label {
	position: absolute;
	left: 0;
	top: 0;
	background-color: #003894;
	color: #fff;
	padding: .1em .5em;
	font-size: 12px;
}

.pl-tieup__item__content__text__name {
    margin: 0 0 .5em;
}

.pl-tieup__item__content__text__plan {
	margin: 0;
	line-height: 1.5;
	font-size: 13px
}

.pl-tieup__item__content__text__plan .bold {
	font-weight: 700;
}

.pl-tieup__item__content__text__plan .bigger {
	font-size: 16px;
}

/*たびらいのみみ*/
.bnr_tabirainomimi_wrap {
	margin: 0 auto 3em;
    width: 980px;
}