@charset "utf-8";
:root{
	--default-color-black: #2c2a29;
    --content-width-sp: 90vw;
	--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%;
}
.nosp{
  display: none
}
.contents {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 3.5vw;
	line-height: 1.5;
	color: var(--default-color-black);
	a {
		text-decoration: none;
	}
	img {
        width: 100%;
		height: auto;
    }
	.inner {
        width: var(--content-width-sp);
		max-width: 100%;
        margin: 0 auto;
	}
}

/*-----------------------------------------
メインビジュアル
-------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 120vw;
	overflow: hidden;
	position: relative;
	text-align: center;
	.bg-img {
		position: fixed; 
		top: 0;
		left: 0;
		width: 100%;
		height: 140vw;
		z-index: -1;
		background-size: cover;
		background-position: center;
		opacity: 0;
		animation: fade-animation 12s infinite;
		will-change: opacity;/*カクつき防止 */
	}
	.img1 { background-image: url('../images/main-bg1-sp.jpg'); animation-delay: 0s;}
	.img2 { background-image: url('../images/main-bg2-sp.jpg'); animation-delay: 4s;}
	.img3 { background-image: url('../images/main-bg3-sp.jpg'); animation-delay: 8s;}

	.title {
		position: absolute;
		width: 90vw;
		top: 24vw;
		right: 0;
		left: 0;
		margin: 0 auto;
		z-index: 10;
	}
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 51vw;
		background: url("../images/main-bottom-sp.png") no-repeat bottom center / 100%;
		position: absolute;
		bottom: 0;
	}
}
/* フェードアニメーションの定義 */
@keyframes fade-animation {
  0%   { opacity: 0; } 
  10%  { opacity: 1; } 
  33%  { opacity: 1; } 
  43%  { opacity: 0; } 
  100% { opacity: 0; }
}
/*パンくず調整*/
.ui-static-breadcrumb {
	background-color: #fff;
}
/*-----------------------------------------
導入
-------------------------------------------*/
#lead {
	width: 100%;
	background: #ffbed5 url("../images/lead-bg.png") repeat top center / 3vw;
	padding: 12vw 0 8vw;
	position: relative;
	.inner {
		width: 100%;
		position: relative;
	}
	h2 {
		position: absolute;
		left: 5vw;
		top: -20vw;
		width: 54vw;
	}
	.text-area {
		padding: 0 5vw 5vw 35vw;
		.title {
			font-size: 6vw;
			line-height: 1.3;
			font-weight: 900;
			margin-bottom: 2vw;
		}
		.fukidashi {
			font-size: 3.5vw;
			line-height: 1.3;
			font-weight: 600;
			background: url("../images/lead-fukidashi-bg-sp.png") no-repeat;
			background-size: 100%;
			padding: 2vw 2vw 4vw 8vw;
		}
	}
	.movie {
		width: 90vw;
		margin: 0 auto 5vw;
		.title {
			font-size: 3.8vw;
			font-weight: 700;
		}
		iframe {
			width: 100%;
			height: 50.5vw;
			border: none;
		}
	}
	.housou {
		width: 90vw;
		margin: 3vw auto 0;
		background-color: #fff;
		padding: 2vw 30vw 2vw 3vw;
		border-radius: 8px;
		position: relative;
		.abc {
			display: inline-block;
			background-color: var(--content-color-pink-d);
			font-weight: 700;
			font-size: 3.3vw;
			padding: 0 2vw;
			color: #fff;
			margin-bottom: 0.5vw;
		}
		ul li {
			font-weight: 600;
			border-bottom: dotted 1px var(--content-color-pink-d);
			span {
				color: var(--content-color-pink-d);
			}
		}
		.okita {
			position: absolute;
			right: -3vw;
			top: 0;
			width: 32vw;
			/*display: inline-block;
			animation: fuwafuwa-anim 3s ease-in-out infinite;*/
		}
		.tv {
			position: absolute;
			right: 0vw;
			top: 22vw;
			width: 28vw;
		}
	}
	.iwamoto {
		position: absolute;
		left: 2vw;
		top: 2vw;
		width: 35vw;
	}
}
/*iphoneで不具合のため停止*/
/*@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 0.8s ease-out, transform 0.8s ease-out;
}
.scrollin.active {
  opacity: 1;
  transform: translateY(0);
}

/*-----------------------------------------
電話受付
-------------------------------------------*/
.contact {
	width: 100%;
	background-color: #fff;
	border-top: solid 2px var(--content-color-navy);
	border-bottom: solid 2px var(--content-color-navy);
	padding: 4vw 0;
	.inner {
		h2 {
			background-color: var(--content-color-navy);
			border-radius: 4px;
			color: #fff;
			font-size: 3.6vw;
			font-weight: 700;
			padding: 1vw 0;
			text-align: center;
			margin-bottom: 2vw;
		}
		.cc {
			font-size: 4vw;
			font-weight: 700;
			&::before {
				content: "";
				display: inline-block;
				vertical-align: middle;
				width: 6vw;
				height: 6vw;
				background: url("../images/icon-tel.svg") no-repeat center center / contain;
				margin-right: 2vw;
				position: relative;
  				top: -0.5vw;
			}
		}
		.tel {
			font-family: Roboto;
			font-size: 10vw;
			line-height: 1.0;
			font-weight: 900;
			a {
				color: inherit;
			}
		}
		.time {
			font-size: 3.8vw;
			font-weight: 600;
		}
	}
}

