@charset "utf-8";

/*Google Fontsの読み込み（最優先）
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');

/*Font Awesomeの読み込み（フォントの後）
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css");

/*テンプレート専用cssファイルの読み込み（最後）
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");

/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--text-color: #080808;
	--text-light: #5e5e61;
	--primary-color: #080808;
	--primary-dark: #353636;
	--primary-light: #1f2020;
	--secondary-color: #f39c12;
	--accent-color: #e74c3c;
	--primary-text-color: #ffffff;
	--bg-light: #f8fafc;
	--bg-dark: #1a202c;
	--card-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--card-shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
	--border-radius: 16px;
	--border-radius-sm: 8px;
	--global-space: 5vw;
	--gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
	--gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #e67e22 100%);
	--gradient-hero: linear-gradient(135deg, rgba(5, 143, 93, 0.9) 0%, rgba(79, 209, 167, 0.9) 100%);
}

/*アニメーションキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}

@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes fadeIn {
	0% {opacity: 0; transform: scale(0.8);}
	100% {opacity: 1; transform: scale(1);}
}

@keyframes slideUp {
	0% {opacity: 0; transform: translateY(30px);}
	100% {opacity: 1; transform: translateY(0);}
}

@keyframes pulse {
	0%, 100% {transform: scale(1);}
	50% {transform: scale(1.05);}
}

@keyframes float {
	0%, 100% {transform: translateY(0px);}
	50% {transform: translateY(-10px);}
}

@keyframes slideInFromRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/*全体の設定
---------------------------------------------------------------------------*/
* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
	font-size: 14px;
	scroll-behavior: smooth;
}

@media screen and (min-width:900px) {
	html, body {
		font-size: 16px;
	}
}

body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	background: var(--bg-light);
	color: var(--text-color);
	line-height: 1.7;
	overflow-x: hidden;
}

/* メニューが開いている時のボディ固定 */
body.menu-open {
	overflow: hidden !important;
	position: fixed !important;
	width: 100% !important;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav, ul, li, ol {margin: 0; padding: 0;}
nav ul {list-style: none;}

/*基本要素*/
table {border-collapse: collapse;}
img {border: none; max-width: 100%; height: auto; vertical-align: middle;}
video {max-width: 100%;}
iframe {width: 100%;}
input, textarea {font-size: 1rem; font-family: inherit;}

section + section {
	margin-top: 4rem;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: var(--text-color);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	text-decoration: none;
}

a:hover {
	color: var(--primary-color);
	transform: translateY(-2px);
}

/*コンテナー設定
---------------------------------------------------------------------------*/
body:not(.home) #container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
	padding: var(--global-space);
}

/* レスポンシブ時のヘッダー高さ調整 */
@media screen and (max-width:768px) {
	#contents {
		padding-top: calc(80px + var(--global-space));
	}
	
	/* ホームページ以外でヘッダーが固定されている場合 */
	body:not(.home) #contents {
		padding-top: calc(80px + var(--global-space));
	}
	
	/* メインイメージがある場合は調整しない */
	body.home #contents {
		padding-top: var(--global-space);
	}
}

/*header設定
---------------------------------------------------------------------------*/
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	padding: 1vw 3vw;
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-weight: 700;
	position: absolute;
	z-index: 100;
	width: 100%;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
}

@media screen and (min-width:900px) {
	header {
		position: fixed;
		z-index: 100;
	}
	
	header.scrolled {
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
	}
}

/*ロゴ設定*/
#logo a {
	display: block;
	text-decoration: none;
	font-size: 1.8rem;
	font-weight: 900;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	transition: all 0.3s ease;
}

#logo a:hover {
	transform: scale(1.05);
}

