@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

.contents {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
	background-color: #fff;
	-webkit-text-size-adjust: none;
	
	& a {
		text-decoration: none;
		color: inherit;
		&:hover {
			opacity: 0.8;
			transition: all 0.6s ease;
		}
	}
	& .inner {
		width: 992px;
		margin: 0 auto;
	}
	& img {
		max-width: 100%;
		vertical-align: bottom;
	}
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 600px;
	text-align: center;
    position: relative;
	
	& .title {
		position: absolute;
		right: 0;
		left: 0;
		top: 100px;
		z-index: 2;
	}
	& .lead {
		position: absolute;
		right: 0;
		left: 0;
		top: 420px;
		z-index: 2;
		text-align: center;
		font-size: 17px;
		line-height: 1.5em;
		color: #fff;
		text-shadow:1px 1px 2px #000, -1px -1px 2px #000,
				  -1px 1px 2px #000, 1px -1px 2px #000,
				  0px 1px 2px #000,  0-1px 2px #000,
				  -1px 0 2px #000, 1px 0 2px #000;
	}
}
.fade-slider {
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
	
	& span {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		opacity: 0;
		animation: bgAnime 25s infinite;
		
		&.slider-1 {background-image: url("../img/main-slider-1.jpg");}
		&.slider-2 {background-image: url("../img/main-slider-2.jpg"); animation-delay: 5s;}
		&.slider-3 {background-image: url("../img/main-slider-3.jpg"); animation-delay: 10s;}
		&.slider-4 {background-image: url("../img/main-slider-4.jpg"); animation-delay: 15s;}
		&.slider-5 {background-image: url("../img/main-slider-5.jpg"); animation-delay: 20s;}
	}
}
@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}

/*------------------------------------------------
	ナビ
--------------------------------------------------*/
#navi {
	width: 100%;
    background: url("../img/navi-bg.jpg");
	padding: 15px 0;
	
	& ul {
		width: 992px;
		margin: 0 auto;
		text-align: center;
		display: flex;
		justify-content: center;
		
		& li {
			text-align: center;
			width: 160px;
			height: 90px;
			margin: 0 10px;
			
			& a {
				display:block;
				width: 100%;
				height: 100%;
				transition: all 0.5s;
				&:hover {
					transform: translate(0px,-3px);
				}
			}
		}
	}
	&.fixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		box-shadow:0px 1px 2px 0px rgba(0,0,0,0.1);
		padding: 0;
	}
}
.fix-navi:has(.fixed) {
	height: 90px;
}
/*------------------------------------------------
	パスポート
--------------------------------------------------*/
#passport {
    width: 100%;
    padding: 60px 0 80px;
    background-image: url("../img/ppt-bg-top.png"),url("../img/ppt-bg-bottom.png"),url("../img/ppt-bg.png");
    background-repeat: no-repeat,no-repeat,repeat;
    background-position: top center,bottom center,top left;
	
	& h2 {
		text-align: center;
		margin-bottom: 35px;
	}
	& .text1 {
		margin-bottom: 25px;
		font-size: 20px;
		line-height: 1.7em;
		text-align: center;
		font-weight: 700;
	}
	& .text2 {
		width: 940px;
		margin: 0 auto 20px;
		font-size: 16px;
		line-height: 1.5em;
		padding: 5px 15px;
		border: solid 1px #e9e1cf;
		background: #fff url("../img/icon_passport.png") no-repeat left 10px center / 80px;
		padding-left: 100px;
		
		& span {
			font-weight: 700;
			font-size: 1.1em;
			color: #ff5b28;
		}
	}
	& .ex-text {
		margin-bottom: 20px;
		font-size: 16px;
		font-weight: 700;
		text-align: center;
	}
}

.ppt-list {
	width: 992px;
	margin: 0 auto 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
	& li {
		width: 220px;
		height: 220px;
		overflow: hidden;
		border-radius: 50%;
		position: relative;
		
		& h3 {
			text-align: center;
			color: #fff;
			font-size: 19px;
			line-height: 220px;
			font-weight: 700;
			text-shadow: 1px 1px 3px #000;
			transition: all 0.6s ease;
			position: absolute;
			top: 0;
			right: 0;
			left: 0;
		}
		&:hover h3 {
			display: none;
		}
		& .exp {
			font-size: 15px;
			text-align: center;
			padding: 90px 10px 0 10px;
			color: #fff;
		}
		& .mask {
			width: 100%;
			height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			opacity: 0;
			background-color: rgba(0,0,0,0.4);
			transition:	all 0.6s ease;
		}
		&:hover .mask {
			opacity: 1;
		}
	}
}