/*-----------------------------------------
正解ポイント
-------------------------------------------*/
#seikai {
	width: 100%;
	background: #e6ffe9;
	padding: 8vw 0 14vw;
	
	[class^="point"] {
		margin-bottom: 6vw;
	}
	.inner {
			position: relative;
	}
	.title {
		width: var(--content-width-sp);
		margin: 0 auto;
		position: relative;
		margin-bottom: 3vw;
		&:has(+.bg-wrap) {
			margin-bottom: 6vw;
		}
		.no {
			width: 22vw;
			height: 22vw;
			margin: 0 auto 3vw;
			background: url("../images/point-no-bg-seikai.png") no-repeat center center / contain;
			font-family: Roboto;
			font-weight: 900;
			font-size: 8vw;
			padding-top: 8vw;
			text-align: center;
			color: #fff;
			-webkit-text-stroke: 3px var(--default-color-black);
			paint-order: stroke;
		}
		h3 {
			font-size: 5.4vw;
			font-weight: 900;
			text-align: center;
			.grade {
				font-size: 4.0vw;
				font-weight: 700;
				color: #8d700a;
				span {
					font-size: 0.7em;
					font-weight: 400;
					color: #222;
				}
			}
			.tag {
				display: inline-block;
				background-color: var(--content-color-green);
				color: #fff;
				font-size: 4.0vw;
				font-weight: 700;
				padding: 0 2vw 0.5vw;
			}
			.f-small {
				font-size: 0.8em;
			}
			mark {
				background: var(--content-border_yellow);
			}
			.note {
				display: block;
				font-size: 2.8vw;
				line-height: 1.3;
				font-weight: 400;
				padding-top: 3vw;
			}
			sup {
				display: inline-block;
				font-size: 3.0vw;
				transform: translateY(-2vw);
			}
		}
	}
	/*▼ポイント1と2*/
	.bg-wrap {
		width: 100%;
		position: relative;
		padding-top: 63vw;
		margin-bottom: 10vw;
		:is(.point1) &::before {
			position: absolute;
			top: 0;
			right: 0;
			content: "";
			width: 100%;
			height: 60vw;
			display: block;
			background: url("../images/point1-ph1.jpg") no-repeat top left / cover;
		}
		:is(.point2) &::before {
			position: absolute;
			top: 0;
			left: 0;
			content: "";
			width: 100%;
			height: 60vw;
			display: block;
			background: url("../images/point2-ph1.jpg") no-repeat top right / cover;
		}
		h4 {
			font-size: 4.8vw;
			font-weight: 700;
			margin-bottom: 2vw;
		}
		.text {
			margin-bottom: 3vw;
		}
		.ph {
            display: flex;
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
			margin-bottom: 3vw;
            li {
                width: 64vw;
                margin-right: 2vw;
                img {
                    width: 64vw;
                    max-width: 64vw;
                }
                &:last-child {
                    margin-right: 0;
                }
            }
        }
		.hotelpoint {
			position: relative;
			width: 100%;
			background-color: #ffec7d;
			border-radius: 8px;
			padding: 3vw 3vw 3vw 13vw;
			ul {
				font-size: 3.6vw;
				line-height: 1.3;
				font-weight: 600;
				color: #67320b;
				li {
					position: relative;
					padding-left: 6vw;
					&::before {
						font-family: "Material Symbols Rounded";
						font-weight: 400;
						content: "\e834";
						font-size: 5vw;
						color: var(--content-color-orange);
						position: absolute;
						top: 0;
						left: 0;
					}
					&:not(:last-child) {
						margin-bottom: 1.5vw;
					}
				}
			}
			.okita {
				position: absolute;
				bottom: 2vw;
				left: -4vw;
				width: 20vw;
				/*display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;*/
			}
		}
		.option {
			margin: 3vw 0 0 0;
			padding: 3vw;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			.textarea {
				width: 60%;
				.t1 {
					display: inline-block;
					background-color: var(--content-color-pink-d);
					color: #fff;
					font-size: 3.4vw;
					font-weight: 700;
					padding: 0 2vw;
				}
				.t2 {
					color: var(--content-color-pink-d);
					font-size: 3.8vw;
					font-weight: 700;
					span {
						font-size: 0.8em;
					}
				}
				.t3 {
					font-size: 3.3vw;
				}
			}
			img {
				padding-top: 6vw;
				width: 38%;
			}
		}
		.info {
			width: 100%;
			background-color: #ffec7d;
			border-radius: 8px;
			padding: 2vw 3vw 2vw 20vw;
			position: relative;
			dl {
				font-size: 3.8vw;
				dt {
					font-weight: 600;
					color: #67320b;
				}
				dd {
					font-weight: 500;
				}
			}
			.okita {
				position: absolute;
				top: 2vw;
				left: -2vw;
				width: 20vw;
				/*display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;*/
			}
		}
	}
	.point1 .kawasaki {
		position: absolute;
		left: -5vw;
		bottom: 98vw;
		width: 20vw;
	}
	.point2 .iwamoto {
		position: absolute;
		right: -2vw;
		top: 5vw;
		width: 27vw;
	}
	/*ポイント3*/
	.point3 {
		.ha-logo {
			position: absolute;
			right: 0;
			top: 52vw;
			width: 26vw;
		}
		h4 {
			font-size: 4.2vw;
			font-weight: 700;
			margin-bottom: 1vw;
		}
		.text {
		}
		.note {
			text-align: left;
		}
		.option {
			margin: 3vw 0 0 0;
			padding: 3vw;
			background-color: #fff;
			display: flex;
			justify-content: space-between;
			align-items: flex-start;
			.textarea {
				width: 60%;
				.t1 {
					display: inline-block;
					background-color: var(--content-color-pink-d);
					color: #fff;
					font-size: 3.4vw;
					font-weight: 700;
					padding: 0 2vw;
				}
				.t2 {
					color: var(--content-color-pink-d);
					font-size: 3.8vw;
					line-height: 1.3;
					font-weight: 700;
				}
				.t3 {
					font-size: 2.8vw;
					display: block;
					line-height: 1.3;
					margin-bottom: 1vw;
				}
			}
			img {
				padding-top: 6vw;
				width: 38%;
			}
		}
	}
	/*▼VR*/
	.vr {
		padding-top: 5vw;
		position: relative;
		.vr-box {
			width: 100%;
			background-color: #fff;
			border-radius: 8px;
			border: solid 3px var(--content-color-blue);
			padding: 5vw;
			dl {
				dt {
					font-size: 4.0vw;
					font-weight: 700;
					color: var(--content-color-blue);
					margin-bottom: 2vw;
				}
				dd {
					.note {
						display: block;
						font-size: 0.8em;
						color: var(--content-color-red);
						margin-top: 2vw;
					}
				}
			}
			img {
				width: 54vw;
				margin: 2vw 0 0 25vw;
			}
		}
		.kawasaki {
			position: absolute;
			left: 2vw;
			bottom: 6vw;
			width: 27vw;
		}
		.sarani {
			position: absolute;
			left: -2vw;
			top: -2vw;
			width: 30vw;
		}
		.okita {
			position: absolute;
			right: 0;
			top: -3vw;
			/*display: inline-block;
			animation: fuwafuwa-anim 3s ease-in-out infinite;*/
			width: 20vw;
		}
	}
	/*ポイント4*/
	.point4 {
		.text {
			font-size: 3.8vw;
			margin-bottom: 3vw;
		}
		.trolley {
			position: absolute;
			top: -44vw;
			right: 0;
			width: 28vw;
		}
		.tro-line {
            display: flex;
            width: 100%;
            overflow-x: scroll;
            overflow-y: hidden;
			margin-bottom: 5vw;
			padding-bottom: 3vw;
			li {
				width: 64vw;
                margin-right: 2vw;
				display: flex;
				flex-wrap: wrap;
				justify-content: space-between;
				background-color: #fff;
				border: solid 4px #eaeaea;
				padding: 2vw;
				&:last-child {
					background-color: #ffe0eb;
					border: solid 4px #ffe0eb;
					margin-right: 0;
				}
				h4 {
					width: 58vw;
					font-size: 3.8vw;
					line-height: 1.3;
					font-weight: 700;
					min-height: 12vw;
					padding-left: 6vw;
					position: relative;
					&::before {
						font-family: "Material Symbols Rounded";
						font-weight: 400;
						content: "\e530";
						font-size: 6.0vw;
						position: absolute;
						top: -0.5vw;
						left: 0;
					}
					span {
						background-color: #f386a7;
						font-size: 0.8em;
						display: inline-block;
						padding: 0 1vw;
						border-radius: 3vw;
					} 
				}
				&: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: 3.5vw;
					font-weight: 500;
				}
			}
		}
	}
	/*ポイント5*/
	.point5 .nuts {
		position: absolute;
		right: 0;
		top: 0;
		width: 22vw;
	}
	/*ポイント6・7*/
	.point6 .iwamoto {
		position: absolute;
		right: 0;
		top: 0;
		width: 22vw;
	}
	.point7 .text {
	}
}
/*-----------------------------------------
大正解ポイント
-------------------------------------------*/
#daiseikai {
	width: 100%;
	background: #fff8d2 url("../images/daiseikai-bottom-sp.png") no-repeat bottom center / 100%;
	padding: 0 0 15vw;
	.inner {
		position: relative;
	}
	h2 {
		position: relative;
		top: -5vw;
		left: 0;
		width: 72vw;
	}
	.iwamoto {
		position: absolute;
		right: -4vw;
		top: 14vw;
		width: 24vw;
	}
	.okita {
		position: absolute;
		left: 0;
		top: 3vw;
		/*display: inline-block;
		animation: korokoro-anim 2.5s linear infinite;*/
		width: 18vw;
	}
	[class^="point"] {
		margin-bottom: 5vw;
	}
	.title {
		position: relative;
		margin-bottom: 3vw;
		.no {
			width: 22vw;
			height: 22vw;
			margin: 0 auto 3vw;
			background: url("../images/point-no-bg-daiseikai.png") no-repeat center center / contain;
			font-family: Roboto;
			font-weight: 900;
			font-size: 8vw;
			padding-top: 8vw;
			text-align: center;
			color: #fff;
			-webkit-text-stroke: 3px var(--default-color-black);
			paint-order: stroke;
		}
		h3 {
			font-size: 5.4vw;
			font-weight: 900;
			text-align: center;
			.note {
				display: block;
				font-size: 2.8vw;
				line-height: 1.3;
				font-weight: 400;
				padding-top: 2vw;
				text-align: left;
			}
			sup {
				display: inline-block;
				font-size: 3.0vw;
				transform: translateY(-2vw);
			}
		}
	}
	.point1 .food-list {
		width: 100%;
		li {
			margin-bottom: 8vw;
			h4 {
				font-size: 4.6vw;
				font-weight: 700;
				min-height: 14vw;
				margin-bottom: 1vw;
				mark {
					color: #fff;
					padding: 0 0.5vw;
					background-color: #986A2D;
				}
				padding-left: 16vw;
				&:nth-child(1) {
					background: url("../images/icon-lunch.svg") no-repeat top left / 14vw;
				}
				&:nth-child(2) {
					background: url("../images/icon-lunch.svg") no-repeat top left / 14vw;
				}
				&:nth-child(3) {
					background: url("../images/icon-dinner.svg") no-repeat top left / 14vw;
				}
			}
			.text {
				font-size: 3.4vw;
				text-align: justify;
				margin-bottom: 2vw;
			}
			.img {
				width: 84vw;
				margin: 0 auto;
			}
		}
	}
	.point2 .kawasaki {
		position: absolute;
		right: 0;
		top: -3vw;
		width: 24vw;
	}
	.point2 .food-list {
		width: 100%;
		li {
			margin-bottom: 8vw;
			h4 {
				font-size: 4.6vw;
				font-weight: 700;
				min-height: 14vw;
				margin-bottom: 1vw;
				mark {
					color: #fff;
					padding: 0 0.5vw;
					background-color: #986A2D;
				}
				padding-left: 16vw;
				background: url("../images/icon-dinner.svg") no-repeat top left / 14vw;
			}
			.text {
				font-size: 3.4vw;
				text-align: justify;
				margin-bottom: 2vw;
			}
			.img {
				width: 84vw;
				margin: 0 auto;
			}
		}
	}
	.cruise-box {
		margin-bottom: 5vw;
		.text {
			width: 100%;
			font-size: 3.5vw;
			margin-bottom: 5vw;
			.note {
				display: block;
				font-size: 2.8vw;
				margin-top: 2vw;
			}
		}
		.slick-slider {
			width: 86vw;
			margin: 0 auto;
		}
	}
}