/*メニューブロック設定（シンプル修正版）
---------------------------------------------------------------------------*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar a {
	display: block;
	text-decoration: none;
}

/*大きな端末用のメニューブロック設定
---------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
	.large-screen #menubar {
		display: block !important;
	}

	.large-screen #menubar > nav > ul {
		display: flex;
		font-size: 0.9rem;
		gap: 1rem;
		align-items: center;
		flex-direction: row;
		padding: 0;
	}

	.large-screen #menubar li a {
		border-radius: 25px;
		padding: 0.7rem 1.5rem;
		background: rgba(255, 255, 255, 0.9);
		color: var(--text-color);
		font-weight: 500;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		border: 2px solid transparent;
		display: block;
		min-height: auto;
	}

	.large-screen #menubar li a:hover {
		background: var(--gradient-primary);
		color: var(--primary-text-color);
		transform: translateY(-3px);
		box-shadow: var(--card-shadow);
	}

	/*大きな端末用のドロップダウンメニュー*/
	.large-screen #menubar ul ul {
		position: absolute;
		z-index: 200;
		animation: opa1 0.5s 0.1s both;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(10px);
		border-radius: var(--border-radius);
		box-shadow: var(--card-shadow);
		min-width: 200px;
	}

	.large-screen #menubar ul ul a {
		margin-top: 0.4rem;
		border-radius: var(--border-radius-sm);
	}
}

/*小さな端末用の開閉ブロック（シンプル修正版）
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	.small-screen #menubar {
		position: fixed;
		z-index: 9999;
		left: 0;
		top: 0;
		width: 100%;
		height: 100vh;
		background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 32, 44, 0.95) 100%);
		backdrop-filter: blur(20px);
		-webkit-backdrop-filter: blur(20px);
		display: none;
		flex-direction: column;
		justify-content: flex-start;
		padding: 100px 0 40px 0;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.small-screen #menubar nav {
		flex: 1;
	}

	.small-screen #menubar nav ul {
		display: flex;
		flex-direction: column;
		gap: 1rem;
		padding: 0 2rem;
	}

	.small-screen #menubar nav ul li {
		border: 2px solid rgba(255, 255, 255, 0.1);
		border-radius: var(--border-radius);
		background: rgba(255, 255, 255, 0.05);
		backdrop-filter: blur(10px);
		transition: all 0.3s ease;
	}

	.small-screen #menubar nav ul li:hover {
		background: rgba(255, 255, 255, 0.1);
		transform: translateX(10px);
	}

	.small-screen #menubar a {
		padding: 1.5rem 2rem;
		color: #fff;
		font-weight: 500;
		font-size: 1.1rem;
		text-align: center;
		transition: all 0.3s ease;
	}

	.small-screen #menubar a:hover {
		background: var(--gradient-primary);
		color: var(--primary-text-color);
	}

	/* サブメニューの設定 */
	.small-screen #menubar ul ul {
		position: static;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(5px);
		border-radius: var(--border-radius-sm);
		margin: 0.5rem 1rem;
		padding: 0.5rem 0;
		display: none;
	}

	.small-screen #menubar ul ul li {
		margin: 0;
		border: none;
		background: transparent;
	}

	.small-screen #menubar ul ul a {
		font-size: 1rem;
		padding: 1rem 1.5rem;
	}
}

/*ハンバーガーメニューボタン（シンプル修正版）
---------------------------------------------------------------------------*/
#menubar_hdr {
	display: none;
}

@media screen and (max-width: 768px) {
	#menubar_hdr {
		display: flex;
		position: fixed;
		z-index: 10000;
		top: 15px;
		right: 20px;
		width: 50px;
		height: 50px;
		background: rgba(8, 8, 8, 0.9);
		border-radius: 8px;
		cursor: pointer;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 4px;
		transition: all 0.3s ease;
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	}

	#menubar_hdr:hover {
		transform: scale(1.05);
		background: rgba(8, 8, 8, 1);
	}

	#menubar_hdr span {
		width: 24px;
		height: 3px;
		background: #fff;
		border-radius: 2px;
		transition: all 0.3s ease;
		display: block;
	}

	/* アクティブ状態（メニューが開いている時） */
	#menubar_hdr.ham {
		background: rgba(231, 76, 60, 0.9);
	}

	#menubar_hdr.ham span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}

	#menubar_hdr.ham span:nth-child(2) {
		opacity: 0;
	}

	#menubar_hdr.ham span:nth-child(3) {
		transform: rotate(-45deg) translate(6px, -6px);
	}
}

