@charset "utf-8";
/* CSS Document */
:root{
	--font-sans: 'Noto Sans JP', serif;
	--content-width-pc: 1104px;
	--content-width-sp: calc(675vw / 7.5);
	--content-width: min(var(--content-width-sp), var(--content-width-pc));
	--font-size-pc: 16px;
	--font-size-sp: calc(28vw / 7.5);
	--default-color-black: #2C2A29;
	--content-color-green: #00aa3f;
	--content-color-navy: #003c79;
	--content-color-yellow: #ffec1a;
	--content-color-red: #cb1d1e;
	--content-color-khaki: #bda72f;
	--bg-color-blue: #dbf8ff;
	--bg-color-grey: #efefef;
}
.nosp {
    display: none
}
.main {
    font-family: var(--font-sans);
	line-height: 1.5;
    font-size: var(--font-size-sp);
    color: var(--default-color-black);
	background-color: var(--bg-color-blue);
	& a {
		text-decoration: none;
	}
    & img {
        width: 100%;
    }
    & .inner {
        width: var(--content-width-sp);
        margin: 0 auto;
    }
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: calc(580vw / 7.5);
	background: url("../img/main-bg-sp.jpg") no-repeat top center;
	background-size: 100%;
	position: relative;
	& .title {
		padding-top: 11vw;
		width: 50vw;
		margin: 0 auto;
	}
}

/*------------------------------------------------
	発地切り替え
--------------------------------------------------*/
.display_selected{
	width: 24vw;
	height: calc(80vw / 7.5);
	padding: calc(10vw / 7.5);
	background: var(--default-color-black);
	font-size: calc(24vw / 7.5);
	font-weight: 700;
	color: #fff;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	&::after {
		content: "";
		display: inline-block;
		width: 5vw;
		height: 5vw;
		background: url(/cmn/icon/icon_arrow_down_white.svg) no-repeat center center / contain;
		position: absolute;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
	}
}
.dep-select-zone{
	display: none;
	width: 100vw;      
	height: 100vh;      
	position: fixed;      
	top: 0;      
	left: 0;
	transition: all .5s;       
	z-index: 50;
	background: rgba(0 0 0 / 80%);
	padding: calc(100vw / 7.5) calc(80vw / 7.5);
	& .dep-select li {
		cursor: default;
		font-size: calc(30vw / 7.5);
		padding: calc(20vw / 7.5);
		text-align: center;
		& a {
			color: #fff;
		}
		&.selected {
			background: #fff;
			& a {
				color: var(--default-color-black);
			}
		}
	}
	& .close-button{
		margin: calc(40vw / 7.5) auto;
		width: 5em;
		padding: calc(10vw / 7.5);
		border: solid 1px #fff;
		font-size: calc(30vw / 7.5);
		color: #FFF;
		text-align: center;
	}
}
/*------------------------------------------------
	共通特典
--------------------------------------------------*/
#cpn {
	width: 100%;
	background-color: #fff;
	padding: 10vw 0;
	text-align: center;
	& h2 {
		display: inline-block;
		color: var(--content-color-green);
		font-size: 6.0vw;
		font-weight: 900;
		background: linear-gradient(transparent 70%, var(--content-color-yellow) 0%);
		margin-bottom: 5vw;
		&::before,&::after {
			content: "";
			display: inline-block;
			width: 6vw;
			height: 9vw;
			background: url("../img/cpn-fukidashi.svg") no-repeat;
			background-size: contain;
			margin: 0 1vw 0 0;
			vertical-align: bottom;
		}
		&::after {
			transform: scaleX(-1);
			margin: 0 0 0 1vw;
		}
	}
	& .ttn-list {
		& li {
			width: 100%;
			height: 20vw;
			margin-bottom: 2vw;
			border: solid 1vw var(--content-color-green);
			border-radius: 8px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			font-size: 4.5vw;
			font-weight: 700;
			text-align: center;
			position: relative;
			& p {
				position: absolute;
				left: 0;
				top: 0;
				width: 14vw;
				height: 14vw;
				background: url("../img/cpn-no-bg.svg") no-repeat left top / contain;
				color: #fff;
				font-family: Roboto, "sans-serif";
				font-size: 6vw;
				text-align: left;
				padding-left: 0.5vw;
			}
			& span {
				display: inline-block;
				background-color: var(--content-color-yellow);
				font-size: 0.8em;
				padding: 0 2vw;
				margin-bottom: 0.5vw;
			}
		}
	}
}