#passport .link {
    text-align: center;
    font-size: 18px;
    line-height: 2.6em;
	
	& a {
		display: inline-block;
		background-color: #ff5b28;
		color: #fff;
		text-decoration: none;
		padding: 0 50px; 
		border-radius: 1.3em;
		&::after {
			font-family: "Font Awesome 5 Free";
			font-weight: bold;
			content: "\f105";
			margin-left: 10px;
		}
	}
}
/*------------------------------------------------
	MAP
--------------------------------------------------*/
#map {
    width: 100%;
    padding: 80px 0;
    background-color: #efefef;
	& h2 {
		width: 992px;
		height: 80px;
		margin: 0 auto 20px;
		text-align: center;
		background: url("../img/map-title-bg.png") no-repeat right bottom;
	}
	& .map-box {
		width: 992px;
		margin: 0 auto;
		background: url("../img/map/map-pc.png") no-repeat;
		& .detailBox {
			width: 992px;
			height: 600px;
			position: relative;
		}
		& .areaList {
			width: 560px;
			height: 100%;
			& .btn span {
				display: inline-block;
				background: #4f4b49;
				font-size: 14px;
				line-height: 1;
				padding: 5px;
				color: #fff;
				cursor: pointer;
				transition: all 0.6s ease;
			}
			& .btn.active span, #map .map-box .areaList .btn:hover span {
				background: #00919f;
			}
			& .btn span::after {
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: "\f0da";
				padding-left: 4px;
			}
		}
	}
}

/* //// ↓ボタン位置↓ //// */
#map .map-box .areaList .btn {
    position: absolute;
}
#map .map-box .areaList .btn.shiretoko {top: 208px;	left: 470px;}
#map .map-box .areaList .btn.akanko {top: 293px; left: 340px;}
#map .map-box .areaList .btn.tokachi {top: 355px; left: 300px;}
#map .map-box .areaList .btn.mashuko {top: 280px; left: 415px;}
#map .map-box .areaList .btn.kushiro {top: 340px; left: 400px;}
#map .map-box .areaList .btn.sounkyo {top: 300px; left: 272px;}
#map .map-box .areaList .btn.kussharo {top: 265px; left: 352px;}
#map .map-box .areaList .btn.kitami {top: 238px; left: 310px;}
#map .map-box .areaList .btn.rausu {top: 237px;	left: 450px;}
#map .map-box .areaList .btn.abashiri {top: 230px; left: 385px;}

/* //// ↓詳細ボックス↓ //// */
#map .map-box .switchConts {
	width: 400px;
	height: 530px;
    position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: #fff;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.3);
}
#map .map-box .switchConts .conts {
	width: 400px;
	height: 530px;
	border: 2px solid #efefef;;
}
#map .map-box .switchConts .conts .img img {
    width: 100%;    
}
#map .map-box .switchConts .conts .text {
	padding: 5px 15px;
}
#map .map-box .switchConts .conts h3 {
    color: #00919f;
	font-size: 28px;
	line-height: 1.5em;
	font-weight: bold;
}
#map .map-box .switchConts .conts .txt1 {
	font-size: 18px;
    font-weight: bold;
	line-height: 1.4em;
	margin-bottom: 5px;
}
#map .map-box .switchConts .conts .txt2 {
	font-size: 14px;
    line-height: 1.5em;
}
/*safariのみに適用（フォント大きくなるバグ用）*/
_::-webkit-full-page-media, _:future, :root #map .map-box .switchConts .conts .txt2 {
	font-size: 13px;
    line-height: 1.5em;
}
_::-webkit-full-page-media, _:future, :root #map .map-box .areaList .btn span {
	font-size: 13px;
}

#map .map-box .switchConts .conts .link {
    position: absolute;
    right: 15px;
    bottom: 15px;
    text-align: center;
    font-size: 13px;
}
#map .map-box .switchConts .conts .link a {
    display: inline-block;
    background-color: #222;
    color: #fff;
    text-decoration: none;
    padding: 3px 15px;    
}
#map .map-box .switchConts .conts .link a:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f105";
    margin-left: 10px;
}
#map .map-box .switchConts .conts .link a:hover {
    background-color: #555;
    transition: all 0.6s ease;
}