/*ドロップダウンメニュー共通設定
---------------------------------------------------------------------------*/
.ddmenu_parent ul {
	display: none;
}

a.ddmenu {
	cursor: default;
}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}

/*main
---------------------------------------------------------------------------*/
main h2 {
	font-family: "Reddit Sans", "Noto Sans JP", sans-serif;
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: var(--gradient-primary);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 2rem;
	position: relative;
}

main h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 60px;
	height: 4px;
	background: var(--gradient-primary);
	border-radius: 2px;
}

.bg1 h2 {
	color: var(--primary-text-color);
	background: none;
	-webkit-background-clip: unset;
	-webkit-text-fill-color: unset;
}

.bg1 h2::after {
	background: var(--primary-text-color);
}

main h2 .hosoku {
	display: block;
	font-weight: 300;
	font-size: 0.35em;
	margin-top: 0.5rem;
	opacity: 0.8;
}

main h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 1rem;
	position: relative;
	padding-left: 1rem;
}

main h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 100%;
	background: var(--gradient-primary);
	border-radius: 2px;
}

/*画像表示関連（修正版）- 画像を正位置表示
---------------------------------------------------------------------------*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* サウナ画像コンテナ（修正版）- 正位置表示 */
.sauna-image-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f8f9fa;
	/* 基本的な高さを設定 */
	min-height: 200px;
}

.sauna-image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.3s ease;
	display: block;
}

/* 特定の画像も正位置で表示（回転設定を削除） */
.sauna-image-container img[src*="moonbay-ととのい室.jpg"],
.sauna-image-container img[src*="starbay-サウナ内.jpg"] {
	transform: none !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	margin: 0 !important;
}

/* モーダル表示時も正位置 */
.modal-content img[src*="moonbay-ととのい室.jpg"],
.modal-content img[src*="starbay-サウナ内.jpg"] {
	transform: none !important;
	max-width: 90vw !important;
	max-height: 90vh !important;
}

/* ホバー効果 */
.sauna-image-container:hover {
	transform: scale(1.02);
	box-shadow: var(--card-shadow);
}

.sauna-image-container:hover img {
	transform: scale(1.05);
}

/* 正位置画像のホバー効果 */
.sauna-image-container:hover img[src*="moonbay-ととのい室.jpg"],
.sauna-image-container:hover img[src*="starbay-サウナ内.jpg"] {
	transform: scale(1.05) !important;
}

/* レスポンシブ対応の高さ設定 */
@media screen and (max-width: 767px) {
	.sauna-image-container {
		height: 180px;
	}
	
	.gallery-thumbs .sauna-image-container {
		height: 100px;
	}
	
	.original-gallery .sauna-image-container {
		height: 150px;
	}
}

@media screen and (min-width: 768px) {
	.sauna-image-container {
		height: 250px;
	}
	
	.gallery-main.sauna-image-container {
		height: 350px;
	}
	
	.gallery-thumbs .sauna-image-container {
		height: 120px;
	}
	
	.original-gallery .sauna-image-container {
		height: 200px;
	}
}

/* 拡大アイコン */
.sauna-image-container::after {
	content: '\f00e';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 8px;
	border-radius: 50%;
	font-size: 0.9rem;
	opacity: 0;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
}

@media screen and (min-width: 768px) {
	.sauna-image-container:hover::after {
		opacity: 1;
	}
}

/* サムネイルのアクティブ状態 */
.gallery-thumbs .sauna-image-container.active {
	border: 3px solid var(--primary-color);
	transform: scale(1.05);
}

/* 一般的な画像ギャラリー */
.original-gallery {
	display: grid;
	gap: 2rem;
	margin: 3rem 0;
}

@media screen and (max-width: 767px) {
	.original-gallery {
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}
}

