@charset "utf-8";

/******************************************
各ページ共通のスタイルを定義
*******************************************/

/* ----------------------------------------

再定義

---------------------------------------- */
html {
	overflow-y: scroll;
	font-size: 62.5%;
	width: 100%;
	height: -webkit-fill-available;
}
body {
	line-height: 1.5;
	background-color: #fff;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	color: #333;
	word-break: break-word;
	text-align: justify;
	width: 100%;
	min-height: 100vh;
  min-height: -webkit-fill-available;
}
body * {
	-webkit-box-sizing: border-box;
 	box-sizing: border-box;
}
a {
	color: #333;
	outline: none;
	text-decoration: none;
}
img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
img[src$=".svg"] {/* for win7 ie11 */
	width: 100%;
	height: auto;
}
table {
	table-layout: fixed;
}
input,select,textarea {
	max-width: 100%;
}
input[type="button"],select{cursor: pointer;outline: none;}
:focus::-webkit-input-placeholder {color: transparent;}/* Webkit */
:focus:-moz-placeholder {color: transparent;}/* Firefox 18 以前 */
:focus::-moz-placeholder {color: transparent;}/* Firefox 19 以降 */
::-webkit-input-placeholder {color: #888; opacity: 1;}
:-moz-placeholder {color: #888; opacity: 1;}
::-moz-placeholder {color: #888; opacity: 1;}
input[type="submit"],
input[type="button"] {
	-webkit-appearance: button;
	appearance: button;
}
input[type="text"],input[type="email"],input[type="password"],input[type="tel"],textarea {
	-webkit-appearance: none; 
	border-radius: 0;
	outline: none;
}
select {
	outline: none;
}
@media screen and (min-width:961px){
	a:hover,
	button:hover {opacity: .7;}
}
body ::-webkit-scrollbar { width: 12px;}
body ::-webkit-scrollbar-track { background: #f1f1f1;}
body ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb:window-inactive { background: #bcbcbc;}
@media screen and (max-width:960px){
	body ::-webkit-scrollbar { width: 8px;}
}

@media all and (min-width:961px){
	a[href^="tel:"] {
		cursor: default;
		text-decoration: none;
		pointer-events: none;
		display: inline-block;/*for ie11*/
	}
}
@media screen and (max-width:960px){
	input,select,textarea {
		font-size: 1.6rem;
	}
}


/* ----------------------------------------

container

---------------------------------------- */
#container {
	margin: 0 auto;
	font-size: 1.8rem;
	width: 100%;
	height: 100%;
}
@media screen and (max-width:960px){
	#container {
		min-width: inherit;
		font-size: 1.6rem;
	}
}

/*
**
子要素のフォントサイズ指定は以下を参照
http://bueltge.de/test/emchart.html
例)
基準フォントサイズが13pxで、
特定の要素を12pxにしたい時は92.4%と指定
**
*/

/* ----------------------------------------

header

---------------------------------------- */
.l-header {
	min-height: 72px;
	position: relative;
	z-index: 8;
}
.p-header {
	height: 100%;
	min-height: 72px;
	position: relative;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .15);
}
.p-header_text {
	font-size: 1.4rem;
	line-height: 1.9;
	color: #000;
}
.p-header_text a{
	color: #000;
}
.p-headerLogo {
	height: 65px;
	padding-top: 8px;
}
.p-header_left{
	width: calc(243 / 375 * 100%);
	padding-left: 40px;
	text-align: left;
	padding-bottom: 15px;
}
.p-headerLogo img {
	width: 240.1px;
	height: 46px;
	object-fit: contain;
	vertical-align: top;
}
.p-headerMenu {
	position: absolute;
	right: 122px;
	top: 17px;
	display: flex;
}
.p-headerMenu li {
	position: relative;
	margin-left: 20px;
	padding-left: 20px;
	line-height: 1.1;
}
.p-headerMenu li:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 0;
	width: 1px;
	height: 20px;
	background: #707070;
	display: inline-block;
}
.p-headerMenu li:nth-child(1):before {display: none;}
.p-headerMenu a {
	color: #333;
	font-size: 1.6rem;
}

.p-header .hover_question:hover + .hover_question_view{
	opacity: 1;
}

.p-header .hover_beginner:hover + .hover_beginner_view {
	opacity: 1;
}

.p-header .hover_question_view,
.p-header .hover_beginner_view {
	opacity: 0;
	transition: .3s ease;
	position: absolute;
	top: 56px;
	font-size: 1.6rem;
	background-color: #F0F0F0;
	padding: 5px 20px;
}
.p-header .hover_question_view{
	width: 248px;
	height: 32px;
	right: -50px;
}
.p-header .hover_beginner_view{
	width: 329px;
	height: 32px;
	right: -19px;
}

.p-header .hover_beginner_view::after{
	position: absolute;
	content: '';
	border-right: 7px solid transparent;
  border-bottom: 10px solid #F0F0F0;
  border-left: 7px solid transparent; 
	top: -10px;
	right: 21px;
}

.p-header .hover_question_view::after{
	position: absolute;
	content: '';
	border-right: 7px solid transparent;
  border-bottom: 10px solid #F0F0F0;
  border-left: 7px solid transparent; 
	top: -10px;
	right: 58px;
}

.p-headerMember {
	position: absolute;
	right: 122px;
	top: 50%;
	transform: translate(0, -50%);
}
.p-headerMember a {
	display: block;
	width: 170px;
	height: 44px;
	color: #fff;
	font-weight: 700;
	background: #F56400;
	border-radius: 5px;
	text-align: center;
	line-height: 44px;
	font-size: 1.6rem;
}
.p-preOrderSaleBtn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 70px;
	top: 17px;
	color: #fff;
	background-color: #14C864;
	border-radius: 4px;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
}

