@charset "UTF-8";
body {
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	font-size: 16px;
	color: #000;
}
a {
	transition: .3s;
}
a:link, a:visited {
	color: #0952a4;
}
a:hover {
	opacity: 0.8;
}
/*a:hover img {
	opacity: 0.8;
	filter: progid:DXImageTransform.Microsoft.Alpha(Enabled=1, Style=0, Opacity=80);
}*/
.active {
	opacity: 1;
}
.red {
	color: #FF0000;
}
:root {
	--bblue: #0068b7;
	--bblue10per: #e5f0f8;
	--bblueRGB: 1 104 183;
	--bred: #e70011;
	--bredRGB: 231 0 18;
	--bgrey: #d4d9dd;
	--bgreyRGB: 212 217 221;
	--yellow: #ffff00;
	--yellowRGB: 255 255 0;
	--tblue: #01499e;
}
.yellow {
	color: var(--yellow)
}
.bblue {
	color: var(--bblue);
}
article img {
	width: 100%;
}
section {
	position: relative;
}
section b {
	font-size: 1.2em;
}
section mark {
	color: var(--bblue);
	background: linear-gradient(transparent 48%, var(--yellow) 48% 90%, transparent 90%);
}
.noWrap {
	white-space: nowrap;
}
.breakWord {
	word-break: break-word;
}
.space {
	margin-right: .5em;
}
/*ボタンの非活性用*/
/*.glayLayout {
	position: relative;
}
.glayLayout::before {
	content: "";
	position: absolute;
	width: 102%;
	height: 108%;
	top: -1%;
	left: -1%;
	background: #333333a1;
	z-index: 50;
}*/
.inner {
	max-width: 970px;
	margin: 0 auto;
	padding: 5rem clamp(0.8rem, 0.702rem + 0.49vw, 1rem);
}
.slash::before, .slash::after {
	content: '/';
}
.slash::before {
	display: inline-block;
	transform: scale(-1, 1);
}
/*背景色設定*/
section:nth-of-type(odd) {
	background-color: rgba(var(--yellowRGB)/ .1);
}
section#campain2 {
	background-color: var(--bblue10per);
}
section#accommodationPlan {
	background-color: #fff;
}
/*section:nth-of-type(even) {
	background-color: #FFF;
}*/
/*文字間一括指定*/
section p, .item dl, section h6, .detai ol {
	margin-top: .6em;
}
/*メインタイトル*/
section h3 {
	font-size: 1.7em;
	font-weight: 700;
	text-align: center;
}
section h3 > span {
	display: inline-block;
	color: var(--bblue);
	position: relative;
	padding-bottom: .7rem;
	margin-bottom: 1em;
}
section h3 > span::after {
	content: '';
	border-radius: 2px;
	background: var(--bblue);
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: 2px;
	left: 0;
}
/*他一括指定*/
section h4 {
	font-size: 1.1em;
}
.midPoint li {
	text-indent: -1em;
	margin-left: 1em;
}
.midPoint li::before {
	content: '・';
}
.folio li {
	text-indent: -2.5em;
	margin-left: 2em;
}
.folio li::before {
	right: calc(100% + 0.5rem); /* 0.5remは連番とテキストとの余白 */
	content: "（"counter(list-item) "）";
}
.step {
	padding: 0 .3em .1em;
	background: var(--bblue);
	color: #fff;
	border-radius: 5px;
	margin-right: .4em;
	font-size: 1.3em;
	line-height: 1.5;
	vertical-align: text-bottom;
}
.campain mark {
	font-size: 1.7em;
	font-weight: 600;
}
.campain b {
	font-size: 1.7em;
}
.campain rt {
	font-size: .3em;
}
.campain sup {
	font-size: .5em;
	vertical-align: super;
	left: -2%;
}
.detail h4 {
	text-align: center;
	font-weight: 700;
	position: relative;
	margin: 2.5em 0 .6em;
	;
}
.detail h4 span {
	display: inline-block;
	padding: 0 .6em;
	font-size: 1.2em;
	background-color: #fff;
	position: relative;
	z-index: 2;
}
.detail h4::after {
	content: '';
	border-radius: 2px;
	background: var(--bblue);
	width: 100%;
	height: 2px;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 0;
}
section summary {
	background: var(--bblue);
	font-weight: 700;
	color: #fff;
	padding: .2em .5em .2em .5em;
	width: max-content;
	margin-top: .6em;
	cursor: pointer;
	list-style-type: none;
}
section summary::marker {
	content: "";
}
section summary::-webkit-details-marker { /* Safariで表示されるデフォルトの三角形アイコンを消徐 */
	display: none;
}
section summary::before {
	content: "▶";
	display: inline-block;
	transform: rotate(0deg);
	transition: all .4s;
}
section details::details-content {
	interpolate-size: allow-keywords;
	height: 0;
	opacity: 0;
	overflow: clip;
	transition: all .4s allow-discrete;
}
section details[open]::details-content {
	opacity: 1;
	height: auto;
}
section details[open] summary::before {
	transform: rotate(90deg);
}
@supports not (interpolate-size: allow-keywords) { /* height:0→autoへのアニメーションが対応していない場合は、固定値にアニメーションさせる */
	section details[open]::details-content {
		height: 330px;
		overflow-y: scroll;
	}
}
.unit {
	background: #fff;
	border: solid #666 2px;
	margin: .5em;
}
.unit h5 {
	background: #666;
	color: #fff;
	font-weight: 600;
	text-align: center;
	padding: .2em;
}
.unit ul {
	padding: .2em;
}
.unit + p {
	padding: .2em .6em;
	background-color: #fff;
}
/*ボタン共通*/
a.Btn {
	color: #fff;
	text-align: center;
	position: relative;
	display: block;
	font-size: 1.3em;
	font-weight: 500;
	padding: .5rem .8rem .5rem 2rem;
	background: var(--bred);
	transition: all .2s;
	filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
	/*box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, .6);*/
	transform: translate(0, 0);
}
a.Btn:hover {
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.7));
	transform: translate(2px, 2px);
}
a.Btn::after {
	content: "＞";
	position: absolute;
	top: 50%;
	left: 1rem;
	transform: translateY(-50%);
}
/*キャンペーン情報#overview*/
#overview h3 {
	padding: 1px 1em;
	background-color: var(--bred);
	color: #fff;
	border-radius: 28px;
	width: max-content;
	margin: 0 auto -.9em;
	position: relative;
	z-index: 1;
}
#overview h4 {
	text-align: center;
	font-size: 1.3em;
	font-weight: 600;
}
#overview h3 + div {
	font-size: clamp(0.875rem, 0.567rem + 1.54vw, 1.5rem);
	line-height: 1.7;
	text-align: center;
	background: #fff;
	padding: 3rem .3rem 2rem;
	border: solid var(--bred) 3px;
	border-radius: 5px;
}
.pointPR {
	display: inline-block;
	margin: 0 .5em;
}
.campain2Btn a {
	color: #fff;
	background: var(--tblue);
	display: block;
	/*font-size: clamp(1.125rem, 0.756rem + 1.85vw, 1.875rem);*/
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.7;
	text-align: center;
	padding: .1em 1em 1em 1em;
	transition: all .2s;
	margin-top: 1em;
	border-radius: 5px;
	filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.7));
	transform: translate(0, 0);
}
.campain2Btn a:hover {
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.7));
	transform: translate(2px, 2px);
}
.campain2Btn a div {
	background: #fff;
	color: #000;
	padding: .5em 1em 1em;
	margin-top: .6em;
}
.campain2Btn b {
	font-size: 1.3em;
}
.induction {
	background: var(--tblue);
	color: #fff;
	font-size: 1.1em;
	max-width: 300px;
	margin: .8em auto 0;
	border-radius: 16px;
}
/*お申込みの流れ1#process*/
.processList {
	display: flex;
	flex-wrap: wrap;
	column-gap: 2.5rem;
	margin: 0 2rem 2rem;
}
.processList dl {
	flex: auto;
	position: relative;
	margin-top: 2.5rem;
	border: var(--bblue) solid 3px;
	border-radius: 5px;
	background-color: var(--bblue10per);
	text-align: center;
	line-height: 1.8;
}
.processList dt {
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	background: var(--bblue);
	border-radius: 5px;
	padding: .2rem .5rem .3rem;
	position: absolute;
	top: -1.5rem;
	left: -20px;
}
.processList dt:after {
	content: "";
	border: solid transparent;
	border-width: 8px;
	border-top-color: var(--bblue);
	position: absolute;
	top: calc(100% - 2px);
	left: 50%;
	transform: translateX(-50%);
}
.processList dd a {
	display: block;
	padding: 1.2rem .9rem;
	color: var(--bblue);
	font-size: 1.2rem;
	font-weight: 700;
}
/*WESTERポイント付与について1#point*/
/*お申込み1#apply*/
#apply .inner > div {
	padding-top: 3.5em;
}
#apply h4 {
	display: flex;
}
#apply h4 b {
	font-size: 1.2em;
	font-weight: 600;
	color: #fff;
	background: var(--bblue);
	border-radius: 5px 5px 0 0;
	padding: 0 .5em;
	height: auto;
	display: grid;
	align-items: center;
}
#apply h4 span {
	display: block;
	color: var(--bblue);
	font-size: 1.35em;
	font-weight: 600;
	padding: 0 0 .1em .3em;
}
#apply h4 + div {
	border: var(--bblue) solid 3px;
	border-radius: 0 5px 5px 5px;
	background: var(--bblue10per);
	padding: clamp(0.875rem, 0.321rem + 2.77vw, 2rem);
}
#apply p {
	font-size: 1.3em;
	font-weight: 600;
	color: #ff0000;
	margin-top: 0;
}
.item {
	position: relative;
}
.itemLeft, .itemRight {
	position: absolute;
	width: 45%;
	bottom: 10.1%;
	filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.8));
	transform: translate(0, 0);
	transform-origin: bottom;
	transition: all .2s;
}
.itemLeft {
	left: 4%;
}
.itemRight {
	right: 4.5%;
}
a.itemLeft:hover, a.itemRight:hover {
	opacity: 1;
	filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.8));
	transform: translate(2px, 2px);
}
/*キャンペーン情報2#campain2*/
#campain2 .inner > div {
	background: #fff;
	padding: clamp(0.8rem, 0.209rem + 2.95vw, 2rem) clamp(0.8rem, 0.209rem + 2.95vw, 2rem) 3em;
}
#campain2 h3 {
	color: var(--yellow);
	padding: .5rem .8rem .5rem 2rem;
	background: var(--tblue);
	margin: 0 auto .8em;
}
.day {
	font-size: .8em;
}
#campain2 .campain {
	font-size: clamp(0.875rem, 0.567rem + 1.54vw, 1.5rem);
	text-align: center;
	margin-bottom: 2em;
}
#campain2 h3 + p {
	line-height: 2.2;
}
#campain2 .step {
	font-size: 1em;
	margin: 0 .1em;
}
#campain2 .step sup {
	left: 0;
}
.Btn3 {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	margin: .5em 0 2em;
	gap: 1.5em;
}
.Btn3 a {
	background: var(--tblue);
}
.JRplan {
	text-align: center;
	color: var(--tblue);
	font-size: 1.3em;
	font-weight: 600;
}
/*宿泊プラン#accommodationPlan*/
#accommodationPlan h3 {
	padding: 1px 1em;
	background-color: var(--yellow);
	color: var(--bblue);
	border-radius: 28px;
	box-shadow: 0px 4px 0px 1px var(--bblue);
	width: clamp(240px, 80%, 300px);
	margin: 0 auto -.9em;
	position: relative;
	z-index: 1;
}
#accommodationPlan h3 + div {
	line-height: 1.7;
	text-align: center;
	border: solid var(--yellow) 3px;
	border-radius: 5px;
	background: var(--bblue10per);
	padding: 3rem clamp(0.875rem, 0.321rem + 2.77vw, 2rem) 2rem;
	box-shadow: 0px 4px 0px 1px var(--bblue);
}
#accommodationPlan h4 {
	text-align: center;
	font-weight: 700;
	font-size: 1.5em;
	margin-bottom: 1em;
}
/*ナビゲーション*/
article nav {
	background: #fff;
	color: var(--bblue);
	/*position: sticky;*/
	top: 0;
	z-index: 500;
	max-width: max-content;
	margin: 0 auto;
	padding: .5em;
	line-height: 1.5;
}
article nav a:link {
	color: var(--bblue);
	transition: .2s;
}
article nav a:hover {
	opacity: .5;
}
@media screen and (max-width: 759.9px) {
	.spnone {
		display: none !important;
	}
	article nav, section {
		font-size: 14px;
		line-height: 1.4;
	}
	/*メインビジュアル*/
	.titlePc {
		display: none !important;
	}
	/*	以下削除不可====================================================*/
	/*news*/
	#newsImportant {
		margin: 5px;
		display: flex;
		font-size: 11px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 2px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 5px 3px 5px 12px;
		position: relative;
		font-size: 1.1em;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	}
	#newsImportant li:nth-of-type(n+2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	}
	/*footer*/
	#footer {
		background-color: #F0F5FA;
	}
	#footer .inner {
		width: 96%;
		margin: 0 auto;
		padding: 2% 2%;
	}
	#footer .inner ul {
		font-size: 11px;
		line-height: 1.4;
		text-align: left;
	}
	#footer .inner ul li {
		display: inline-block;
		width: 46%;
		padding: 2% 0;
	}
	#footer .inner ul li:last-child {
		border-right: none;
	}
	#footer .copy {
		background-color: #0952a4;
		color: #FFFFFF;
		font-size: 9px;
		text-align: center;
		padding: 2% 0;
	}
	/*pagetop*/
	#pagetop {
		display: none;
		position: fixed;
		right: 10px;
		bottom: 10px;
		z-index: 100;
	}
	#pagetop a {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 3em;
		height: 3em;
		background-color: rgba(255, 255, 255, .5);
		border: solid 1px #152a8c;
		border-radius: 50vh;
	}
	#pagetop a::after {
		content: '';
		width: 7px;
		height: 7px;
		border-style: solid;
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #152a8c transparent;
	}
}
@media screen and (min-width: 760px), print {
	.pcnone {
		display: none !important;
	}
	section {
		line-height: 1.6;
	}
	.campain h5 {
		font-size: 1.4rem;
		margin: 3rem 0 -6rem 1.5rem;
		border: double var(--bred) 6px;
	}
	.detail > p {
		text-align: center;
		font-size: 1.1em;
	}
	section summary {
		padding: .2em .5em .2em .5em;
		width: 420px;
		margin: .6em auto 0;
		text-align: center;
	}
	/*メインビジュアル*/
	.titlePc {
		max-width: 970px;
		margin: 0 auto;
	}
	.titleSp {
		display: none !important;
	}
	/*お申込み*/
	.itemLeft, .itemRight {
		filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.8));
	}
	.itemLeft, .itemRight {
		width: 45.5%;
		bottom: 11%;
	}
	.itemLeft {
		left: 3.4%;
	}
	.itemRight {
		right: 3.6%;
	}
	/*以下削除不可==================================================== */
	/*news*/
	#newsImportant {
		width: 100%;
		max-width: 970px;
		margin: 5px auto;
		display: flex;
		font-size: 12px;
		padding: 8px;
	}
	#newsImportant dt {
		width: 72px;
		height: fit-content;
		background: #e62d2d;
		color: #FFF;
		text-align: center;
		border-radius: 3px;
		margin-top: 1px;
		padding: 3px 0;
	}
	#newsImportant dd {
		width: 100%;
		padding: 0 10px;
	}
	#newsImportant li {
		padding: 3px 3px 3px 12px;
		position: relative;
		font-size: 13px;
		font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
	}
	#newsImportant li:nth-of-type(n + 2) {
		border-top: 1px dotted #ccc;
	}
	#newsImportant li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		border-left: 6px solid #555555;
		border-right: 0;
		position: absolute;
		top: 7px;
		left: 0;
	}
	/*footer*/
	#footer {
		background-color: #F0F5FA;
	}
	#footer .inner {
		max-width: 990px;
		margin: 0 auto;
		padding: 20px 0;
	}
	#footer .inner ul {
		font-size: 13px;
		line-height: 1.4;
		text-align: center;
	}
	#footer .inner ul li {
		display: inline-block;
		padding: 0 6px;
		border-right: 1px solid #CCC;
	}
	#footer .inner ul li:last-child {
		border-right: none;
	}
	#footer .copy {
		background-color: #0952a4;
		color: #FFFFFF;
		font-size: 12px;
		text-align: center;
		padding: 10px 0;
	}
	/*pagetop*/
	#pagetop {
		display: none;
		position: fixed;
		right: 50px;
		bottom: 50px;
		cursor: pointer;
		z-index: 100;
	}
	#pagetop a {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto;
		width: 80px;
		height: 80px;
		background-color: rgba(255, 255, 255, .5);
		border: solid 1px #152a8c;
		border-radius: 50vh;
	}
	#pagetop a::after {
		content: '';
		width: 7px;
		height: 7px;
		border-style: solid;
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #152a8c transparent;
	}
	#pagetop a:hover {
		background-color: #152a8c;
	}
	#pagetop a:hover::after {
		border-width: 0 6px 9px 6px;
		border-color: transparent transparent #fff transparent;
	}
}
@media screen and (max-width: 280px) { /*Galaxy Fold*/
	body {
		font-size: 14px;
	}
}