/*------------------------------------------------
	共通見出しタイトル
--------------------------------------------------*/
.title-wrap {
	width: 100%;
	background-color: var(--content-color-green);
	padding: 7vw 5vw;
	margin-bottom: 10vw;
	& .inner {
		position: relative;
	}
	& .fuki {
		text-align: center;
		margin-bottom: 5vw;
		& span {
			display: inline-block;
			padding: 2vw 6vw 2.3vw;
			background-color: #fff;
			font-size: 4.2vw;
			line-height: 1.3;
			font-weight: 700;
			border-radius: 8vw;
			position: relative;
			&::after {
			  content: "";
			  position: absolute;
			  bottom: 0;
			  left: 50%;
			  border-style: solid;
			  border-width: 3vw 2.5vw 0 2.5vw;
			  border-color: #fff transparent transparent;
			  translate: -50% 100%;
			}
		}
	}
	& h2 {
		font-size: 6.0vw;
		font-weight: 900;
		color: var(--content-color-yellow);
		margin-bottom: 3vw;
	}
	& .text {
		width: 55vw;
		font-size: 3.8vw;
		font-weight: 700;
		color: #fff;
	}
	& .note {
		margin-top: 3vw;
		font-size: 3.2vw;
		/*font-weight: 500;*/
		color: #fff;
	}
	& .image {
		position: absolute;
		right: 0;
		&.hotel {top:35vw; width: 33vw;}
		&.bus {top:27vw; width: 33vw;}
		&.omiyage{top: 15vw; width: 38vw; border: solid 2px #fff;}
	}
	& .sarani {
		font-size: 4.6vw;
		font-weight: 700;
		color: #fff;
		padding: 2vw 0 0 18vw;
		margin-bottom: 5vw;
		position: relative;
		& span {
			position: absolute;
			left: 0;
			top: -3vw;
			display: inline-block;
			width: 16vw;
			height: 16vw;
			background: url(../img/hnd-fukidash.svg) no-repeat center center / contain;
			font-size: 4.0vw;
			color: var(--default-color-black);
			text-align: center;
			padding-top: 5vw;
		}
	}
}

/*------------------------------------------------
	ホテル
--------------------------------------------------*/
#hotel {
	width: 100%;
	padding: 0 0 10vw;
	& .inner {
		width: 100%;
	}
}
.hotel-box {
	padding: 10vw 5vw;
	background-color: #fff;
	border-top: solid 1.5vw var(--content-color-navy);
	border-bottom: solid 1.5vw var(--content-color-navy);
	& .ph {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		position: relative;
		& img:nth-of-type(1) {width: 100%;}
		& img:nth-of-type(2) {width: 49.5%; margin-top: 1vw;}
		& img:nth-of-type(3) {width: 49.5%; margin-top: 1vw;}
	}
	& .text {
		margin-bottom: 3vw;
		& dt {
			font-size: 5.6vw;
			font-weight: 700;
			margin: 2vw 0;
		}
		& dd {
			font-size: 3.6vw;
		}
	}
	& .point {
		width: 100%;
		margin-top: 2vw;
		background-color: #fff;
		position: relative;
		border: solid 0.7vw var(--content-color-khaki);
		padding: 1.5vw 1.5vw 1.5vw 13vw;
		&.arrange {
			padding: 1.5vw;
		}
		& img {
			position: absolute;
			left: 1vw;
			top: -1vw;
			width: 10vw;
		}
		& p {
			font-size: 4.0vw;
			line-height: 1.3;
			font-weight: 700;
			color: var(--content-color-red);
			& .note {
				display: block;
				font-size: 3.2vw;
				font-weight: 500;
				color: var(--default-color-black);
			}
		}
	}
}