@media screen and (min-width: 768px) {
	.original-gallery {
		grid-template-columns: repeat(4, 1fr);
	}
}

.gallery-item {
	text-align: center;
}

.gallery-item h4 {
	margin-top: 1rem;
	font-size: 1rem;
	color: var(--text-color);
}

@media screen and (max-width: 767px) {
	.gallery-item h4 {
		font-size: 0.9rem;
		margin-top: 0.5rem;
	}
}

/*モーダル表示（画像拡大）
---------------------------------------------------------------------------*/
.image-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.modal-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	background: white;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow-hover);
}

.modal-content img {
	width: 100%;
	height: auto;
	max-height: 90vh;
	object-fit: contain;
	display: block;
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	color: white;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
	z-index: 100000;
	backdrop-filter: blur(5px);
}

.modal-close:hover {
	background: rgba(0, 0, 0, 0.9);
	transform: scale(1.1);
}

/*contact.html フォーム設定
---------------------------------------------------------------------------*/
.Form {
	margin-top: 80px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	padding: 3rem;
}

@media screen and (max-width: 480px) {
	.Form {
		margin-top: 40px;
		padding: 2rem 1rem;
	}
}

.Form-Item {
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 480px) {
	.Form-Item {
		padding: 16px 0;
		flex-wrap: wrap;
	}
}

.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: 600;
	font-size: 16px;
	color: var(--text-color);
}

@media screen and (max-width: 480px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 14px;
	}
}

.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
}

.Form-Item-Label-Required {
	border-radius: 6px;
	margin-right: 8px;
	padding: 4px 8px;
	display: inline-block;
	text-align: center;
	background: var(--accent-color);
	color: #fff;
	font-size: 12px;
	font-weight: 500;
}

.Form-Item-Input, .Form-Item-Textarea {
	border: 2px solid #e2e8f0;
	border-radius: var(--border-radius-sm);
	margin-left: 40px;
	padding: 1rem 1.5rem;
	flex: 1;
	width: 100%;
	max-width: 410px;
	background: #fff;
	font-size: 16px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.Form-Item-Input:focus, .Form-Item-Textarea:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(5, 143, 93, 0.1);
	transform: translateY(-2px);
}

.Form-Item-Input.error {
	border-color: var(--accent-color);
}

.Form-Item-Input.success {
	border-color: #10b981;
}

.Form-Item-Textarea {
	height: 120px;
	resize: vertical;
}

@media screen and (max-width: 480px) {
	.Form-Item-Input, .Form-Item-Textarea {
		margin-left: 0;
		margin-top: 12px;
		flex: inherit;
	}
}

.Form-Btn {
	border-radius: var(--border-radius-sm);
	margin: 2rem auto 1rem;
	padding: 1rem 3rem;
	width: auto;
	min-width: 200px;
	display: block;
	letter-spacing: 0.05em;
	background: var(--gradient-primary);
	color: #fff;
	font-weight: 600;
	font-size: 16px;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.Form-Btn:hover {
	transform: translateY(-3px);
	box-shadow: var(--card-shadow-hover);
}

.Form-Btn:active {
	transform: translateY(-1px);
}

/*カラム設定
---------------------------------------------------------------------------*/
.main-contents {
	margin-bottom: 5rem;
}

@media screen and (min-width:900px) {
	main.column {
		display: flex;
		justify-content: space-between;
		gap: 3rem;
	}
	
	.main-contents {
		margin-bottom: 0;
		order: 2;
		flex: 1;
	}
	
	.sub-contents {
		width: 280px;
	}
	
	.sub-contents:nth-child(2) {
		order: 1;
	}
	
	.sub-contents:nth-child(3) {
		order: 3;
	}
}

/*サブコンテンツ設定
---------------------------------------------------------------------------*/
.sub-contents h3 {
	display: block;
	margin: 0;
	text-align: center;
	border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
	background: var(--gradient-primary);
	color: var(--primary-text-color);
	padding: 1rem 0;
	font-weight: 600;
}

.sub-contents h3::before {
	display: none;
}

/*サブメニュー設定
---------------------------------------------------------------------------*/
.submenu {
	padding: 0;
	margin: 0 0 2rem;
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow);
}

