@charset "utf-8";
:root{
	--default-color-black: #2c2a29;
    --content-width-pc: 1104px;
	--content-color-orange: #ff7200;
	--content-color-pink: #e85085;
	--content-color-pink-d: #DB2E6B;
	--content-color-navy: #02117f;	
	--content-color-blue: #2674ce;
	--content-color-green: #009446;
	--content-color-red: #df0d00;
	--content-border_yellow: linear-gradient(transparent 70%, #fff951 0%);
}
html, body {
	overflow-x: hidden;
	width: 100%;
}
.nopc {
  display: none
}
.main {
	-webkit-text-size-adjust: none;
}
.contents {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	color: var(--default-color-black);
	a {
		text-decoration: none;
		&:hover {
			opacity: 0.8;
			transition: all 0.6s ease;
		}
	}
	img {
        max-width: 100%;
		height: auto;
    }
	.inner {
        width: var(--content-width-pc);
		max-width: 100%;
        margin: 0 auto;
	}
}

/*-----------------------------------------
メインビジュアル
-------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 800px;
	overflow: hidden;
	position: relative;
	text-align: center;
	.bg-img {
		/* position: absolute; から fixed に変更(iPadバグのため) */
		position: fixed; 
		top: 0;
		left: 0;
		width: 100%;
		height: 900px;
		z-index: -1;
		background-position: center;
		opacity: 0;
		animation: fade-animation 12s infinite;
	}
	.img1 { background-image: url('../images/main-bg1.jpg'); animation-delay: 0s;}
	.img2 { background-image: url('../images/main-bg2.jpg'); animation-delay: 4s;}
	.img3 { background-image: url('../images/main-bg3.jpg'); animation-delay: 8s;}

	.title {
		position: absolute;
		width: 800px;
		top: 90px;
		right: 0;
		left: 0;
		margin: 0 auto;
		z-index: 10;
	}
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 390px;
		background: url("../images/main-bottom-pc.png") no-repeat bottom center;
		position: absolute;
		bottom: 0;
	}
}
/* フェードアニメーションの定義 */
@keyframes fade-animation {
  0%   { opacity: 0; } 
  10%  { opacity: 1; } 
  33%  { opacity: 1; }
  43%  { opacity: 0; }
  100% { opacity: 0; }
}
/*ipad用調整*/
.is-ipad {
	.ui-static-breadcrumb {
		margin-top: -1px;
	}
}
/*パンくず調整*/
.ui-static-breadcrumb {
	background-color: #fff;
}
/*-----------------------------------------
導入
-------------------------------------------*/
#lead {
	width: 100%;
	background: #ffbed5 url("../images/lead-bg.png") repeat top center;
	position: relative;
	.inner {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding: 0 0 40px;
	}
	h2 {
		position: absolute;
		left: -10px;
		top: -70px;
	}
	.text-area {
		width: 540px;
		.title {
			font-size: 38px;
			line-height: 1.3;
			font-weight: 900;
			padding: 90px 0 0 130px;
			margin-bottom: 16px;
		}
		.fukidashi {
			margin-left: 230px;
			font-size: 16px;
			line-height: 1.3;
			font-weight: 600;
			position: relative;
			width: 310px;
			height: 130px;
			background: url("../images/lead-fukidashi-bg-pc.png") no-repeat;
			padding: 8px 16px;
		}
	}
	.movie {
		.title {
			font-weight: 18px;
			font-weight: 700;
			margin-bottom: 8px;
		}
		iframe {
		  width: 530px;
		  height: 298px;
		  border: none;
		}
	}
	.housou {
		width: 820px;
		margin: 20px 0 0 auto;
		background-color: #fff;
		padding: 8px 24px 8px 170px;
		border-radius: 8px;
		position: relative;
		.abc {
			display: inline-block;
			background-color: var(--content-color-pink-d);
			font-weight: 700;
			font-size: 14px;
			padding: 0 24px;
			color: #fff;
			margin-bottom: 4px;
		}
		ul li {
			font-size: 14px;
			font-weight: 600;
			border-bottom: dotted 1px var(--content-color-pink-d);
			span {
				color: var(--content-color-pink-d);
			}
		}
		.okita {
			position: absolute;
			left: -40px;
			top: 0;
			display: inline-block;
			animation: fuwafuwa-anim 3s ease-in-out infinite;
			width: 200px;
		}
		.tv {
			position: absolute;
			right: -10px;
			top: -10px;
		}
	}
	.iwamoto {
		position: absolute;
		left: -10px;
		bottom: 0;
	}
}
@keyframes fuwafuwa-anim {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-5px) rotate(4deg);
  }
}