.p-headerNav__btn {
	display: block;
	position: absolute;
	right: 35px;
	top: 17px;
	white-space: nowrap;
	color: #F56400;
}
.p-headerNavBtn__icon {
	width: 36px;
	height: 20px;
	margin: 0 auto;
	position: relative;
}
.p-headerNavBtnIcon__line {
	width: 36px;
	height: 2px;
	display: block;
	background: #F56400;
	position: absolute;
	transition: .5s cubic-bezier(0.19, 1, 0.22, 1);
}
.p-headerNavBtnIcon__line.u-line01 {top: 0;}
.p-headerNavBtnIcon__line.u-line02 {top: 9px;}
.p-headerNavBtnIcon__line.u-line03 {bottom: 0;}
/* .p-headerNav__btn.deactive .p-headerNavBtnIcon__line.u-line01 {
	animation: menubar01 .4s forwards;
}
@keyframes menubar01 {
	0% {transform: translateY(9px) rotate(45deg);}
	50% {transform: translateY(9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
}
.p-headerNavBtnIcon__line.u-line02 {
	transition: all .2s .2s;
	opacity: 1;
}
.p-headerNav__btn.deactive .p-headerNavBtnIcon__line.u-line03 {
	animation: menubar02 .4s forwards;
}
@keyframes menubar02 {
	0% {transform: translateY(-9px) rotate(-45deg);}
	50% {transform: translateY(-9px) rotate(0);}
	100% {transform: translateY(0) rotate(0);}
} 
.p-headerNav__btn.active .p-headerNavBtnIcon__line.u-line01 {
	animation: activemenubar .4s forwards;
}
@keyframes activemenubar {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(0) rotate(0);}
	100% {transform: translateY(9px) rotate(45deg);}
}
.p-headerNav__btn.active .p-headerNavBtnIcon__line.u-line02 {
	opacity: 0;
}
.p-headerNav__btn.active .p-headerNavBtnIcon__line.u-line03 {
	animation: menuactive .4s forwards;
}
@keyframes menuactive {
	0% {transform: translateY(0) rotate(0);}
	50% {transform: translateY(0) rotate(0);}
	100% {transform: translateY(-9px) rotate(-45deg);}
}*/