/*-----------------------------------------
商品
-------------------------------------------*/
#tour {
	width: 100%;
	background-color: #ecfeff;
	padding: 10vw 0;
	h2 {
		width: 64vw;
		margin: 0 auto 8vw;
	}
	.tourpoint {
		margin: 0 auto 8vw;
		background-color: #fff;
		border-radius: 8px;
		border: solid 3px var(--content-color-pink);
		padding: 3vw 3vw 2vw 11vw;
		position: relative;
		dt {
			position: absolute;
			left: -5vw;
			top: -5vw;
			width: 17vw;
		}
		dd {
			font-size: 3.5vw;
			line-height: 1.3;
			font-weight: 600;
			color: #670b2b;
			position: relative;
			padding-left: 6vw;
			&::before {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e834";
				font-size: 5vw;
				color: var(--content-color-pink);
				position: absolute;
				top: -0.5vw;
				left: 0;
			}
			&:not(:last-child) {
				margin-bottom: 1vw;
			}
			.his {
				font-size: 2.8vw;
				color: #222;
				font-weight: 400;
			}
			&.tuika {
				color: var(--content-color-pink-d);
				padding-left: -3vw;
				&::before {
					content: none;
				}
			}
			&.okita {
				position: absolute;
				bottom: -5vw;
				right: 0vw;
				width: 27vw;
				/*display: inline-block;
				animation: korokoro-anim 2.5s linear infinite;*/
				&::before {
					content: none;
				}
				.daiseikai& {
					right: -5vw;
					bottom: 22vw;
					width: 22vw;
				}
			}
		}
	}
	.arrange {
		width: 100%;
		li {
			width: 100%;
			text-align: center;
			margin-bottom: 3vw;
			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: 2vw;
				position: relative;
				&::after {
					font-family: "Material Symbols Rounded";
					font-weight: 400;
					content: "\eaaa";
					font-size: 8vw;
					color:  var(--content-color-blue);
					position: absolute;
					right: 2vw;
					top: 10vw;
				}
			}
			h3 {
				background-color: var(--content-color-blue);
				border-top-left-radius: 8px;
				border-top-right-radius: 8px;
				font-size: 3.8vw;
				line-height: 1.8;
				font-weight: 700;
				color: #fff;
			}
			.charge {
				font-size: 4.0vw;
				font-weight: 700;
				.add {
					display: inline-block;
					font-size: 1.5em;
					color: #DF0D00;
					padding-left: 1vw;
				}
				.room {
					font-size: 2.8vw;
					font-weight: 400;
				}
			}
			.plan {
				display: flex;
				justify-content: center;
				gap: 2vw;
				span {
					display: inline-block;
					font-size: 3.5vw;
					font-weight: 500;
					line-height: 1.3;
					background-color: #ffe6ea;
					padding: 1vw 2vw;
				}
			}
		}
	}
	.title-daiseikai {
		text-align: center;
		margin: 5vw 0;
	}
}
/*カセット調整*/
#tour .ui-static-grid-list {
	margin-bottom: 3vw;
	a {
		background-color: #fff;
	}
	.product-text {
		padding: 3vw 4vw;
	}
	.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;
		}
	}
}

