/*--------------------------------
対象外
--------------------------------*/
.dummyContents{
	height: 100vh;
}



/*--------------------------------
  2-1 ヘッダー
--------------------------------*/
/*レイアウト*/
.f-header {
	height: 5em;
	box-sizing: border-box;
	border-bottom: 1px solid #E1E1E1;
    background-color: #FFF;
	font-size: 10px;
}
@media screen and (min-width:737px) {
	.f-header {
		height: 8em;
	}
}
.f-header-content-wrap {
	display: flex;
	justify-content: flex-start;
}
@media screen and (min-width:737px) {
	.f-header-content-wrap {
		align-items: center;
		max-width: 100em;/*width: 100em;*/
		margin: 0 auto;
		position: relative;
	}
}
.f-header-global-nav {
	display: none;
}

@media screen and (min-width:880px) {
	.f-header-global-nav {
		display: flex;
		width: calc(100% - 43em);
	}
}
.f-header-sub-content {
	display: none;
}
@media screen and (min-width:737px) {
	.f-header-sub-content {
		display: block;
		width: 8.5em;
		text-align: center;
		margin-left: 1em;
	}
}
/* ロゴ */
.f-logo {
	width: 15em;
	padding: 0.3em 0 0 1em;
	flex-direction: column;
	justify-content: space-between;
}
@media screen and (min-width:737px) {
	.f-logo {
		padding: 0.3em 0 0 0;

	}
}
.f-logo__img {
	/*width: 11.7em;*/
	width: 14em;
	margin-top: 0.6em;
}
.f-logo a{
	display: block;
}

/* 発地プルダウン */
.f-header-departure-wrap {
	flex: 1;
	padding-top: 0.7em;
	position: relative;
	margin-right: 0.2em;
}
@media screen and (min-width:737px) {
	.f-header-departure-wrap {
		/*flex: initial;*/
		flex: 0 1 auto;
		padding-top: 0;
		width: 17em;
		margin-right: 1em;
		margin-left: 1em;
	}
}
.f-header-departure-wrap .f-pulldown__item {
	font-size: 1.6em;
	padding: 0.25em 0.5em;
}
.f-header-departure .f-search-display__title {
	display: none;
}
/*.f-myado .f-header-departure {
	display: none;
}*/
.f-header-departure{
	display: none;
}
.f-mdomtop .f-header-departure,
.f-mintltop .f-header-departure,
.f-top .f-header-departure{
 	display: block;
}


@media screen and (min-width:737px) {
	.f-header-departure .f-search-display__title {
		display: block;
		width: 5em;
	}
}
.f-timeline .f-header-departure{
	display: none;
}
.f-header-departure {
	position: relative;
	z-index: 30;
	max-width: 10em;
	margin: auto;
}
@media screen and (min-width:737px) {
	.f-header-departure {
		max-width: none;
	}
}
.f-header-departure > .f-search-display .f-search-display__input {
	background-image: url('../../img/f-arrow-down-black.svg');
	background-repeat: no-repeat;
	background-position: right 0.5em center;
	border: 1px solid #CCC;
	border-radius: 0.3em;
	text-align: center;
	padding: 0.3em 1em 0.3em 0;
	align-items: center;
}
@media screen and (min-width:737px) {
	.f-header-departure > .f-search-display .f-search-display__input {
		cursor: pointer;
	}
}
.f-input-data {
	width: 100%;
	line-height: 1;
}