/*------------------------------------------------
	モデルコース
--------------------------------------------------*/
#model {
    width: 100%;
    padding: 80px 0;
	
	& h2 {
		text-align: center;
		margin-bottom: 50px;
	}
	& .inner {
		width: 992px;
		margin: 0 auto;
	}
	& .disnon {
		display: none;
	}
	& .tab-conts {
		border-width: 5px;
		border-style: solid;
		#course1& {border-color: #009f5d;}
		#course2& {border-color: #3c95c3;}
		#course3& {border-color: #f08333;}
	}
}
#model #tab {
    width: 100%;
    display: flex;
	
	& li {
		width: 100%;
		font-size: 17px;
		padding: 20px 0;
		color: #fff;
		font-weight: bold;
		text-align: center;
		margin: 0 8px;
		border-top-left-radius: 10px;
		border-top-right-radius: 10px;
		display: block;
		cursor: pointer;
		&.select {
			margin-top: -8px;
		}
		&:nth-child(1) {background-color: #009f5d;}
		&:nth-child(2) {background-color: #3c95c3;}
		&:nth-child(3) {background-color: #f08333;}
	}
}

/*------------------------------------------------
	ツアーポイント
--------------------------------------------------*/
#point {
    width: 100%;
    padding: 80px 0 50px;
    background: url(../img/navi-bg.jpg);
	
	& .inner {
		width: 992px;
		margin: 0 auto;
	}
	& h2 {
		text-align: center;
		margin-bottom: 50px;
	}
}
.ttn-list {
    display: flex;
    flex-wrap: wrap;
	justify-content: center;
	
	& li {
		width: 45%;
		background-color: #fff;
		padding: 35px 20px 20px;
		margin: 0 10px 30px;
		position: relative;
	}
	& .num {
		position: absolute;
		top: -23px;
		right: 0;
		left: 0;
		margin: 0 auto;
		width: 50px;
		height: 44px;
		background: url("../img/ttn-num-bg.png") no-repeat;
		background-size: contain;
		color: #fff;
		font-size: 24px;
		font-weight: bold;
		line-height: 44px;
		text-align: center;
	}
	& h3 {
		font-size: 24px;
		font-weight: 700;
		text-align: center;
		margin-bottom: 20px;
		line-height: 1.2em;
		& span {
			background: linear-gradient(transparent 70%, #ffea44 70%);
		}
	}
	& .text {
		font-size: 16px;
		line-height: 1.5em;
	}
	& .small {
		font-size: 14px;
	}
	& .link {
		margin-top: 30px;
		text-align: center;
		font-size: 14px;
		line-height: 2.4em;
		
		& a {
			display: inline-block;
			background-color: #ff5b28;
			color: #fff;
			text-decoration: none;
			padding: 0 20px; 
			border-radius: 1.2em;
			&::after {
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: "\f105";
				margin-left: 10px;
			}
		}
	}
}

/*------------------------------------------------
	アニメーション
--------------------------------------------------*/
/*▼パスポート*/
.ppt-list .fadein {
	opacity : 0;
	transform : translate(0px, 100px);
	transition : all 800ms;
}
.ppt-list .fadein.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}
.ppt-list .fadein:nth-of-type(2)  {
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
}
.ppt-list .fadein:nth-of-type(3)  {
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
}
.ppt-list .fadein:nth-of-type(4)  {
	-moz-transition-delay:600ms;
	-webkit-transition-delay:600ms;
	-o-transition-delay:600ms;
	-ms-transition-delay:600ms;
}

/*▼ツアーポイント*/
.ttn-list .fadein {
	opacity : 0;
	transform : translate(0px, 100px);
	transition : all 800ms;
}
.ttn-list .fadein.scrollin {
	opacity : 1;
	transform : translate(0px, 0px);
}
.ttn-list .fadein:nth-of-type(2),
.ttn-list .fadein:nth-of-type(5){
	-moz-transition-delay:200ms;
	-webkit-transition-delay:200ms;
	-o-transition-delay:200ms;
	-ms-transition-delay:200ms;
}
.ttn-list .fadein:nth-of-type(3) ,
.ttn-list .fadein:nth-of-type(6){
	-moz-transition-delay:400ms;
	-webkit-transition-delay:400ms;
	-o-transition-delay:400ms;
	-ms-transition-delay:400ms;
}

/*------------------------------------------------
	注意事項
--------------------------------------------------*/
#attention {
    width: 100%;
    padding: 50px 0;
	& .inner {
		width: 992px;
		margin: 0 auto;
	}
	& h2 {
		font-size: 18px;
		line-height: 1.6em;
		font-weight: bold;
		border-bottom: solid 1px #333;
		margin-bottom: 20px;
	}
	& h3 {
		font-size: 15px;
		font-weight: bold;
		margin-bottom: 5px;
	}
	& p {
		font-size: 14px;
		margin-bottom: 5px;
	}
	& ul {
		font-size: 13px;
		line-height: 1.5em;
		margin-bottom: 20px;
		
		& li {
			margin-bottom: 3px;
			position: relative;
			padding-left: 17px;
			&::before {
				content: "※";
				position: absolute;
				left: 0;
				top: 0;
			}
		}
	}
	& a {
		color: #00919f;
	}
	& .red {
		color: red;
	}
}