/*------------------------------------------------
	バスツアー
--------------------------------------------------*/
#bus {
	width: 100%;
	padding: 0 0 10vw;
	& .inner {
		width: 100%;
	}
}
.bus-box {
	padding: 10vw 5vw;
	background-color: #fff;
	border-top: solid 1.5vw var(--content-color-navy);
	border-bottom: solid 1.5vw var(--content-color-navy);
	
	& .bustour-ttl {
		margin-bottom: 2vw;
		& .no {
			display: none;
		}
		& .text {
			font-size: 4.2vw;
			font-weight: 700;
			& span {
				font-size: 0.8em;
				display: block;
				color: var(--content-color-red);
			}
		}
	}
	& .ph-slider {
		width: 100%;
	}
	& .point {
		width: 100%;
		margin-top: 2vw;
		background-color: var(--bg-color-grey);
		position: relative;
		padding: 4vw 3vw 3vw;
		& img {
			position: absolute;
			left: -1vw;
			top: -3vw;
			width: 20vw;
		}
		& .date {
			display: inline-block;
			background-color: var(--content-color-navy);
			color: #fff;
			font-size: 3.6vw;
			padding: 0 2vw;
			margin: 0 0 3vw 18vw;
		}
		& ul {
			font-size: 3.6vw;
			& li {
				position: relative;
				padding-left: 5vw;
				margin-bottom: 1vw;
				& .red {
					color: var(--content-color-red);
				}
				& .f-mini {
					font-size: 0.8em;
				}
				&::before {
					content: "";
                    display: inline-block;
                    width: 4vw;
                    height: 4vw;
                    background: url("../img/icon-check.svg") no-repeat center center / contain;
                    position: absolute;
                    left: 0;
                    top: 0.5vw;
				}
			}
		}
	}
}
/*スライダー調整*/
#bus {
    & .slick-prev, .slick-next {
        top: 48%;
        width: 8vw;
        height: 8vw;
        z-index: 100;
    }
    & .slick-prev {
        left: -4vw;
    } 
    & .slick-next {
        right: -4vw;
    }
	& .slick-prev:before{
		content: "";
		display: inline-block;
		width: 8vw;
		height: 8vw;
		background: #fff url(/cmn/icon/icon_arrow_left.svg) no-repeat center center / contain;
	}
	& .slick-next:before{
		content: "";
		display: inline-block;
		width: 8vw;
		height: 8vw;
		background: #fff url(/cmn/icon/icon_arrow_right.svg) no-repeat center center / contain;
	}
    & .slick-dots li button:before {
        font-size: 2.8vw;
    }
}
/*------------------------------------------------
	ホテル・バス共通タブ
--------------------------------------------------*/
.main {
	& ul[id^="tab"] {
		width: var(--content-width-sp);
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		gap: 1.5%;

		& li {
			width: 100%;
			padding: 4vw 0;
			text-align: center;
			display: block;
			border-top-left-radius: 8px;
			border-top-right-radius: 8px;
			background-color: #135ba5;
			color: #fff;
			font-size: 3.4vw;
			line-height: 1.3;
			font-weight: 500;
			&.select {
				background-color: var(--content-color-navy);
				margin-top: -1vw;
			}
			& span {
				font-size: 1.6em;
				font-weight: 700;
				padding-left: 1vw;
			}
		}
	}
	& .disnon {
		display: none;
	}
}
/*------------------------------------------------
 羽田空港
--------------------------------------------------*/
#haneda {
	width: 100%;
	padding: 0 0 10vw;
	& .product {
		padding: 0;
	}
}

/*------------------------------------------------
　HISオリジナルサービス
--------------------------------------------------*/
#hisservice {
	width: 100%;
	background-color: var(--bg-color-grey);
	padding: 7vw 0 10vw;
	& .inner {
		display: grid;
		grid-template-rows: repeat(4, max-content);
        grid-template-columns: 36% 60%;
        grid-row-gap: 5vw;
		grid-column-gap: 4%;
		place-items: center;
	}
	& h2 {
		grid-row: 1;
        grid-column: 1 / 3;
		margin-bottom: 3vw;
		& span {
			display: inline-block;
			font-size: 5.4vw;
			font-weight: 700;
			padding: 0 1vw 0.5vw;
			border-bottom: solid 2px var(--default-color-black);
			position: relative;
			&::before {
				content: "";
				position: absolute;
				bottom: 0;
				left: 50%;
				border-style: solid;
				border-width: 20px 10px 0 10px;
				border-color: var(--default-color-black) transparent transparent;
				translate: -50% 100%;
				transform: skew(-25deg);
				transform-origin: top;
			}
			&::after {
			  content: "";
			  position: absolute;
			  bottom: 0;
			  left: 50%;
			  border-style: solid;
			  border-width: 15.5px 7.8px 0 7.8px;
			  border-color: var(--bg-color-grey) transparent transparent;
			  translate: -50% 100%;
			  transform: skew(-25deg);
			  transform-origin: top;
			}
		}
	}
	& .ph {
		grid-row: 2;
        grid-column: 1;
	}
	& h3 {
		grid-row: 2;
		grid-column: 2;
		color: var(--content-color-navy);
		font-size: 4.6vw;
		font-weight: 700;
		& span {
			font-size: 0.8em;
			display: block;
		}
	}
	& .text {
		grid-row: 3;
		grid-column: 1 / 3;
	}
	& .btn {
		grid-row: 4;
		grid-column: 1 / 3;
		text-align: center;
		& a {
			width: 84vw;
			display: block;
			background-color: #fff;
			color: inherit;
			padding: 2.5vw 0;
			border-radius: 5vw;
			border: solid 1px var(--default-color-black);
			position: relative;
			font-size: 3.3vw;
			font-weight: 500;
			&::after {
				content: "";
				display: inline-block;
				width: 5vw;
				height: 5vw;
				background: url(/cmn/icon/icon_arrow_right.svg) no-repeat center center / contain;
				position: absolute;
				right: 2vw;
			}
		}
	}
}