/* マイページ・メニューボタン */
.f-head-menu-wrap {
	display: flex;
}
@media screen and (min-width:737px) {
	.f-head-menu-wrap {
		display: none;
	}
}
.f-header .f-search-menu {
	display: none;
	opacity: 0;
	position: absolute;
	z-index: 10;
	background-color: #FFF;
	border-style: solid;
	border-width: 1px;
	top: 100%;
	width: 100%;
	box-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.f-head-login,
.f-head-other-menu {
	position: relative;
	width: 5.2em;
	height: 5em;
	text-align: center;
	color: #FFF;
	letter-spacing: -0.05em;
	white-space: nowrap;
	background-color: #007AEC !important;
}
.f-head-login {
	margin-right: 0.2em;
}

.f-head-icon {
	pointer-events: none;
	padding-top: 0.3em;
}
.f-head-icon-label {
	position: absolute;
	bottom: 0;
	font-size: 1em;
	white-space: nowrap;
	width: 5em;
	text-align: center;
	pointer-events: none;
	padding-bottom: 0.3em;
	color: #FFF;
}
/*ハンバーガーメニュー表示時*/
.f-header.is-menu-open .f-head-other-menu {
	background-color: #404040;
}
.f-header.is-menu-open .f-header-departure {
	display: none;
}

/* 初回アクセス対応 */
body.is-first-time .f-header-departure-wrap .f-overlay,
body.is-first-time .f-header-departure-wrap .f-baloon {
	display: block;
}
.f-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.7;
	z-index: 10;
}
.f-baloon {
	display: none;
	position: absolute;
	background-color: #FFE699;
	z-index: 20;
	padding: 1em;
	white-space: nowrap;
	text-align: center;
	top: calc(100% + 1em);
	left: 50%;
	transform: translate(-50%, 0);
}
.f-baloon p{font-size: 1.5em;}
.f-baloon:before {
	content: "";
	position: absolute;
	top: -2em;
	left: 50%;
	margin-left: -1.5em;
	border: 1em solid transparent;
	border-bottom: 1.5em solid #FFE699;
}
.f-header-departure.is-active + .f-baloon{
	display: none !important;
}
/*グローバルメニュー PCのみ*/
@media screen and (min-width:737px) {
	.f-header-global-nav {
		display: flex;
		justify-content: space-between;
		max-width: 55em;
		flex-grow: 1;
		box-sizing: border-box;
	}
	.f-header-global-nav li{
		flex-grow: 1;
		flex-basis: 20%;
	}
	.f-header-global-nav-link {
		height: 8em;
		padding: 1em 0;
		display: block;
		box-sizing: border-box;
		display: flex;
		align-items: flex-end;
		position: relative;
		justify-content: center;
	}
	.f-header-global-nav-link a{
		height: auto;
		line-height: 1;
	}
	.f-header-nav-japan-tour .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-japan-hotel .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-japan-dp .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-overseas-tour .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-cruise .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-tabi-pad .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-nav-group .f-header-global-nav-img {
		height: 5em;
	}
	.f-header-global-nav-data {
		display: none;
	}
	.f-header-link-wrap {
		padding: 1em;
	}
	.f-header-link-category {
		width: 10em;
		background-image: url('../../../img/f-icon-header-bg.svg');
		background-repeat: no-repeat;
		background-position: right 0.5em center;
		background-size: cover;
	}
	.f-header-link-category .f-header-global-nav-img {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 1em;
		margin: auto;
		width: 6em;
	}
	.f-header-link-wrap,
	.f-header-link-category {
		animation-duration: .2s;
		animation-name: fade-in;
		animation-timing-function: linear;
	}
	.f-header-link {
		display: block;
		margin-bottom: 0.8em;
	}
	.f-header-global-nav-link.is-open:after,.f-header-global-nav-link.is-open:before{
		border: solid transparent;
		content:'';
		height:0;
		width:0;
		pointer-events:none;
		position:absolute;
		bottom:0;
		left:50%;
	}
	.f-header-global-nav-link.is-open:after{
		border-color: rgba(236, 236, 236, 0);
		border-top-width: 6px;
		border-bottom-width: 6px;
		border-left-width: 6px;
		border-right-width: 6px;
		margin-left: -6px;
		border-bottom-color:#ECECEC;
	}
	.f-header-global-nav-link.is-open:before{
		border-color: rgba(224, 224, 224, 0);
		border-top-width: 7px;
		border-bottom-width: 7px;
		border-left-width: 7px;
		border-right-width: 7px;
		margin-left: -7px;
		margin-bottom: 1px;
		border-bottom-color: #E1E1E1;
	}
	.f-header-global-nav-link.is-open + .f-header-global-nav-data {
		display: flex;
		position: absolute;
		width: 100%;
		background-color: #ececec;
		max-width: 100em;/*width: 100em;*/
		left: 0;
		animation-duration: .1s;
		animation-name: accordion;
		animation-timing-function: linear;
		z-index: 10;
		box-shadow: 0.5em 0.5em 0.4em rgba(0,0,0,0.3);
	}
	.f-header-link__item {
		display: inline-block;
		position: relative;
	}
	.f-header-link__item a{
		color: #000000;
		padding: 0.13em 0.8em 0.13em 1.2em;
		/*margin-right: 0.5em;*/
		font-size: 1.5em;
	}
	.f-header-link__item a:hover{
		border-radius: 0.6em;
		background-color: #FFFFFF;
	}
	.f-header-link__item a::before {
		content: "";
		position: absolute;
		width: 0.7em;
		height: 0.7em;
		top: 0.3em;
		left: 0.3em;
		background-repeat: no-repeat;
		background-position: left center;
		border-radius: 50%;
	}
	.f-header-link__item a::after {
		content: "";
		position: absolute;
		width: 0.7em;
		height: 0.7em;
		top: 0.3em;
		left: 0.5em;
		background-image: url("../../img/icon-arrow.svg");
		background-repeat: no-repeat;
		background-position: left center;
	}
	.f-header-nav-japan-tour .f-header-link__item a::before {
		background-color: #e52824;
	}
	.f-header-nav-japan-dp .f-header-link__item a::before {
		background-color: #e52824;
	}
	.f-header-nav-japan-hotel .f-header-link__item a::before {
		background-color: #e52824;
	}
	.f-header-nav-overseas-tour .f-header-link__item a::before {
		background-color: #017aeb;
	}
	.f-header-nav-cruise .f-header-link__item a::before {
		background-color: #2db719;
	}
	.f-header-nav-tabi-pad .f-header-link__item a::before {
		background-color: #333333;
	}
	.f-header-nav-group .f-header-link__item a::before {
		background-color: #00BCD1;
	}
}
/*マイページ・English PCのみ*/
@media screen and (min-width:737px) {
	.f-header-mypage,.f-header-store,.f-header-english {
		background-color: #999999;
		margin-bottom: 2px;
	}
	.f-header-mypage a,.f-header-store a,.f-header-english a  {
		font-size: 1.3em;
		line-height: 1.3;
		color: #FFFFFF;
		display: block;
		padding: 0.133em 0 0.1em;
	}
	.f-header-english{
		background: #00a5bf;
	}
	.f-header-sub-content li:last-child{
		margin-bottom: 0;
	}
}