/*-----------------------------------------------
スライダー調整
-----------------------------------------------*/
.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";
	}
}


/*------------------------------------------------
	その他ツアー
--------------------------------------------------*/
#othertour {
	width: 100%;
	padding: 6vw 0;
	background-color: #eeeeee;
	.btn {
		width: 84vw;
		margin: 0 auto;
		text-align: center;
		a {
			display: block;
			background-color: var(--content-color-blue);
			border-radius: 10vw;
			font-size: 3.6vw;
			font-weight: 700;
			padding: 2.5vw 0;
			color: #fff;
			position: relative;
			&::after {
				font-family: "Material Symbols Rounded";
				font-weight: 400;
				content: "\e5e1";
				font-size: 4.0vw;
				position: absolute;
				right: 3vw;
				top: 5.5vw;
			}
		}			
	}
}
/*------------------------------------------------
	固定バナー
--------------------------------------------------*/
.fix-bnr {
    display: none;
    position: fixed;
    right: 5px;
	bottom: 70px;
    z-index: 100;
	width: 100px;
	a {
		display: block;
	}
	p.close {
		position: absolute;
		right: 5px;
		top: 5px;
		a {
		  display: block;
			span {
				font-size: 14px;
				color: #333;
				background-color: #fff;
				border-radius: 50%;
				padding: 3px;
			}
		}
	}
}

