@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP');
@import url('https://fonts.googleapis.com/css2?family=Mochiy+Pop+One&display=swap');
/*共通*/
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
#wrapper {
	font-family: 'Noto Sans JP', sans-serif;
}
html {
	scroll-behavior: smooth;
}
a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=80);
}
.red {
	color: #ff0000;
}
:root {
	--gnavy: #0f1d80;
	--gsky: #0392de;
	--gblue: #01459a;
	--gpink: #f10082;
	--grorange: #fee6c2;
	--gorange: #fba834;
	--gyellow: #fffaaf;
	--gsky2: #c2eef7;
	--grey: #444;
	--red: #ff0000;
	--subfont: "Mochiy Pop One", sans-serif;
}
.small {
	font-size: .8em;
}
article img {
	width: 100%;
}
.noWrap {
	white-space: nowrap;
}
section {
	background-color: var(--grorange);
}
article .inner {
	max-width: 970px;
	margin: 0 auto;
	padding: 3em clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 1px;
}
/*ナビゲーション*/
article nav {
	background: var(--gsky);
	text-align: center;
	padding: 2px 0 7px 0;
}
article nav li {
	display: inline-block;
	margin: 5px 5px 0 5px;
}
article nav li a {
	color: var(--gblue) !important;
	display: inline-block;
	background: #fff;
	font-size: clamp(0.75rem, 0.658rem + 0.46vw, 0.938rem);
	font-weight: 700;
	line-height: 1;
	padding: .4em .6em;
	border-radius: 15px;
}
/*ボタン*/
.Btn a {
	margin: .8em 0 0 0;
	color: #fff;
	text-align: center;
	position: relative;
	display: block;
	font-weight: 700;
	padding: .5em .8em .5em .1em;
	background: var(--gpink);
	/* box-shadow: 1px 1px 2px #999; */
	border-radius: 5px;
	font-size: 1.3em;
	transform: translate(0, 0);
	transition: all .2s;
}
.Btn a:hover {
	box-shadow: 0px 0px 0px var(--grey);
	transform: translate(1px, 1px);
}
.Btn a::after {
	content: "";
	border-top: solid 2px;
	border-right: solid 2px;
	width: 9px;
	height: 9px;
	position: absolute;
	top: 50%;
	right: 23px;
	translate: 100% -50%;
	transform: rotate(45deg);
}
ul.midpoint > li, ul.kome > li, ul.square > li {
	line-height: 1.4;
	padding-top: .25em;
	text-indent: -1em;
	margin-left: 1em;
}
ul.kome > li:before {
	content: '※';
}
ul.square > li:before {
	content: '■';
	padding-right: .1em;
}
ul.midpoint > li:before {
	content: '●';
	font-size: .8em;
	padding-right: .1em;
	vertical-align: middle;
}
/*メインタイトル*/
h2.maintitle {
	font-size: 2em;
	text-shadow: -2px -2px 1px #fff, 2px -2px 1px #fff, -2px 2px 1px #fff, 2px 2px 1px #fff;
	font-family: var(--subfont);
	color: var(--gsky);
	text-align: center;
	font-weight: 900;
	margin: 0 auto .8em;
	align-items: center;
	display: flex;
	justify-content: center;
	text-wrap: pretty;
}
h2.maintitle::before {
	margin-right: .5em;
}
h2.maintitle::after {
	margin-left: .5em;
}
h2.maintitle::before, h2.maintitle::after {
	background-color: var(--gsky);
	outline: #fff 2px solid;
	content: "";
	height: .19em;
	width: 1em;
}
/*導入#intro*/
#intro .inner {
	padding: 2em clamp(0.5rem, 0.254rem + 1.23vw, 1rem) 1px;
}
.detailsBox1 {
	background: #fff;
	padding: 1em;
}
.detailsBox1 h2 {
	width: min(210px, 30%);
	margin: 0 0 0 1em;
	float: right;
}
.detailsBox1 div {
	width: 100%;
}
.note1 {
	font-family: var(--subfont);
	color: var(--gblue);
	line-height: 2;
	font-size: 1.18em;
}
#intro .Btn a {
	font-size: 1.2em;
}
@media screen and (min-width: 600px) {
	.detailsBox1 {
		display: flex;
	}
	.detailsBox1 h2 {
		flex-basis: min(210px, 35%);
		order: 1;
	}
	.detailsBox1 div {
		flex-basis: calc(100% - min(210px, 30%));
	}
}
/*Webで簡単リクエストの流れ#process*/
.processList {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin: 0 0 .2em;
}
.processList li {
	flex: 1;
	min-width: 290px;
	position: relative;
	margin: 1em 0 0 .5em;
	background: #fff;
}
.processList h3 {
	line-height: 1.1;
	font-size: 1.3em;
	font-weight: 900;
	color: #fff;
	background: var(--gorange);
	border-radius: 50%;
	padding: 14px 13px 10px;
	position: absolute;
	top: -1.5rem;
	left: -.1em;
	text-align: center;
}
.processList h3:after {
	content: "";
	border: solid transparent;
	border-width: 10px;
	border-top-color: var(--gorange);
	position: absolute;
	bottom: -13%;
	left: 44.5%;
	transform: rotate(50deg);
}
.processList dl {
	padding: 1em;
	font-weight: 700;
}
.processList dt {
	font-weight: 700;
	color: var(--gblue);
	font-size: 1.2em;
	text-align: center;
	margin-bottom: .2em;
}
.processList dd {
	color: var(--gnavy);
	border-top: 2px solid var(--gorange);
	padding-top: .5em;
}
.processList .Btn a {
	font-size: 1em;
	padding: .5em 1em .5em 0;
	margin: .5em 0 0 0;
}
.lum-lightbox-inner img.lum-img {
	max-width: 100%;
}
/*グループ旅コレクションおすすめポイント#suggest1*/
.detailsBox2 {
	background: var(--gorange);
	display: grid;
	padding: clamp(0.438rem, -0.055rem + 2.46vw, 1.438rem) clamp(0.438rem, -0.055rem + 2.46vw, 1.438rem) .5px;
}
.detailsBox2 > li {
	margin: 0 0 clamp(0.438rem, -0.055rem + 2.46vw, 1.438rem) 0;
}
/*おすすめ 宿泊プラン#suggest2*/
.detailsBox3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5em;
}
.detailsBox3 a.zoomLink:hover, .detailsBox3 a.zoomLink:hover img {
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=100);
	cursor: zoom-in;
}
/*お申込みはこちら#apply*/
#apply .inner {
	padding-bottom: 3em;
}
@media screen and (max-width: 759.9px) {
	.spnone {
		display: none !important;
	}
	article {
		font-size: 14px;
		line-height: 1.5;
	}
	/*メインビジュアル*/
	.titlePc {
		display: none !important;
	}
	/*↓↓削除不可*/
	#wrapper {
		line-height: 1.4;
	}
	#dirPathBlock, #anchorLinkBlock {
		font-size: 10px;
		margin: 1% 1% 0 1%;
	}
	#dirPathBlock p, #anchorLinkBlock a {
		font-size: 12px;
	}
	h1 {
		font-size: 12px;
		margin: 0 1%;
	}
	/*↑↑削除不可*/
}
/*760px以上*/
@media screen and (min-width: 760px), print {
	.pcnone {
		display: none !important;
	}
	article {
		line-height: 1.6;
		font-size: 16px;
	}
	h2.maintitle {
		font-size: 2.6em;
	}
	/*メインビジュアル*/
	.titlePc img {
		min-height: 550px;
		object-fit: cover;
		object-position: center;
	}
	.titleSp {
		display: none !important;
	}
	/*↓↓削除不可*/
	#wrapper {
		line-height: 1.231;
	}
	#dirPathBlock, h1, .iframe_end-content_gadget, #anchorLinkBlock {
		width: 100%;
		max-width: 970px;
		min-width: 760px;
		margin: auto;
	}
	/*panlist&back*/
	#dirPathBlock, #anchorLinkBlock {
		width: 100%;
		margin: 10px auto;
		display: block;
		font-size: 12px;
	}
	#dirPathBlock p, #anchorLinkBlock a {
		font-size: 12px;
	}
	h1 {
		font-size: 14px;
		width: auto;
		max-width: 970px;
		margin: 0 auto 5px;
	}
	/*↑↑削除不可*/
}