/*--------------------------------
  2-2 ハンバーガーメニュー
--------------------------------*/
.f-menu {
    overflow: auto;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    transition: .2s ease-in-out;
    transform: translateX(-100%);
    background-color: #FFF;
    -webkit-overflow-scrolling: touch;
	z-index: 10;
}

@media screen and (min-width:737px) {
.f-menu {
	display: none;
}
}



.f-header.is-menu-open .f-menu {
	transform: translateX(0%);
}
.f-menu-title {
	font-weight: bold;
	text-align: center;
	color: #FFF;
	font-size: 1.5em;
	padding: 0.2em 0;
}
.f-menu-japan .f-menu-title {
	background-color: #CE0000;
}
.f-menu-overseas .f-menu-title {
	background-color: #017AED;
}
.f-menu-purpose .f-menu-title {
	background-color: #70AD46;
}
.f-menu-top a,
.f-menu-timeline a {
	display: block;
	text-align: center;
	color: #000000;
	padding: 0.65em 1em 0.65em 0.65em;
	background-repeat: no-repeat;
	background-position: right 0.7em center;
}
.f-menu-top a {
	background-image: url('../../img/f-arrow-right-def.svg');
	font-size: 1.5em;
}
.f-menu-timeline a {
	background-image: url('../../img/f-arrow-right-black.svg');
}


.f-menu-timeline a {
	background-color: #FFE699;
	font-size: 1.5em;
}
.f-menu-guide .f-menu-title,
.f-menu-other .f-menu-title {
	background-color: #676767;
}
.f-menu-list {
	display: flex;
	flex-wrap: wrap;
}
.f-menu-list__item {
	display: flex;
	width: 50%;
	border-right: 1px solid #E1E1E1;
	border-bottom: 1px solid #E1E1E1;
	box-sizing: border-box;
	line-height: 1.2;
	align-items: center;
}

.f-menu-list__item a {
	display: block;
	width: 100%;
	padding: 1em 1em 1em 0.65em;
	color: #000000;
	background-image: url('../../img/f-arrow-right-def.svg');
	background-repeat: no-repeat;
	background-position: right 0.7em center;
	font-size: 1.5em;
}
.f-menu-list__item .f-menu-two-lines {
	padding: 0.5em 1.5em 0.5em 1em;
}
.f-menu-two-lines__main {
	display: block;
	font-size: 0.75em;
	height: 1.5em;
}
.f-menu-two-lines__sub {
	display: block;
	font-size: 0.75em;
}
.f-icon-hamburger span {
	display: block;
	position: absolute;
	width: 21px;
	border-bottom: solid 3px #FFF;
	transition: .2s ease-in-out;
	left: 15px;
}

