@charset "UTF-8";

/*全体共通*/
:root, html{ font-size: 10px; } 
*{ box-sizing: border-box; }
body {
  --c-base: #000;
  --c-main: #A58047;
  --ff-main: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", "Meiryo", sans-serif;
  --ff-en: var(--ff-main);

  position: relative;
  width: 100%;
  overflow-x: hidden;
	font-family: var(--ff-main);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.4;
  -webkit-text-size-adjust: 100%;
}
a{
	display: inline-block;
	color: inherit;
	font-weight: inherit;
	transition: opacity .3s;
}
a:hover{
	opacity: .6;
	cursor: pointer;
}
img, svg{
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
select{
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.ff-en{ font-family: var(--ff-en); }
.c-red{ color: #e60012 !important; }
.c-white{ color: #fff !important; }
.c-yellow{ color: #ffff00 !important; }
.c-blue{ color: #3372b9 !important; }
.c-pink{ color: #ff7987 !important; }
.center{ text-align: center !important; }
.ta-l{ text-align: left !important; }
.ta-r{ text-align: right !important; }
.ta-justify{ text-justify: inter-ideograph; text-align: justify; text-align-last: left; }
.bold{ font-weight: bold !important; }
.thin{ font-weight: 100 !important; }
.nowrap{ white-space: nowrap; }
.kerning{ font-feature-settings: "palt"; }

.overflow-ellipsis{
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.under{ border-bottom: 1px solid #888; }
.img-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.img-contain{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}
.d-ib{ display: inline-block !important; }
.d-f{ display: flex !important; }
.justify-center{ display: flex; justify-content: center; }
.hidden{ display: none !important; }

body.userAgent-pc a[href^="tel:"]{
	pointer-events: none;
}

/* PC */
@media (min-width: 900px){
	.tab{ display: none !important; }
	.sp{ display: none !important; }
	.tab-sp{ display: none !important; }

	.pc_pl-0{ padding: 0 !important; }
	.pc_pr-0{ padding: 0 !important; }
}
/* TAB */
@media screen and (max-width: 899px) and (min-width: 551px) {
	.pc{ display: none !important; }
	.sp{ display: none !important; }
	.pc-sp{ display: none !important; }

	.tab_pl-0{ padding: 0 !important; }
	.tab_pr-0{ padding: 0 !important; }
}
/* SP */
@media screen and (max-width: 550px) {
	.pc{ display: none !important; }
	.tab{ display: none !important; }
	.pc-tab{ display: none !important; }

	.sp-pl-0{ padding: 0 !important; }
	.sp-pr-0{ padding: 0 !important; }

	.sp_fs-14{ font-size: 14px !important; }
	.sp_fs-16{ font-size: 16px !important; }
	.sp_fs-18{ font-size: 18px !important; }
}

/* 共通 */
.cntInner,
.cmnInner{
	width: 100%;
	margin: 0 auto;
}
.cmnInner{
	max-width: 833px;
}
.cmnTitle{
	margin-bottom: 30px;
	color: var(--c-main);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 2;
}
.cmnText{
	font-size: 1.8rem;
	line-height: 1.79;
}
.cmnBtn{
	display: block;
	width: 100%;
	max-width: 296px;
	margin: 0 auto;
	padding: 11px 10px;
	border: 1px solid;
	font-size: 2rem;
	letter-spacing: .1em;
	text-align: center;
}
.cmnBtn .icon{
	position: relative;
	display: inline-block;
	width: 30px;
}
.cmnBtn[target="_blank"] .icon{
	height: 16px;
	background: url(../images/sightseeing/icon_blank.svg) right/contain no-repeat;
}
.cmnBtn:not([target="_blank"]) .icon::before,
.cmnBtn:not([target="_blank"]) .icon::after{
	content: "";
	position: absolute;
	left: 21px;
	bottom: 4px;
	width: 2px;
	height: 11px;
	background-color: #000;
	border-radius: 10px;
}
.cmnBtn .icon::before{
	transform: rotate(-44deg);
	transform-origin: bottom right;
}
.cmnBtn .icon::after{
	transform: rotate(44deg);
	transform-origin: bottom left;
}
/* TAB */
@media screen and (max-width: 899px) {
	.cmnTitle{
		margin-bottom: 28px;
	}
}

/* ヘッダー */
#header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 100;
}
#header .cntInner{
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* max-width: 1366px; */
	height: 63px;
}
#header .cntBox{
	display: flex;
	justify-content: flex-end;
	flex-shrink: 2;
	width: 100%;
	padding: 0 8px;
	color: #333;
	font-size: 1.4rem;
	white-space: nowrap;
}
#header .cntBox .item{
	height: 100%;
	padding: 0 12px;
	line-height: 1.1;
}
#header .cntBox .item:not(.current){
	color: var(--c-main);
	font-weight: 600;
	text-decoration: underline;
}
#header .cntBox .item.current{
	cursor: default;
	pointer-events: none;
}
#header .cntBox .item + .item{
	border-left: 1px solid;
}
#header .cntList{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0 20px;
	/* flex-shrink: 0; */
	width: 100%;
	max-width: 600px;
	height: 100%;
	padding: 0 22px 0 15px;
	background: #F7F7F7;
	white-space: nowrap;
}
#header .cntList .tag{
	padding: 3px 6px;
	border: 1px solid;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: .1em;
}
#header .cntList .item{
	display: flex;
}
#header .cntList .item.free .image{
	width: 63px;
	margin-right: 7px;
}
#header .cntList .item.tel .image{
	width: 36px;
	margin-right: 5px;
}
#header .cntList{
	font-size: 2.2rem;
}
#header .cntList .small{
	display: block;
	font-size: 1rem;
}
#headerLogo{
	max-width: 180px;
	margin-left: 22px;
}
/* TAB */
@media screen and (max-width: 899px) {
	#header .cntInner{
		justify-content: center;
	}
}