/*------------------------------------------------
	アニメーション
--------------------------------------------------*/
/*おきた*/
@keyframes korokoro-anim {
  0%   { transform: translate(0%, 0%); }
  5%   { transform: translate(5%, 0%) rotate(5deg); }
  25%  { transform: translate(10%, 0%) rotate(10deg); }
  30%  { transform: translate(-5%, 0%) rotate(-5deg); }
  35%  { transform: translate(-8%, 0%) rotate(-8deg); }
  45%  { transform: translate(5%, 0%) rotate(5deg); }
  50%  { transform: translate(8%, 0%) rotate(8deg); }
  60%  { transform: translate(-3%, 0%) rotate(-3deg); }
  65%  { transform: translate(-4%, 0%) rotate(-4deg); }
  75%  { transform: translate(0%, 0%) rotate(0deg); }
  100% { transform: translate(0%, 0%) rotate(0deg); }
}
/*スクロールフェードイン*/
.scrollin {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.0s ease-out, transform 1.0s ease-out;
}
.scrollin.active {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------
電話受付
-------------------------------------------*/
.contact {
	width: 100%;
	background-color: #fff;
	border-top: solid 4px var(--content-color-navy);
	border-bottom: solid 4px var(--content-color-navy);
	padding: 16px; 0;
	.inner {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 24px;
		h2 {
			background-color: var(--content-color-navy);
			border-radius: 8px;
			color: #fff;
			font-size: 18px;
			font-weight: 700;
			padding: 8px 36px;
		}
		.cc {
			font-size: 18px;
			font-weight: 700;
			&::before {
				content: "";
				display: inline-block;
				vertical-align: middle;
				width: 44px;
				height: 44px;
				background: url("../images/icon-tel.svg") no-repeat center center / contain;
				margin-right: 8px;
				position: relative;
  				top: -2px;
			}
		}
		.tel {
			font-family: Roboto;
			font-size: 48px;
			font-weight: 900;
			a {
				color: inherit;
				pointer-events: none;
			}
		}
		.time {
			font-size: 16px;
			font-weight: 600;
		}
	}
}

/*-----------------------------------------
正解ポイント
-------------------------------------------*/
#seikai {
	width: 100%;
	background: #e6ffe9 url("../images/point-bg.png") repeat-y top center;
	padding: 64px 0 96px;
	
	[class^="point"] {
		margin-bottom: 40px;
	}
	.inner {
			position: relative;
	}
	.title {
		width: var(--content-width-pc);
		margin: 0 auto;
		display: flex;
		align-items: center;
		gap: 24px;
		position: relative;
		&:has(+.bg-wrap) {
			margin-bottom: 24px;
		}
		.no {
			flex: none;
			width: 160px;
			height: 160px;
			background: url("../images/point-no-bg-seikai.png") no-repeat center center / contain;
			font-family: Roboto;
			font-weight: 900;
			font-size: 56px;
			padding-top: 64px;
			text-align: center;
			color: #fff;
			-webkit-text-stroke: 4px var(--default-color-black);
			paint-order: stroke;
		}
		h3 {
			flex: auto;
			font-size: 40px;
			font-weight: 900;
			line-height: 1.3;
			.grade {
				font-size: 24px;
				font-weight: 700;
				color: #8d700a;
				padding-left: 8px;
				span {
					font-size: 0.7em;
					font-weight: 400;
					color: #222;
				}
			}
			.tag {
				display: inline-block;
				background-color: var(--content-color-green);
				color: #fff;
				font-size: 22px;
				font-weight: 700;
				padding: 0 8px 3px;
				transform: rotate(-2deg);
				.point1 &,.point4 & {
					margin-bottom: 8px;
				}
			}
			.f-small {
				font-size: 0.7em;
			}
			mark {
				background: var(--content-border_yellow);
			}
			.note {
				display: block;
				font-size: 14px;
				font-weight: 500;
				padding-top: 16px;
			}
			sup {
				display: inline-block;
				font-size: 14px;
				transform: translateY(-22px);
			}
		}
	}
	/*▼ポイント1と2*/
	.bg-wrap {
		width: 100%;
		position: relative;
		margin-bottom: 64px;
		:is(.point1) &::before {
			position: absolute;
			top: 0;
			right: 0;
			content: "";
			width: 50%;
			height: 550px;
			display: block;
			background: url("../images/point1-ph1.jpg") no-repeat top left / cover;
		}
		:is(.point2) &::before {
			position: absolute;
			top: 0;
			left: 0;
			content: "";
			width: 50%;
			height: 550px;
			display: block;
			background: url("../images/point2-ph1.jpg") no-repeat top right / cover;
		}
		.inner {
			.point2 & {
				padding-left: 564px;
			}
		}
		h4 {
			width: 540px;
			font-size: 24px;
			font-weight: 700;
			margin-bottom: 16px;
		}
		.text {
			width: 540px;
			margin-bottom: 16px;
		}
		.ph {
			display: flex;
			width: 540px;
			justify-content: space-between;
			flex-wrap: wrap;
			gap: 12px;
			li {
				&:nth-child(1),
				&:nth-child(2) {
					width: calc(50% - 6px);
				}
				&:nth-child(3) {
					width: 100%;
				}
			}
		}
		.hotelpoint {
			position: absolute;
			left: 50%;
			top: 562px;
			background-color: #ffec7d;
			border-radius: 8px;
			padding: 16px 24px 16px 136px;
			ul {
				font-size: 16px;
				line-height: 1.3;
				font-weight: 600;
				color: #67320b;
				li {
					position: relative;
					padding-left: 28px;
					&::before {
						font-family: "Material Symbols Rounded";
						font-weight: 400;
						content: "\e834";
						font-size: 24px;
						color: var(--content-color-orange);
						position: absolute;
						top: 0;
						left: 0;
					}
					&:not(:last-child) {
						margin-bottom: 8px;
					}
				}
			}
			.okita {
				position: absolute;
				top: 24px;
				left: 10px;
				width: 115px;
				display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;
			}
			
		}
		.option {
			margin: 80px 0 0 0;
			padding: 16px 24px;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			.textarea {
				width: 78%;
				.t1 {
					display: inline-block;
					background-color: var(--content-color-pink-d);
					color: #fff;
					font-size: 16px;
					font-weight: 700;
					padding: 0 16px;
				}
				.t2 {
					color: var(--content-color-pink-d);
					font-size: 20px;
					font-weight: 700;
					span {
						font-size: 0.8em;
					}
				}
			}
			img {
				width: 20%;
			}
		}
		.info {
			position: absolute;
			right: 50%;
			top: 562px;
			background-color: #ffec7d;
			border-radius: 8px;
			padding: 16px 24px 16px 150px;
			dl {
				font-size: 16px;
				dt {
					font-weight: 600;
					color: #67320b;
				}
				dd {
					font-weight: 500;
				}
			}
			.okita {
				position: absolute;
				top: 24px;
				left: 15px;
				width: 115px;
				display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;
			}
		}
	}
	.point1 .kawasaki {
		position: absolute;
		left: -20px;
		bottom: 172px;
	}
	.point2 .iwamoto {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	/*ポイント3*/
	.point3 {
		.ha-logo {
			position: absolute;
			right: 0;
			top: 40px;
			width: 200px;
		}
		h4 {
			font-size: 24px;
			font-weight: 700;
			margin-bottom: 8px;
			padding: 0 0 0 184px;
		}
		.text {
			font-size: 18px;
			padding: 0 0 0 184px;
		}
		.option {
			margin: 24px 0 0 184px;
			padding: 16px;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			.textarea {
				width: 75%;
				.t1 {
					display: inline-block;
					background-color: var(--content-color-pink-d);
					color: #fff;
					font-size: 16px;
					font-weight: 700;
					padding: 0 16px;
				}
				.t2 {
					color: var(--content-color-pink-d);
					font-size: 20px;
					font-weight: 700;
				}
				.t3 {
					font-size: 12px;
					margin-bottom: 8px;
				}
			}
			img {
				width: 23%;
			}
		}
	}
	/*▼VR*/
	.vr {
		padding-top: 40px;
		position: relative;
		.vr-box {
			width: 900px;
			margin: 0 0 0 auto;
			background-color: #fff;
			border-radius: 8px;
			border: solid 5px var(--content-color-blue);
			padding: 24px;
			display: flex;
			justify-content: space-between;
			dl {
				width: 60%;
				dt {
					font-size: 24px;
					font-weight: 700;
					color: var(--content-color-blue);
					margin-bottom: 8px;
					padding-left: 24px;
				}
				dd {
					.note {
						display: block;
						font-size: 0.8em;
						color: var(--content-color-red);
						margin-top: 8px;
					}
				}
			}
			img {
				width: 38%;
			}
		}
		.kawasaki {
			position: absolute;
			left: 0;
			bottom: 0;
		}
		.sarani {
			position: absolute;
			left: 150px;
			top: -6px;
		}
		.okita {
			position: absolute;
			right: 0;
			top: -35px;
			display: inline-block;
			animation: fuwafuwa-anim 3s ease-in-out infinite;
		}
	}
	/*▼ポイント4*/
	.point4 {
		.text {
			width: 750px;
			font-size: 18px;
			padding: 10px 0 0 184px;
			margin-bottom: 40px;
		}
		.trolley {
			position: absolute;
			top: -15px;
			right: 0;
			width: 290px;
		}
		.tro-line {
			width: 100%;
			display: flex;
			flex-wrap: wrap;
			gap: 12px;
			margin-bottom: 40px;
			li {
				width: calc((100% - 36px) / 4);
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				background-color: #fff;
				border: solid 4px #eaeaea;
				padding: 8px;
				&:last-child {
					background-color: #ffe0eb;
					border: solid 4px #ffe0eb;
				}
				h4 {
					width: 100%;
					font-size: 16px;
					line-height: 1.3;
					font-weight: 700;
					min-height: 50px;
					padding-left: 26px;
					position: relative;
					&::before {
						font-family: "Material Symbols Rounded";
						font-weight: 400;
						content: "\e530";
						font-size: 24px;
						position: absolute;
						top: -2px;
						left: 0;
					}
					span {
						background-color: #f386a7;
						font-size: 0.8em;
						display: inline-block;
						padding: 0 16px;
						border-radius: 20px;
					} 
				}
				&:nth-child(1) h4::before {color: #bf795d;}
				&:nth-child(2) h4::before {color: #98c24d;}
				&:nth-child(3) h4::before {color: #f89e5b;}
				&:nth-child(4) h4::before {color: #4d87c6;}
				&:nth-child(5) h4::before {color: #f1cf30;}
				&:nth-child(6) h4::before {color: #0d4da0;}
				&:nth-child(7) h4::before {color: #c53c77;}
				&:nth-child(8) h4::before {color: #f386a7;}
				img {
					width: 37%;
				}
				p {
					width: 60%;
					font-size: 14px;
					font-weight: 500;
				}
			}
		}
	}
	/*▼ポイント5*/
	.point5 .nuts {
		position: absolute;
		right: 150px;
		top: 30px;
		width: 150px;
	}
	/*▼ポイント6・7*/
	.point6 .iwamoto {
		position: absolute;
		right: 30px;
		top: 0;
	}
	.point7 .text {
		font-size: 18px;
		padding: 0 0 0 184px;
	}
}

/*-----------------------------------------
大正解ポイント
-------------------------------------------*/
#daiseikai {
	width: 100%;
	background: #fff8d2 url("../images/daiseikai-bottom-pc.png") no-repeat bottom center;
	padding: 0 0 120px;
	.inner {
		position: relative;
	}
	h2 {
		position: relative;
		top: -50px;
		left: 60px;
	}
	.iwamoto {
		position: absolute;
		right: 0;
		top: 10px;
	}
	.okita {
		position: absolute;
		right: 120px;
		top: 25px;
		display: inline-block;
		animation: korokoro-anim 2.5s linear infinite;
		width: 120px;
	}
	.title {
		display: flex;
		align-items: center;
		gap: 24px;
		margin-bottom: 16px;
		position: relative;
		.no {
			flex: none;
			width: 160px;
			height: 160px;
			background: url("../images/point-no-bg-daiseikai.png") no-repeat center center / contain;
			font-family: Roboto;
			font-weight: 900;
			font-size: 56px;
			padding-top: 64px;
			text-align: center;
			color: #fff;
			-webkit-text-stroke: 4px var(--default-color-black);
			paint-order: stroke;
		}
		h3 {
			flex: auto;
			font-size: 40px;
			font-weight: 900;
			line-height: 1.3;
			.note {
				display: block;
				font-size: 14px;
				font-weight: 500;
				padding-top: 16px;
			}
			sup {
				display: inline-block;
				font-size: 14px;
				transform: translateY(-22px);
			}
		}
	}
	.point1 {
		margin-bottom: 62px;
	}
	.point1 .food-list {
		width: 100%;
		height: 993px;
		background: url("../images/food-bg1-pc.png") no-repeat top center;
		position: relative;
		li {
			position: absolute;
			padding-left: 90px;
			&:nth-child(1) {
				left: 0;
				top: 20px;
				width: 473px;
				background: url("../images/icon-lunch.svg") no-repeat top left / 80px;
			}
			&:nth-child(2) {
				right: 0;
				top: 450px;
				width: 580px;
				background: url("../images/icon-lunch.svg") no-repeat top left / 80px;
			}
			&:nth-child(3) {
				left: 0;
				top: 780px;
				width: 640px;
				background: url("../images/icon-dinner.svg") no-repeat top left / 80px;
			}
			h4 {
				font-size: 24px;
				font-weight: 700;
				margin-bottom: 8px;
				mark {
					color: #fff;
					padding: 0 4px;
					background-color: #986A2D;
				}
			}
			.text {
				font-size: 16px;
				text-align: justify;
				.note {
					display: block;
					font-size: 0.8em;
					margin-top: 16px;
				}
			}
		}
	}
	.point2 .kawasaki {
		position: absolute;
		right: 0;
		bottom: 0;
	}
	.point2 .food-list {
		width: 100%;
		height: 373px;
		background: url("../images/food-bg2-pc.png") no-repeat top left;
		position: relative;
		li {
			position: absolute;
			padding-left: 90px;
			&:nth-child(1) {
				right: 0;
				top: 25px;
				width: 450px;
				background: url("../images/icon-dinner.svg") no-repeat top left / 80px;
			}
			h4 {
				font-size: 24px;
				font-weight: 700;
				margin-bottom: 8px;
				mark {
					color: #fff;
					padding: 0 4px;
					background-color: #986A2D;
				}
			}
			.text {
				font-size: 16px;
				text-align: justify;
				.note {
					display: block;
					font-size: 0.8em;
					margin-top: 16px;
				}
			}
		}
	}
	.cruise-box {
		display: flex;
		justify-content: space-between;
		.text {
			width: 430px;
			font-size: 16px;
			padding: 24px 0 0 24px;
			.note {
				display: block;
				font-size: 0.8em;
				margin-top: 16px;
			}
		}
		.slick-slider {
			width: 600px;
		}
	}
}
/*-----------------------------------------
スライダー調整
-------------------------------------------*/
.cruise-box {
	.slick-prev, .slick-next {
		z-index: 100;
	}
	.slick-prev {
		left: -5%;
	} 
	.slick-next {
		right: -5%;
	}
	.slick-prev:before,.slick-next:before,.slick-prev::before,.slick-next::before {		
		font-family: 'Material Symbols Rounded';
		font-weight: normal;
		font-style: normal;
		font-size: 20px;
		color: #fff;
	}
	.slick-prev:before,.slick-prev::before {
	  content: "arrow_back_ios";
	}

	.slick-next:before,.slick-next::before {
	  content: "arrow_forward_ios";
	}
	.slick-dots {
		position: static;
	}
	.slick-dots li button:before {
		font-family: 'Material Symbols Rounded';
		font-size: 12px;
		font-variation-settings: 'FILL' 1,  'GRAD' 0, 'opsz' 6;
		display: inline-block;
		width: 20px;
		height: 20px;
		text-align: center;
		padding: 0;
		content: "circle";
	}
}

/*-----------------------------------------
商品
-------------------------------------------*/
#tour {
	width: 100%;
	background-color: #ecfeff;
	padding: 64px 0 96px;
	h2 {
		width: 470px;
		margin: 0 auto 40px;
	}
	.tourpoint {
		width: 820px;
		margin: 0 auto 24px;
		background-color: #fff;
		border-radius: 8px;
		border: solid 3px var(--content-color-pink);
		padding: 16px 24px 16px 110px;
		position: relative;
		dt {
			position: absolute;
			left: -30px;
			top: -30px;
			width: 120px;
		}
		dd {
			font-size: 16px;
			line-height: 1.3;
			font-weight: 600;
			color: #670b2b;
			position: relative;
			padding-left: 28px;
			&::before {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e834";
				font-size: 24px;
				color: var(--content-color-pink);
				position: absolute;
				top: -3px;
				left: 0;
			}
			&:not(:last-child) {
				margin-bottom: 8px;
			}
			.his {
				font-size: 11px;
				color: #222;
				font-weight: 400;
			}
			&.tuika {
				color: var(--content-color-pink-d);
				padding-left: 0;
				&::before {
					content: none;
				}
			}
			&.okita {
				position: absolute;
				top: 0;
				right: -70px;
				width: 180px;
				display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;
				&::before {
					content: none;
				}
				.daiseikai& {
					width: 140px;
				}
			}
		}
	}
	.arrange {
		width: 100%;
		display: flex;
		justify-content: space-between;
		gap: 24px;
		li {
			width: calc((100% - 48px) / 3 );
			text-align: center;
			a {
				display: block;
				color: inherit;
				border-radius: 8px;
				background-color: #fff;
				box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.4);
				padding-bottom: 8px;
				position: relative;
				&::after {
					font-family: "Material Symbols Rounded";
					font-weight: 400;
					content: "\eaaa";
					font-size: 24px;
					color:  var(--content-color-blue);
					position: absolute;
					right: 8px;
					top: 50px;
				}
			}
			h3 {
				background-color: var(--content-color-blue);
				border-top-left-radius: 8px;
				border-top-right-radius: 8px;
				font-size: 16px;
				line-height: 1.8;
				font-weight: 700;
				color: #fff;
			}
			.charge {
				font-size: 18px;
				font-weight: 700;
				.add {
					display: inline-block;
					font-size: 1.5em;
					color: #DF0D00;
					padding-left: 8px;
				}
				.room {
					font-size: 11px;
					font-weight: 400;
				}
			}
			.plan {
				display: flex;
				justify-content: center;
				gap: 8px;
				span {
					display: inline-block;
					font-size: 14px;
					font-weight: 500;
					line-height: 1.3;
					background-color: #ffe6ea;
					padding: 4px 8px;
				}
			}
		}
	}
	.title-daiseikai {
		text-align: center;
		margin: 64px 0 36px;
	}
}
/*カセット調整*/
#tour .ui-static-grid-list {
	margin-bottom: 24px;
	a {
		background-color: #fff;
	}
	.ui-static-image {
		width: 34%;
	}
	.product-text {
		width: 66%;
		padding: 16px 24px;
	}
	.ui-static-product-card-summary {
		.note {
			display: block;
			font-size: 12px;
			line-height: 1.3;
		} 
	}
	.ui-static-price-container {
		margin-top: 16px;
		padding: 0;
		.ui-static-price-info {
			display: block;
		}
	}
	.ui-static-product-card .ui-static-image img {
		aspect-ratio: 352 / 235;
	}
	
}

/*------------------------------------------------
	その他ツアー
--------------------------------------------------*/
#othertour {
	width: 100%;
	padding: 64px 0;
	background-color: #eeeeee;
	.btn {
		width: 800px;
		margin: 0 auto;
		text-align: center;
		a {
			display: block;
			background-color: var(--content-color-blue);
			border-radius: 40px;
			font-size: 18px;
			font-weight: 700;
			padding: 16px;
			color: #fff;
			position: relative;
			&::after {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e5e1";
				font-size: 24px;
				position: absolute;
				right: 16px;
				top: 12px;
			}
		}			
	}
}
/*------------------------------------------------
	固定バナー
--------------------------------------------------*/
.fix-bnr {
    display: none;
    position: fixed;
    right: 10px;
    top: 300px;
    z-index: 100;
	width: 150px;
	a {
		display: block;
	}
	p.close {
		position: absolute;
		right: 10px;
		top:10px;
		a {
		  display: block;
			span {
				font-size: 16px;
				color: #333;
				background-color: #fff;
				border-radius: 50%;
				padding: 5px;
			}
		}
	}
}
/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-detail {
	padding: 50px 0;/*ページによって調整*/
	background-color: #fff;
}
.line-inner {
        width: 992px;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.1em;
        line-height: 1.5;
}
.line-wrap-detail .line-inner {
        background: #fff;
        border: solid 1px #d3d3d3;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        letter-spacing: 1px;
}
.line-inner .head {
        width: 100%;
        text-align: center;
        background-color: #06C755;
        padding: 8px;
        color: #fff;
        font-size: 20px;
        line-height: 1.5;
        font-weight: bold;
}
.line-inner .textarea {
        width: 76%;
        text-align: left;
        padding: 24px 0 32px 24px;
}
.line-inner .btnarea {
        width: 23.4%;
        padding: 8px 16px 8px 0;
}
.line-inner .text1 {
        font-size: 18px;
        line-height: 1.5;
}
.line-inner .text1 span {
        display: inline-block;
        font-weight: bold;
        color: #DF0D00;
}
.line-inner .text2 {
        font-size: 20px;
        font-weight: bold;
        background: linear-gradient(transparent 60%, #fff231 0%);
        display: inline-block;
        line-height: 1.8;
        padding: 0 4px;
}
.line-button a {
        display: block;
        color: #fff;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
        border-radius: 8vw;
        box-shadow: 0px 3px 0px 0 rgba(0, 0, 0, .14);
        background: url(/kansai/images/icon/icon-linekansai.png) no-repeat;
        background-size: 50px;
        background-position: 12px;
        background-color: #06C755;
        padding: 10px 10px 6px 70px;
        position: relative;
        text-decoration: none;
}
.line-button a:hover {
        opacity: .8;
        transition: all 0.6s ease;        
}
.line-qr {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
}
.line-qr span:nth-child(1) {
        width: 50%;
        font-size: 14px;
        font-weight: bold;
        line-height: 1.3;
        text-align: left;
}
.line-qr img {
        width: 50%;
}
.line-qr span:nth-child(3) {
        width: 100%;
        font-size: 14px;
}
.line-qr a {
        text-decoration: underline;
}

/*------------------------------------------------
	クローズ
--------------------------------------------------*/
#close {
	background-color: #e6ffe9;
    padding: 100px 0;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
}
#close a {
    color: #1a7acd;
}