.submenu a {
	display: block;
	text-decoration: none;
	padding: 0.8rem 1.5rem;
	transition: all 0.3s ease;
	border-bottom: 1px solid #f1f5f9;
}

.submenu > li:last-child a {
	border-bottom: none;
}

.submenu a:hover {
	background: var(--bg-light);
	color: var(--primary-color);
	padding-left: 2rem;
}

.submenu li li a {
	padding-left: 3rem;
	font-size: 0.9rem;
	color: var(--text-light);
}

/*SNS設定
---------------------------------------------------------------------------*/
.SNS {
	text-align: center;
	padding: 2rem;
}

.social-text {
	font-size: 1.1rem;
	color: var(--text-light);
	margin-bottom: 2rem;
}

.SNS a {
	display: inline-block;
	transition: all 0.3s ease;
}

.SNS a:hover {
	transform: scale(1.05) rotate(2deg);
}

.SNS img {
	height: 180px;
	width: 180px;
	object-fit: cover;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
}

.billding {
	text-align: center;
	margin: 3rem 0;
}

.billding img {
	height: 400px;
	width: 100%;
	max-width: 600px;
	object-fit: cover;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
}

/*フッターメニュー
---------------------------------------------------------------------------*/
#footermenu {
	margin: 0 !important;
	padding: 2rem;
	text-align: center;
	font-size: 0.9rem;
	background: #fff;
	border-top: 1px solid #e2e8f0;
}

#footermenu ul {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

#footermenu li a {
	padding: 0.5rem 1rem;
	border-radius: var(--border-radius-sm);
	transition: all 0.3s ease;
	font-weight: 500;
}

#footermenu li a:hover {
	background: var(--primary-color);
	color: var(--primary-text-color);
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	font-size: 0.8rem;
	text-align: center;
	padding: 2rem;
	background: var(--bg-dark);
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.8;
}

footer a {
	color: inherit;
	text-decoration: none;
}

footer a:hover {
	color: var(--primary-light);
}

footer address {
	font-style: normal;
	margin: 1rem 0;
}

footer .pr {
	display: block;
	margin-top: 1rem;
	opacity: 0.6;
}

/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
.fade-in-text {
	visibility: hidden;
}

.char {
	display: inline-block;
	opacity: 0;
	animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/*お知らせブロック
---------------------------------------------------------------------------*/
.new {
	background: #fff;
	border-radius: var(--border-radius);
	padding: 2rem;
	box-shadow: var(--card-shadow);
}

.new dt {
	font-weight: 600;
	color: var(--text-color);
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.new dd {
	padding-bottom: 1.5rem;
	margin-bottom: 1.5rem;
	border-bottom: 1px solid #f1f5f9;
	line-height: 1.7;
	color: var(--text-light);
}

.new dd:last-child {
	border-bottom: none;
	margin-bottom: 0;
}

.new dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.5;
	border-radius: 20px;
	padding: 0.3rem 1rem;
	font-size: 0.8rem;
	font-weight: 500;
	background: #e2e8f0;
	color: var(--text-color);
}

.new .icon-bg1 {
	background: var(--gradient-primary);
	color: #fff;
}

.new .icon-bg2 {
	background: var(--gradient-secondary);
	color: #fff;
}

@media screen and (min-width:700px) {
	.new {
		display: grid;
		grid-template-columns: auto 1fr;
		gap: 1rem 2rem;
	}
}

/*list-grid1
---------------------------------------------------------------------------*/
.list-grid1 {
	display: grid;
	gap: 2rem;
	color: var(--text-color);
}

@media screen and (min-width:500px) {
	.list-grid1 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width:800px) {
	.list-grid1 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.list-grid1 .list {
	display: grid;
	grid-template-rows: auto auto 1fr auto;
	padding: 0;
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.list-grid1 .list:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
}

.list-grid1 .list * {
	margin: 0;
	padding: 0;
}

.list-grid1 .list figure {
	position: relative;
	overflow: hidden;
}

.list-grid1 .list figure img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: all 0.3s ease;
}

.list-grid1 .list:hover figure img {
	transform: scale(1.05);
}

.list-grid1 .list .text {
	padding: 1.5rem;
}

.list-grid1 .list h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: var(--text-color);
}