/*------------------------------------------------
　ツアー　商品
--------------------------------------------------*/
.area00{
  display: none;
	&.is-display{
	  display: block;
	}
}
.product {
	padding: 10vw 5vw 0;
	& h3 {
		text-align: center;
		margin-bottom: 5vw;
		font-size: 5.6vw;
		line-height: 1.3;
		font-weight: 900;
		&::before {
			content: "";
			width: 8vw;
			height: 8vw;
			display: block;
			margin: 0 auto;
			background: url(/cmn/icon2/travel.svg) no-repeat center center / contain;
			transform: rotate(-45deg);
		}
	}
	& .outsales-txt {
		text-align: center;
		font-size: 3.6vw;
		margin: 4vw auto;
		&:empty {
			display: none
		}
	}
	& .other-link {
		width: 84vw;
		margin: 3vw auto 0;

		& a {
			display: block;
			margin: 0 auto;
			font-size: 3.5vw;
			line-height: 1.3;
			color: #fff;
			background: var(--content-color-navy);
			text-align: center;
			border-radius: 10vw;
			padding: 2.6vw 7vw 3vw 5vw;
			position: relative;
			&::after {
				content: "";
				background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
				width: 7vw;
				height: 7vw;
				position: absolute;
				top: 0;
				right: 2vw;
				bottom: 0;
				margin: auto;
			}
		}
	}
}

/*------------------------------------------------
	商品部分調整・縦積みスタイル
--------------------------------------------------*/
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port {
	position: static;
	padding: calc(3vw /(750 / 100));
	font-size: calc(20vw /(750 / 100));
	font-weight: normal;
	line-height: 1.3;
	padding: 0.5vw;
	margin-top: -1px;/*ios用調整*/
}
.product-list.row-style .item-photo__wrapper {
	border-radius: 0;
}
.product-list.row-style .item-txt__title {
	font-size: calc(28vw /(750 / 100))!important;
	line-height: 1.5;
}
.product-list.row-style .item-txt__point {
	line-height: 1.3;
}
.product-list.row-style .item-txt__price {
	margin-top: 1vw;
}
.product-list.row-style .label__wrapper.nosp {
	display: none;
}
.product-list.row-style .label__wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	position: static;
}
.item-label::after {
	background-size: contain;	
}
/*------------------------------------------------
	おすすめバナー
--------------------------------------------------*/
#recobnr {
	width: 100%;
	background-color: #fff;
	padding: 10vw 0;
	
	& h2 {
		text-align: center;
		font-size: 5.0vw;
		font-weight: 700;
		line-height: 1.0;
		margin-bottom: 5vw;
	}
	
	& .bnr-list {
		width: var(--content-width-sp);
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		
		& li {
			width: 46%;
			margin: 0 2% 3.5vw;
			& img {
				width: 100%;
			}
			&:empty {
				display: none;
			}
		}
	}
	&:has(.area00.is-display ul li:nth-child(1):empty) {
		display: none;
	}
}

/*------------------------------------------------
	検索ボックス調整
--------------------------------------------------*/
#searchArea .inner {
	width: 100%;
}
@media (orientation: landscape) {
	#searchArea {
		padding: 40px 0;
	}
}
.rn-searchMod__inputField, .rn-searchMod__select {
	font-size: 14px!important;
	color: #222;
}

/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
    padding: 20vw 0;
    background-color: var(--bg-color-blue);
    text-align: center;
    font-size: 4.0vw;
    line-height: 1.8;
}

/*----------------------------------------------
ページトップ
------------------------------------------------*/
.goTop {
	position: fixed;
    bottom: 10px;
    right: 10px;
    transform: translateZ(0);
    z-index: 200;
	& a {
		display: flex;
		cursor: pointer;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background-color: rgba(105, 113, 128, .5);
		width: 48px;
		height: 48px;
		& img {
				width: 24px;
				height: 24px;
		}
	}
}