/* フッター */
#footer .cntInner{
	/* max-width: 1366px; */
	display: flex;
}
#footerNav{
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 45%;
	min-width: 460px;
	padding: 62px 20px;
	background: #F7F7F7;
}
#footerNav .tag{
	margin-bottom: 12px;
	padding: 4px 7px;
	background: var(--c-main);
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: .1em;
}
#footerNav .item{
	display: flex;
	align-items: center;
}
#footerNav .item + .item{
	margin-top: 30px;
}
#footerNav .image{
	width: 105px;
	height: 66px;
	margin-right: 11px;
}
#footerNav .bold{
	display: block;
	margin-top: -2px;
	font-size: 3.6rem;
}
#footerLogo{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 55%;
	text-align: center;
}
#footerLogo .cntImg{
	max-width: 296px;
	margin-bottom: 9px;
}
#footerLogo .cntBtn{
	max-width: 289px;
	margin-top: 21px;
	color: var(--c-main);
}
#copyright{
	display: block;
	padding: 18px 40px;
	background: #000;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
}
/* TAB */
@media screen and (max-width: 899px) {
	#footer{
		padding-bottom: 65px;
	}
	#footer .cntInner{
		display: block;
	}
	#footerNav{
		width: 100%;
		min-width: 0;
		padding: 40px 20px;
	}
	#footerNav .item + .item{
		margin: 0;
	}
	#footerNav .image{
		width: 49px;
		height: 54px;
	}
	#footerLogo{
		width: 100%;
		padding: 40px 20px 60px;
	}
}

/* メインビジュアル */
#mainVisual{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	/* max-width: 1366px; */
	height: 180px;
	margin: 63px auto 0;
	padding: 30px 30px;
	color: #fff;
}
#mainVisual .cntImg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
#mainVisual .cntTitle{
	max-width: 900px;
	width: 100%;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.47;
}
#mainVisual .cntText{
	max-width: 900px;
	width: 100%;
	margin-top: 6px;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}