.p-headerNavBtnIcon__txt {
	font-size: 1.4rem;
	
}
.p-headerNav__btn_close{
	display: block;
    width: 56px;
    float: right;
	margin: 10px 30px 10px 0;
}
.p-headerNav__btn_close .p-headerNavBtn__icon .u-line01{
	top: 14px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.p-headerNav__btn_close .p-headerNavBtn__icon .u-line02{
	opacity: 0;
}
.p-headerNav__btn_close .p-headerNavBtn__icon .u-line03{
	top: 14px;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
}
.p-headerNav__btn_close .p-headerNavBtnIcon__txt{
	color: #F56400;
	margin-top: 7px;
}

@media screen and (max-width:1250px){
	.p-headerLogo img {
		width: 200px;
		height: 38.3173px;
	}
	.p-headerMenu li {
		margin-left: 15px;
		padding-left: 15px;
		text-align: center;
	}
	.p-headerMenu li:before {
		top: -1px;
		height: 38px;
	}
	.p-headerMenu a{
		font-size: 1.4rem;
		vertical-align: -7px;
	}
	.p-headerMenu .icon_question{
		vertical-align: 0;
		margin-top: 4px;
	}
	.p-headerMenu .icon_beginner{
		vertical-align: 0;
		margin-top: 5px;
	}
	.p-headerMenu__2column{
		line-height: 1.1;
		vertical-align: 2px!important;
	}
}

@media screen and (max-width:960px){
	.p-header_text {
		font-size: 1.1rem;
		line-height: 1.5;
	}
	.p-headerLogo {
		height: 36px;
		padding-top: 8px;
	}
	.p-headerLogo img {
		width: 125.27px;
		height: 24px;
	}
	.p-header_left{
		padding-left: 12px;
		padding-bottom: 10px;
	}
	.p-headerMenu,
	.p-headerMember {
		display: none;
	}
	.p-preOrderSaleBtn {
		display: flex;
	}
	.p-headerNav__btn {
		top: 25px;
		right: 15px;
		margin-top: 2px;
	}
	.p-headerNavBtn__icon {
		width: 28px;
		height: 18px;
	}
	.p-headerNavBtnIcon__line {
		height: 1px;
	}
	.p-headerNavBtnIcon__txt {
		font-size: 1.2rem;
		margin-top: 2px;
	}
	.p-headerNav__btn_close{
		width: 48px;
		margin: 10px 15px 13px 0;
	}
	.p-headerNav__btn_close .p-headerNavBtn__icon .u-line01{
		top: 23px;
	}
	.p-headerNav__btn_close .p-headerNavBtn__icon .u-line03{
		top: 23px;
	}
	.p-headerNav__btn_close .p-headerNavBtnIcon__txt{
		margin-top: 18px;
	}
	
}

/* ----------------------------------------

header02

---------------------------------------- */

.l-header__02 {
	padding-top: 80px;
	text-align: center;
	margin-bottom: 85px;
	line-height: 1;
}
.p-header02Logo img {
	width: 492px;
	height: auto;
	vertical-align: top;
}
@media screen and (max-width:960px){
	.l-header__02 {
		padding-top: 24px;
		margin-bottom: 28px;
	}
	.p-header02Logo img {
		width: 222px;
	}
}

/* ----------------------------------------

gnav

---------------------------------------- */
.l-gnav {
	width: 375px;
	height:100%!important;
	background: #fff;
	position: fixed;
	z-index: 10;
	right: -375px;
	top: 0!important;
}
.p-gnav {
	height: 100%;
	overflow-y: auto;
}
.p-gnav__head{
	min-height: 64px;
	display: flex;
	align-items: center;
	margin: 0 30px;
	font-size: 1.8rem;
}
.p-gnav .bdt{
	border-top: 1px solid #C8C8C8;
	border-bottom: 1px solid #C8C8C8;
}
.p-gnav .bdb{
	border-bottom: 1px solid #C8C8C8;
}
.p-gnav__menu {
	 margin: 0 30px 20px;
	 clear: both;
}
.p-gnav__menu:nth-of-type(1) li:nth-of-type(1){
	border-top:1px solid #C8C8C8;
}
.p-gnav__menu:nth-of-type(1) li:nth-of-type(1) a{
	padding: 17px 0 18px!important;
}
.p-gnav__menu li {
	border-bottom: 1px solid #C8C8C8;
}
.p-gnav__menu li:nth-last-child(1) {
	border-bottom: none;
}
.p-gnav__menu li.is-sub {
	margin-left: 30px;
}
.p-gnav__menu li a {
	padding: 23px 0;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	position: relative;
}
.p-gnav__menu li a:before {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
	background-size: 30px 30px;
	margin-right: 20px;
}
.p-gnav__menu li:nth-last-child(4) a:before {background-image: url("../../rimg/common/icon_gnav_top.svg");}
.p-gnav__menu li:nth-last-child(3) a:before {background-image: url("../../rimg/common/icon_gnav01.svg");}
.p-gnav__menu li:nth-last-child(2) a:before {background-image: url("../../rimg/common/icon_gnav02.svg");}
.p-gnav__menu li:nth-last-child(1) a:before {background-image: url("../../rimg/common/icon_gnav03.svg");}
.p-gnav__menu li a:after {
	content: "";
	display: block;
	width: 7px;
	height: 13px;
	background: url("../../rimg/common/icon_angle-right03.svg") no-repeat 0 0 / 7px 13px;
	position: absolute;
	right: 7px;
}
.p-gnav__banner {
	 margin: 30px 46px 20px;
}
.p-gnav__banner li {
	margin-bottom: 20px;
}

.p-gnav.is-previousFlightSelection .p-gnav__menu li a::before{
	display: none;
}
.p-gnav.is-previousFlightSelection .p-gnav__menu li a{
	padding: 18px 0 19px;
}
.p-gnav.is-previousFlightSelection .p-gnav__menu li.is-sub a{
	padding: 13px 0;
}
@media screen and (max-width:960px){
	.l-gnav {
		width: 325px;
		height: 100%!important;
		top: 106px;
	}
	.p-gnav__menu {
		 margin: 0 20px 20px;
	}
	.p-gnav__head{
		margin: 0 20px;
	}
	.p-gnav__banner {
		 margin: 30px 21px 20px;
	}
	.p-gnav__banner li {
		margin-bottom: 20px;
	}
}
@media screen and (max-width:360px){
	.l-gnav {
		width: 300px;
	}
	.p-gnav__menu li a:before {
		margin-right: 10px;
	}
}

/* ----------------------------------------

overlay

---------------------------------------- */
.l-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 8;
	background: rgba(0, 0, 0, .2);
	display: none;
}