.f-icon-hamburger span:nth-child(1) {
	top: 11px;
}

.f-icon-hamburger span:nth-child(2) {
	top: 18px;
}

.f-icon-hamburger span:nth-child(3) {
	top: 25px;
}

/* クローズアイコン */
.f-header.is-menu-open .f-head-other-menu span:nth-child(1) {
	top: 18px;
	left: 15px;
	transform: rotate(-45deg);
}
.f-header.is-menu-open .f-head-other-menu span:nth-child(2) {
	display: none;
}
.f-header.is-menu-open .f-head-other-menu span:nth-child(2),
.f-header.is-menu-open .f-head-other-menu span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

.f-scroll-prevent body {
	position: fixed;
	z-index: -1;
	width: 100%;
	height: 100%;
}


/*--------------------------------
  2-3 グローバルナビゲーション
--------------------------------*/
/*レイアウト PCのみ*/
@media screen and (min-width:737px) {
	.f-top-area {
		background-color: #F3F3F3;
		padding: 2em 0 1.5em 0;
	}
	.f-top-area-inner {
		display: flex;
		max-width: 100em;/*width: 100em;*/
		margin: 0 auto;
	}
}
.f-top-nav {
	display: flex;
    flex-wrap: wrap;
	background-color: #F3F3F3;
	padding-bottom: 7px;
    align-content: flex-start;
}
@media screen and (min-width:737px) {
	.f-top-nav {
		width: 55%;
	}
}
.f-col-japan-title-wrap,
.f-col-overseas-title-wrap {
	display: block;
	text-align: center;
	padding: 0.5em 0;
}
.f-col-japan-title-wrap {
	margin-left: 1em;
}
@media screen and (min-width:737px) {
	.f-col-japan-title-wrap {
		background-color: #d81415;
		border-bottom: .3em solid #b70304;
		text-align: left;
		margin-left: 0;
	}
}
.f-col-overseas-title-wrap {
	margin-right: 1em;
}
@media screen and (min-width:737px) {
	.f-col-overseas-title-wrap {
		background-color: #017aed;
		border-bottom: .3em solid #003ada;
		text-align: left;
		margin-right: 0;
	}
}
.f-col-japan-title,
.f-col-overseas-title{
	display: inline-block;
	text-align: center;
	font-size: 1.8em;
	padding-left: 1.3em;
    padding-right: 0.3em;
}
.f-col-japan-title {
	color: #E20A0A;
	background-image: url('../../img/f-icon-japan.svg');
	background-repeat: no-repeat;
	background-position: left center;
}
@media screen and (min-width:737px) {
	.f-col-japan-title {
		padding-left: 0.65em;
		background: none;
		color: #FFFFFF;
		font-weight: bold;
	}
}
.f-col-overseas-title {
	color: #007AEC;
	background-image: url('../../img/f-icon-overseas.svg');
	background-repeat: no-repeat;
	background-position: left center;
}
@media screen and (min-width:737px) {
	.f-col-overseas-title {
		padding-left: 0.65em;
		background: none;
		color: #FFFFFF;
		font-weight: bold;
	}
}
.f-top .f-col-japan {
	width: 60%;
}
@media screen and (min-width:737px) {
	.f-top .f-col-japan {
		margin-right: 1.5em;
		width: calc(59.5% - 4.5em / 2);
	}
}
.f-col-overseas {
	width: 40%;
}
@media screen and (min-width:737px) {
	.f-top .f-col-overseas {
		margin-right: 3em;
		width: calc(40.5% - 4.5em / 2);
	}
}
.f-top-nav-content-wrap {
	display: flex;
	flex-wrap: wrap;
}
@media screen and (min-width:737px) {
	.f-top-nav-content-wrap {
		margin-top: .8em;
	}
}
.f-col-japan .f-top-nav-content-wrap {
	justify-content: flex-end;
}
@media screen and (min-width:737px) {
	.f-col-japan .f-top-nav-content-wrap {
		justify-content: flex-start;
	}
}
.f-top-nav-content {
	position: relative;
	width: calc(50% - 8px);
	display: block;
	max-width: 200px;
	margin: 0 2px 4px 2px;
	line-height: 0.5;
}
.f-col-japan .f-top-nav-content {
	width: calc(33.33% - 8px);
}