/* TAB */
@media screen and (max-width: 899px) {
	#mainVisual{
		height: 140px;
	}
	#mainVisual .cntTitle{
		font-size: 3.0rem;
		text-align: center;
	}
	#mainVisual .cntText{
		font-size: 1.6rem;
		text-align: center;
	}
	#mainVisual .cntBtn{
		position: fixed;
		bottom: 0;
		left: 0;
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 7px;
		background: #DBC8AA;
		z-index: 100;
		overflow: hidden;
		color: #000;
		font-size: 1.2rem;
		white-space: nowrap;
	}
	#mainVisual .cntBtn .tag{
		margin-right: 20px;
		padding: 6px 7px;
		border: 1px solid #000;
		font-size: 12px;
		font-weight: 700;
		line-height: 1;
		text-align: center;
	}
	#mainVisual .cntBtn .text{
		text-align: center;
	}
	#mainVisual .cntBtn .image{
		width: 34px;
		margin-right: 12px;
	}
	#mainVisual .cntBtn .bold{
		display: block;
		margin-top: -2px;
		font-size: 2.6rem;
		font-weight: 700;
	}
}
/* SP */
@media screen and (max-width: 550px) {
	#mainVisual{
		height: 102px;
	}
	#mainVisual .cntTitle{
		font-size: 2.4rem;
	}
	#mainVisual .cntText{
		margin-top: 0;
		font-size: 1.4rem;
	}
	#mainVisual .cntBtn .tag{
		margin-right: 5.3vw;
	}
}

/* 観光コース */
#_Sightseeing{
	padding: 0 30px;
}
#_Sightseeing .cntInner{
	max-width: 900px;
	width: 100%;
	margin: 60px auto 144px;
}
#_Sightseeing .cntBox:not(:nth-of-type(1)){
	margin-top: 80px;
}
#_Sightseeing .cntBox-top{
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
#_Sightseeing .cntBox-top .image{
	max-width: 378px;
	width: 42%;
}
#_Sightseeing .cntBox-top .image img{
	aspect-ratio: 378/236;
	object-fit: cover;
}
#_Sightseeing .cntBox-top .texts{
	width: 51%;
}
#_Sightseeing .cntBox-top .tit{
	font-size: 3.4rem;
	font-weight: 700;
	line-height: 1.94;
	margin-bottom: 22px;
}
#_Sightseeing .cntBox-top .underline{
	display: inline-block;
	text-decoration: underline;
  text-decoration-thickness: 8px; 
  text-decoration-color: #AAE4FF;
  text-underline-offset: 12px; 
}
#_Sightseeing .cntBox-top .underline:not(:nth-of-type(1)){
	margin-top: 16px;
}
#_Sightseeing .cntBox-top .txt{
	font-size: 1.8rem;
	line-height: 1.5;
}
#_Sightseeing .cntBox-acd:not(:nth-of-type(1)){
	margin-top: 24px;
}
#_Sightseeing .cntBox-acd .head{
	border: 4px solid #0062BC;
	font-size: 2.4rem;
	font-weight: 700;
	color: #0062BC;
	padding: 15px 53px 15px 22px;
	position: relative;
	transition: all .3s;
	cursor: pointer;
}
#_Sightseeing .cntBox-acd .head::before{
	position: absolute;
	content: "＋";
	width: 24px;
	text-align: center;
	right: 22px;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s;
}
#_Sightseeing .cntBox-acd .box{
	display: none;
	border: 4px solid #0062BC;
	transform: translateY(-4px);
	padding: 48px 30px;
}
#_Sightseeing .cntBox-acd .head.active{
	background: #0062BC;
	color: #fff;
}
#_Sightseeing .cntBox-acd .head.active::before{
	content: "－";
}
/* #_Sightseeing .cntBox-acd.active .box{
	display: block;
} */
#_Sightseeing .cntBox-acd .container{
	display: flex;
	margin-bottom: 45px;
}
#_Sightseeing .cntBox-acd .item.cost{
	max-width: 450px;
	width: 100%;
	padding-right: 20px;
}
#_Sightseeing .cntBox-acd .item .title{
	font-size: 2.8rem;
	font-weight: 700;
	padding-left: 20px;
	margin-bottom: 23px;
	position: relative;
}
#_Sightseeing .cntBox-acd .item.course .title{
	margin-bottom: 34px;
}
#_Sightseeing .cntBox-acd .item .title::before{
	position: absolute;
	content: "";
	height: 38px;
	width: 6px;
	background: #30BDFF;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