/*------------------------------------------------
        LINEお友達登録ボタン
--------------------------------------------------*/
.line-wrap-simple {
    padding: 0;/*ページによって調整*/
}
.line-wrap-detail {
    padding: 10vw 0;/*ページによって調整*/
	background-color: #fff;
}
.line-inner {
    width: 94vw;
    margin: 0 auto;
    text-align: center;
    line-height: 1.5;
}
.line-wrap-detail .line-inner {
    background: #fcfff6;/*ページによって調整*/
    border: solid 1px #d3d3d3;
}
.line-inner .fukidashi {
    font-size: 4.1vw;
    font-weight: bold;
    margin-bottom: 2vw;
}
.line-inner .head {
    background-color: #06C755;
    padding: 2vw 0;
    color: #fff;
    font-size: 4.3vw;
    font-weight: bold;
}
.line-inner .textarea {
    padding: 4vw 2vw 2vw;
}
.line-inner .btnarea {
    padding: 2vw 2vw 5vw;
}
.line-inner .text1 {
    font-size: 3.6vw;
    line-height: 1.5;
}
.line-inner .text1 span {
    display: inline-block;
    font-weight: bold;
    color: #DF0D00;
}
.line-inner .text2 {
    font-size: 4.1vw;
    font-weight: bold;
    background: linear-gradient(transparent 60%, #fff231 0%);
    line-height: 1.8;     
    display: inline-block;
}
.line-button {
    margin: 0 auto;
}
.line-wrap-simple .line-button {width: 90vw;}
.line-wrap-detail .line-button {width: 80vw;}

.line-button a {
    display: block;
    color: #fff;
    font-size: 3.5vw;
    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: 12vw;
    background-position: 3vw;
    background-color: #06C755;
    padding: 2.4vw 4vw 1.8vw 16vw;
    position: relative;
    text-decoration: none;
}
.line-button a span.small {
    display: block;
    font-size: 2.8vw;
    font-weight: normal;
}
.line-button a span.strong {
    display: block;
}
.line-button a span.strong::after {
    font-family: "Material Symbols Rounded";
    font-weight: 400;
    content: "\eaaa";
    font-size: 4.5vw;
    margin-left: 1.4vw;
        position: relative;
        top: 0.8vw;
}
.line-button a span.line-friend {
    font-size: 1.3em;
    color: #fff231;
    padding: 0 0.5vw;
}

/*------------------------------------------------
	クローズ
--------------------------------------------------*/
#close {
	background-color: #dbf6ff;
    padding: 20vw 0;
    text-align: center;
    font-size: 4.0vw;
    line-height: 1.8;
}
#close a {
    color: #1a7acd;
}