/* noscript
------------------------------- */
#noscript {
	margin-bottom: 15px;
	padding: 0.5em 1em;
	border: 2px solid #ccc;
	color: #333;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* ----------------------------------------

content

---------------------------------------- */
.l-content {
	position: relative;
	z-index: 1;
}
.l-content--52{
	margin-left: auto;
	margin-right: auto;
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
	max-width: 1220px;
	padding: 0 30px;
}
@media screen and (max-width:960px){
	.l-content--52{
		margin-top: 20px;
		padding: 0 0 40px 0;
	}
}

/* topicPath
------------------------------- */
.p-topicPath {
	padding: 20px 40px 0;
	display: flex;
	flex-wrap: wrap;
}
.p-topicPath li {
	font-size: 1.4rem;
}
.p-topicPath li:after {
	content: "〉";
	display: inline-block;
	margin: 0 0 0 10px;
}
.p-topicPath li:last-of-type:after {
	display: none;
}
.p-topicPath li a {
	border-bottom: 1px solid #333;
}
.p-topicPath li a:hover {
	border-color: transparent;
}
@media screen and (max-width:960px){
	.p-topicPath {
		padding: 10px 20px 0;
	}
	.p-topicPath li {
		font-size: 1.2rem;
	}
}

/* p-pageTtl01
------------------------------- */
.p-pageTtl01 {
	text-align: center;
	margin: 40px 40px 30px!important;
}
@media screen and (max-width:960px){
	.p-pageTtl01 {
		margin: 15px 0!important;
	}
}