.list-grid1 .list p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: var(--text-light);
}

/*ボタン設定
---------------------------------------------------------------------------*/
.btn a, .btn-border-radius a {
	display: block;
	text-decoration: none;
	font-size: 0.9rem;
	text-align: center;
	background: var(--gradient-primary) !important;
	color: var(--primary-text-color) !important;
	padding: 1rem !important;
	margin: 1rem;
	border-radius: var(--border-radius-sm);
	font-weight: 600;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn a::before, .btn-border-radius a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s;
}

.btn a:hover::before, .btn-border-radius a:hover::before {
	left: 100%;
}

.btn a:hover, .btn-border-radius a:hover {
	transform: translateY(-3px);
	box-shadow: var(--card-shadow-hover);
}

.btn-border-radius a {
	display: inline-block;
	padding: 1rem 2.5rem !important;
	border-radius: 50px;
	margin: 0.5rem;
	font-size: 1rem;
	font-weight: 700;
}

/*CTA Section
---------------------------------------------------------------------------*/
.cta-section {
	background: var(--gradient-primary);
	color: var(--primary-text-color);
	text-align: center;
	padding: 4rem 2rem;
	border-radius: var(--border-radius);
	margin: 4rem 0;
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
	animation: float 20s infinite linear;
}

.cta-section h2 {
	color: var(--primary-text-color);
	background: none;
	-webkit-text-fill-color: unset;
	position: relative;
	z-index: 1;
}

.cta-section h2::after {
	background: var(--primary-text-color);
}

.cta-text {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	position: relative;
	z-index: 1;
}

.cta-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
	position: relative;
	z-index: 1;
}

.cta-btn {
	padding: 1rem 2rem;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.cta-btn.primary {
	background: var(--primary-text-color);
	color: var(--primary-color);
	border-color: var(--primary-text-color);
}

.cta-btn.secondary {
	background: transparent;
	color: var(--primary-text-color);
	border-color: var(--primary-text-color);
}

.cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn.primary:hover {
	background: var(--primary-color);
	color: var(--primary-text-color);
}

.cta-btn.secondary:hover {
	background: var(--primary-text-color);
	color: var(--primary-color);
}

/*bg1背景色がついたブロック
---------------------------------------------------------------------------*/
.bg1 {
	position: relative;
	background: var(--gradient-primary);
	color: var(--primary-text-color);
	padding: 6vw var(--global-space);
	margin: 8vw calc(-1 * var(--global-space));
	overflow: hidden;
}

.bg1::before {
	content: '';
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--bg-light);
	transform: skewY(-2deg);
	transform-origin: top left;
}

.bg1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	height: 60px;
	background: var(--bg-light);
	transform: skewY(-2deg);
	transform-origin: bottom right;
}

.bg1 > * {
	position: relative;
	z-index: 1;
}

/*詳細ページのサムネイル切り替えブロック
---------------------------------------------------------------------------*/
.thumbnail-view-parts {
	max-width: 1000px;
	margin: 0 auto 2rem;
	text-align: center;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow);
}

.thumbnail-parts {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.thumbnail-parts img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: var(--border-radius-sm);
	cursor: pointer;
	transition: all 0.3s ease;
	border: 3px solid transparent;
}

.thumbnail-parts img:hover {
	transform: scale(1.1);
	border-color: var(--primary-color);
	box-shadow: var(--card-shadow);
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin-bottom: 3rem;
	background: #fff;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: var(--card-shadow);
}

.ta1 caption {
	font-weight: 700;
	padding: 1rem;
	background: var(--gradient-primary);
	color: var(--primary-text-color);
	margin-bottom: 0;
	font-size: 1.1rem;
}