@media screen and (min-width:737px) {
	.f-top-nav-content {
		width: calc(50% - 1em / 2);
		width: calc(50% - 0.6em)\9;
		margin: 0;
		margin-bottom: 1em;
	}
	_:-ms-lang(x)::-ms-backdrop, .f-top-nav-content {
		width: calc(50% - 0.6em);
	}
	.f-top-nav-content:first-child,
	.f-top-nav-content:nth-child(3) {
		margin-right: 1em;
	}
	.f-col-japan .f-top-nav-content {
		width: calc(33.33% - 2em / 3);
		margin-right: 1em;
	}
	.f-col-japan .f-top-nav-content:nth-of-type(3n){
		margin-right: 0;
	}	
}


.f-top-nav-content.is-pc {
	display: none;
}
@media screen and (min-width:737px) {
	.f-top-nav-content.is-pc {
		display: block;
	}
}
.f-top-nav-content img {
	width: 100%;
}
@media screen and (min-width:737px) {
	.f-top .f-section-info .f-section-title__sub {
		color: #ebebeb;
	}
}

/*総合トップツーリズムEXPO記載 2025/10/01以降削除*/
.f-top .f-section-info .f-section-content{
    height:  29em !important;
    max-height:  29em !important;
    
}
.tourismEXPO{
    flex-basis: calc(100% - 3em);
    margin-right: 3em;    
}
.tourismEXPO img{
    width: 100%;
    max-width: none;
}
@media screen and (max-width:1000px) {
.f-top .f-section-info .f-section-content{
    height: 28.5vw !important;
    max-height: 28.5vw !important;
}

}
@media screen and (max-width:737px) {
.f-top .f-section-info .f-section-content{
    height: auto !important;
    max-height: none !important;
}
.tourismEXPO{
    flex-basis: calc(100% - 2em);
    margin: 0.5em 1em 0.5em 1.4em;   
}
}


/*--------------------------------
  2-23 gotop
--------------------------------*/
#gotop{display: none;}
#pagetop {
	position: fixed;
	bottom: 1em;
	right: 1em;
	z-index:50;
	width:4em;
	height:4em;
	border-radius:50%;
	overflow:hidden;
	text-align: center;
}
#pagetop a {
	position: relative;
	display:block;
	width:100%;
	height:100%;
	padding:0;
	background-image: none;
	background-color:rgba(119,119,119,0.4);
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;	
}
#pagetop a:before{
	content: "\25B2";
	display: block;
	position: absolute;
	color: #FFF;
	font-size: 2em;
    text-indent: 0;
	left: 50%;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
}
#pagetop a:hover {
	text-decoration: none;
	background-color: #a5a5a5;
}

/*--------------------------------
  2-23 フッター
--------------------------------*/
.f-footer {
	background-color: #676767;
	font-size: 10px;
}
@media screen and (min-width:737px) {
	.f-footer {
		/*min-width: 100em;*/
	}
}
.f-copyright {
	background-color: #4E4E4E;
	color: #FFF;
	text-align: center;
	font-size: 1.2em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
@media screen and (min-width:737px) {
	.f-footer-list-wrap {
		max-width: 100em;/*width: 100em;*/
		margin: 0 auto;
	}
}
.f-footer-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 1em;
}
.f-footer-list__item {
	width: 50%;
	box-sizing: border-box;
	padding: 0.8em 1em 0.8em;
	/*padding: 0.8em 1.5em 0.8em 1em;*/
	line-height: 1.2;
}
@media screen and (min-width:737px) {
	.f-footer-list__item {
		width: auto;
	}
}
.f-footer-list__item a{
	color: #FFF;
	line-height: 1.3;
	font-size: 1.5em;
}
.f-pc-link {
	margin: 0 1em;
	padding: 1em 1.5em 1em 1em;
	border-top: 1px solid #828282;
	border-bottom: 1px solid #828282;
}
@media screen and (min-width:737px) {
	.f-pc-link {
		max-width: 100em;/*width: 100em;*/
		margin: 0 auto;
	}
}
.f-pc-link a {
	color: #FFF;
}
.f-forcia {
	text-align: right;
	margin: 0 1em;
	padding: 1em;
}
@media screen and (min-width:737px) {
	.f-forcia {
		max-width: 100em;/*width: 100em;*/
		margin: 0 auto;
	}
}