/*------------------------------------------------
	パスポートバナー
--------------------------------------------------*/
#float-bnr.fixed{
    position: fixed;
    top: 100px;
    right: 10px;
    z-index: 100;
}
#float-bnr.none{
    display: none
}

/*------------------------------------------------
	おすすめツアータブ
--------------------------------------------------*/
#tourTabWrap {
	width: 100%;
	
	& h2 {
		text-align: center;
		margin-bottom: 30px;
	}
	& .inner {
		width: 992px;
		margin: 0 auto;
	}
	& .tab {
		width: 100%;
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
		
		& li {
			display: block;
			width: 100%;
			margin: 0 7px;	
			font-size: 16px;
			letter-spacing: 0.1em;
			font-weight: bold;
			color: #00919f;
			background-color: #fff;
			text-align: center;
			cursor: pointer;
			border: solid 2px #00919f;
			transition: ease all 0.3s;
			padding: 15px 0;
			position: relative;
			&.nav_on {
				background-color: #00919f;
				color: #fff;
				border: solid 2px #00919f;
			}
			&:hover {
				background-color: #00919f;
				color: #fff;
			}
			&.nav_on::after {
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: "\f0d7";
				position: absolute;
				bottom: -2px;
				right: 0;
				left: 0;
			}
		}
	}
}

/*------------------------------------------------
	おすすめツアー商品
--------------------------------------------------*/
.areabox{
	display:none;
	background-color: #fff;
}

#tour {
	width: 100%;
	background-color: #fff;
	padding: 80px 0;
	
	& .inner-box {
		width: 992px;
		margin: 0 auto;
	}
	& h3 {
		text-align: center;
		background-color: #00919f;
		color: #fff;
		font-size: 18px;
		line-height: 2.0em;
		margin-bottom: 20px;
	}
	& .outsales-txt {
		text-align: center;
		margin: 30px auto;
		font-size: 16px;
		&:empty {
			display: none
		}
	}
	& .other-link {
		width: 700px;
		margin: 30px auto 0;
		
		& a {
			display: block;
			margin: 0 auto;
			font-size: 17px;
			color: #fff;
			background: #00a0d2;
			text-align: center;
			line-height: 50px;
			border-radius: 25px;
			position: relative;
			
			&::after {
				content: "";
				background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / cover;
				width: 12px;
				height: 40px;
				position: absolute;
				top: 0;
				right: 3%;
				bottom: 0;
				margin: auto;
			}
		}
	}
}

/*------------------------------------------------
	商品部分調整・高さ揃え
--------------------------------------------------*/
.product-list.card-style > li {
	display: flex;
	flex-direction: column;
}
.product-list > li a {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}
.product-list.card-style > li .product-list__item {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.product-list.card-style > li .product-list__item .item-txt__wrapper {
	display: flex;
	flex-direction: column;
}
.product-list.card-style > li .product-list__item .item-photo__wrapper .item-txt__port {
	position: static;
	line-height: 1.3em;
}
.item-txt__point {
	line-height: 1.5em;
	flex-grow: 1;
}
.item-txt__price {
	margin-top: 10px;
}
.item-txt__dep, .item-txt__note {
	line-height: 1.3em;
}
.product-list.card-style > li:empty,
.product-list > li:empty {
    display: none;
}
.product-list .label__wrapper.nopc {
	display: none;
}
.product-list .label__wrapper {
	top: -1px;
}
.product-list__label{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 90px;
}
.product-list.card-style > li .product-list__item .item-photo__wrapper .item-txt__port {
	margin-top: -1px;
}

/*------------------------------------------------
	検索ボックス
--------------------------------------------------*/
#searchArea {
    background-color: #daedff!important;
    background: url("../img/search-bg.jpg") no-repeat bottom center;
	padding: 50px 0;
}
/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
    padding: 100px 0;
    background-color: #efefef;
    text-align: center;
    font-size: 18px;
    line-height: 1.8em;
}