.ta1 tr {
	border-bottom: 1px solid #f1f5f9;
}

.ta1 tr:last-child {
	border-bottom: none;
}

.ta1 th, .ta1 td {
	padding: 1.5rem;
	word-break: break-all;
	vertical-align: top;
}

.ta1 th {
	width: 30%;
	text-align: left;
	background: var(--bg-light);
	font-weight: 600;
	color: var(--text-color);
}

.ta1 td {
	background: #fff;
	color: var(--text-light);
}

@media screen and (min-width:900px) {
	.ta1 th {
		width: 20%;
	}
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.pagetop-show {
	opacity: 1;
	visibility: visible;
}

.pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	background: var(--gradient-primary);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	box-shadow: var(--card-shadow);
	transition: all 0.3s ease;
}

.pagetop a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: var(--card-shadow-hover);
}

/*サウナページ専用スタイル
---------------------------------------------------------------------------*/
/* サウナヒーローセクション */
.sauna-hero {
	display: grid;
	gap: 3rem;
	align-items: center;
	margin-bottom: 4rem;
}

@media screen and (min-width: 768px) {
	.sauna-hero {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
		min-height: 500px;
	}
}

.hero-image .sauna-image-container {
	height: 300px;
}

@media screen and (min-width: 768px) {
	.hero-image .sauna-image-container {
		height: 450px;
	}
}

/* サウナタイプセクション */
.sauna-comparison {
	display: grid;
	gap: 3rem;
	margin-top: 3rem;
}

@media screen and (min-width: 768px) {
	.sauna-comparison {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.sauna-card {
	background: #fff;
	border-radius: var(--border-radius);
	box-shadow: var(--card-shadow);
	overflow: hidden;
	transition: all 0.3s ease;
	padding: 2rem;
}

.sauna-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--card-shadow-hover);
}

/* サウナギャラリー */
.sauna-gallery {
	margin: 2rem 0;
}

.gallery-thumbs {
	display: grid;
	gap: 1rem;
	margin-top: 1.5rem;
}

@media screen and (max-width: 767px) {
	.gallery-thumbs {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (min-width: 768px) {
	.gallery-thumbs {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* サウナ予約ボタン */
.daytip-reserve-btn, .glamping-reserve-btn {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	padding: 2rem 3rem;
	background: var(--gradient-primary);
	color: white !important;
	text-decoration: none;
	border-radius: var(--border-radius);
	font-weight: 600;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(5, 143, 93, 0.3);
	min-width: 280px;
}

.daytip-reserve-btn:hover, .glamping-reserve-btn:hover {
	transform: translateY(-8px) scale(1.05);
	box-shadow: 0 20px 40px rgba(5, 143, 93, 0.4);
}

.daytip-reserve-btn i, .glamping-reserve-btn i {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.daytip-reserve-btn span, .glamping-reserve-btn span {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.daytip-reserve-btn small, .glamping-reserve-btn small {
	font-size: 0.9rem;
	opacity: 0.9;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: ""; display: block; clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%; display: block;}
.wl {width: 95%; display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--bg-light);
	color: var(--text-color);
	border: 2px solid #e2e8f0;
	border-radius: var(--border-radius-sm);
	margin: 0.5rem 0;
	word-break: break-all;
	font-family: 'Courier New', monospace;
}
.small {font-size: 0.8em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

/*アニメーション要素
---------------------------------------------------------------------------*/
.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
	opacity: 1;
	transform: translateY(0);
}

/*レスポンシブ調整
---------------------------------------------------------------------------*/
@media screen and (min-width:900px) {
	.ws {width: 48%; display: inline;}
	.sh {display: none;}
	.pc {display: block;}
}

@media screen and (max-width:600px) {
	:root {
		--global-space: 4vw;
	}
	
	main h2 {
		font-size: 2rem;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
	
	.cta-btn {
		min-width: 200px;
	}
}
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    /* 完全に画面外に配置 */
}