/* ----------------------------------------

content - main

---------------------------------------- */
.l-main {
	margin-left: auto;
	margin-right: auto;
}
/* .l-main > *{
	max-width: 1080px;
	margin-left: auto;
	margin-right: auto;
} */

.l-main--02 {
	padding-bottom: 80px;
}
.l-main--03 {
	width: calc(880 / 1280 * 100%);
}
@media screen and (max-width:960px){
	.l-main {
		padding-left: 20px;
		padding-right: 20px;
	}
	.l-main--02 {
		padding: 0 20px 76px;
	}
	.l-main--03 {
		width: 100%;
		margin-left: auto;
	}
}

/* ----------------------------------------

content - aside

---------------------------------------- */
.l-aside {
	width: calc(240.5 / 1280 * 100%);
	margin-left: calc(80 / 1280 * 100%);
}

.l-aside_linklist {
	padding-bottom: 37px;
	margin-bottom: 38px;
	border-bottom: 1px solid #C8C8C8;
}

.l-aside_linklist .item a{
	display: block;
	background-color: #E6E6E6;
	padding: 16.5px 30px;
	border-radius: 8px;
	margin-bottom: 20px;
	position: relative;
}
.l-aside_linklist .item.is-booking a{
	background-color: #14C864;
	color: #fff;
}

.l-aside_linklist .item:nth-last-child(1) a{
	margin-bottom: 0;
}

.l-aside_linklist .item a::after{
	content: "";
	width: 9px;
	height: 17px;
	background: url(../../rimg/common/icon_angle-right01.svg) no-repeat center center / 9px 17px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
}
.l-aside_linklist .item.is-booking a::after{
	background: url(../../rimg/common/icon_angle-right05.svg) no-repeat center center / 9px 17px;
}

/* ----------------------------------------

footer

---------------------------------------- */

.l-footer {
	margin-top: 90px;
	background: #fff;
}
.l-previousFlight .l-footer{
	margin-top: 60px;
}
.p-footer__nav {
	position: relative;
	background: #F5F5F5;
}
.p-footerNav__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	padding: 20px 30px;
	font-size: 1.6rem;
}
.p-footerNav__list li:before {
	display: inline-block;
	content: "｜";
	color: #646464;
	padding: 0 13px;
	vertical-align: -1px;
}
.p-footerNav__list a {
	letter-spacing: .08em;
	color: #333;
	
}
.p-footer__copy {
	text-align: center;
	font-size: 1.4rem;
	color: #646464;
	letter-spacing: .08em;
	padding: 12px 30px 14px;
	line-height: 1;
}
@media screen and (max-width:960px){
	.l-previousFlight .l-footer{
		display: none;
	}
	.l-footer {
		margin-top: 40px;
	}
	.p-footerNav__list {
		padding: 5px 20px;
		display: block;
	}
	.p-footerNav__list li:before {
		display: none;
	}
	.p-footerNav__list li {
		border-bottom: 1px solid #C8C8C8;
	}
	.p-footerNav__list li:last-of-type {
		border: none;
	}
	.p-footerNav__list a {
		height: 48px;
		line-height: 48px;
		display: block;
	}
	.p-footer__copy {
		font-size: 1.2rem;
		padding: 15px 20px 16px;
	}
}

/* ----------------------------------------

pagetop

---------------------------------------- */
.l-pagetop {
	z-index: 5;
	position: fixed;
	display: block;
	right: 40px;
	bottom: 40px;
	opacity: 0;
	pointer-events: none;
	transition: .1s;
}
.l-pagetop.is-active {
	opacity: 1;
	pointer-events:auto;
}
@media screen and (min-width:961px){
	.l-pagetop:hover {
		opacity: .5;
	}
}
@media screen and (max-width:960px){
	.l-pagetop {
		right: 16px;
		bottom: 16px;
	}
	.l-pagetop img {
		width: 44px;
		height: 44px;
	}
}

/* ----------------------------------------

clearfix

---------------------------------------- */

/* Modern Browsers
------------------------------- */
.xxx:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: ".";
	line-height: 0;
}

/* Legacy IE
------------------------------- */
.xxx {
	*zoom: 1;
}