#_Sightseeing .cntBox-acd .text{
	font-size: 2.4rem;
}
#_Sightseeing .cntBox-acd .col{
	font-weight: 700;
	color: #E10325;
}
#_Sightseeing .cntBox-acd .place{
	max-width: 804px;
	border: 3px solid #30BDFF;
	border-radius: 6px;
	background: #F2FBFF;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 500;
	padding: 10px 22px;
	position: relative;
}
#_Sightseeing .cntBox-acd .place:not(:nth-of-type(1)){
	margin-top: 28px;
}
#_Sightseeing .cntBox-acd .place:not(:nth-of-type(1))::before{
	position: absolute;
	content: "";
	top: -30px;
	left: 50%;
  width: 2px; 
  height: 28px; 
  background-image: repeating-linear-gradient(to bottom,#0062BC 0 2px, transparent 2px 6px);
}
/* TAB */
@media screen and (max-width: 899px) {
	#_Sightseeing .cntInner{
		margin: 40px auto 60px;
	}
	#_Sightseeing .cntBox:not(:nth-of-type(1)){
		margin-top: 48px;
	}
	#_Sightseeing .cntBox-top{
		flex-direction: column;
		margin-bottom: 24px;
	}
	#_Sightseeing .cntBox-top .image{
		width: 100%;
		margin: 0 auto 25px;
	}
	#_Sightseeing .cntBox-top .image img{
		aspect-ratio: 315/196;
	}
	#_Sightseeing .cntBox-top .texts{
		width: 100%;
	}
	#_Sightseeing .cntBox-top .tit{
		font-size: 2.7rem;
		margin-bottom: 16px;
	}
	#_Sightseeing .cntBox-top .underline{
		text-decoration-thickness: 6px; 
		text-underline-offset: 8px; 
	}
	#_Sightseeing .cntBox-top .underline:not(:nth-of-type(1)){
		margin-top: 10px;
	}
	#_Sightseeing .cntBox-top .txt{
		font-size: 1.6rem;
	}
	#_Sightseeing .cntBox-acd:not(:nth-of-type(1)){
		margin-top: 24px;
	}
	#_Sightseeing .cntBox-acd .head{
		border: 3px solid #0062BC;
		font-size: 2.0rem;
		text-align: center;
		padding: 10px 42px;
	}
	#_Sightseeing .cntBox-acd .head::before{
		width: 19px;
		right: 15px;
	}
	#_Sightseeing .cntBox-acd .box{
		padding: 34px 24px;
	}
	#_Sightseeing .cntBox-acd .container{
		flex-direction: column;
		margin-bottom: 34px;
	}
	#_Sightseeing .cntBox-acd .item.cost{
		max-width: 100%;
		padding-right: 0;
		margin-bottom: 38px;
	}
	#_Sightseeing .cntBox-acd .item .title{
		font-size: 2rem;
		padding-left: 17px;
		margin-bottom: 14px;
	}
	#_Sightseeing .cntBox-acd .item.course .title{
		margin-bottom: 28px;
	}
	#_Sightseeing .cntBox-acd .item .title::before{
		height: 26px;
		width: 4px;
	}
	#_Sightseeing .cntBox-acd .text{
		font-size: 1.8rem;
	}
	#_Sightseeing .cntBox-acd .place{
		font-size: 2.0rem;
		padding: 9px 8px;
	}
	#_Sightseeing .cntBox-acd .place:not(:nth-of-type(1)){
		margin-top: 20px;
	}
	#_Sightseeing .cntBox-acd .place:not(:nth-of-type(1))::before{
		top: -22px;
		height: 20px; 
	}
}
/* SP */
@media screen and (max-width: 550px) {
	#_Sightseeing .cntBox-top .tit{
		font-size: 2.0rem;
	}
}

