@charset "UTF-8";
/*
	Theme Name:Lucia
	Description:Lucia用オリジナルテーマ
	Author: Shiori Sakaguchi
 */

/* Font family

.imperial-script-regular {
	font-family: "Imperial Script", cursive;
	font-weight: 400;
	font-style: normal;
}

.noto-sans-jp/* -<uniquifier> Use a unique and descriptive class name  {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}


.source-serif-4/* -<uniquifier> Use a unique and descriptive class name {
	font-family: "Source Serif 4", serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
}
*/

body {
	font-family: 'Noto Sans JP', sans-serif; /* フォント名とフォールバック */
	font-weight: 300;
}

html {
    font-size:100%; /*ユーザー設定の文字サイズを正しく反映*/
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
	display: flex;
	text-align: center;
}

/* リンクの色を青くしない */
a,a:hover,a:visited {
    color: inherit;
}

img {
    max-width:100%; /*画像が親要素からはみ出すのを防ぐ*/
    height:auto;
}

body {
    background-color:#fff;
    margin:0;
    padding:0;
}

/* header */

header {
	position:relative;
	background-image: url('images/header_bg.webp');
	background-size: cover; /* 画面全体に背景画像を覆う */
	background-position: center; /* 背景画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防止 */
	height: 350px; /* ヘッダーの高さ */
	box-sizing: border-box; /* 必要に応じてパディングやボーダーでサイズが変わるのを防ぐ */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* 背景画像との重なりを調整 */
    z-index: 2; /* 背景画像より手前 */
	width:100%;
    background-color:rgba(255, 255, 255, 0.5);
	padding:5px 50px;
	position:fixed;  /*ヘッダーの位置を固定*/
    top:0;  /*ヘッダーの位置を固定（上0）*/
    left:0;
	transition: background 0.4s ease, box-shadow 0.3s ease;
}

.header-content.is-scrolled {
	background:rgb(252, 236, 236) /* スクロール後の色 */
}

.title-container {
	display: flex;
	align-items: baseline; /* 要素を下に揃える */
	gap: 8px;
	white-space: nowrap; /* テキストを折り返さない */
}

.text-area {
	display: flex;
	flex-direction: column;
	justify-content: flex-end; /* タイトル＋サブタイトルを下寄せ */
}

.title,
.sub {
	margin: 0; /* 余白リセットするとズレない */
	font-weight: 350;
}

.title {
	position: relative;
	font-size: 1em;
	color: #575757;
	top: -9px;
}

.sub {
	font-size: 0.8em;
	margin-left: calc(-150px - 9px);
	color: #575757;
}

.button-container {
 /* justify-content: space-around; /* ボタン間のスペースを均等に */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
}

.button-container ul {
	list-style: none; 
	padding: 0;
	margin: 0;
	display: flex;
}

.button-container li {
	margin-left: 21px;
}

/* ボタン */
.btn {
	cursor: pointer;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1em;
	font-weight: 300;
	background-color: #DEB887;
	padding: 1em;
	border: none;
	white-space: nowrap;  /*テキストを折り返さない */
}

.btn:hover {
	background-color: #F4DCBE;
	transition: 0.4s ease;
}

img.logo {
	width: 150px;
}

.menu-icon {
	display: none;
}

.menu-icon-item {
	display: none;
}

@media (max-width: 768px) { /* レスポンシブ */
	p {
		font-size:1em;
		line-height: 1.5em;;
	}

	header {
		height:200px;
	}

	img.logo {
	width: 120px;
	}
	
	.title {
		font-size:90%;
	}

	.sub {
		margin-left:calc(-125px - 0px);
		line-height: 0.9em;
	}

	.title-container {
		gap:5px;
	}

	.header-content {
		padding:5px 10px;
	}

	 /* ハンバーガーを表示 */
	.menu-icon {
		width: 40px;
		height: 30px;
		position: fixed;
		top: 25px;
		right: 20px;  
		cursor: pointer;
		z-index: 3;
		display: inline-block;
	}

	.menu-icon span {
		display: block;
		height: 2px;
		margin: 7px 0;
		background: #575757;
		border-radius: 2px;
		transition: 0.4s;
	}

	.menu-wrapper {
	position: relative;
	}

	.button-container {
		align-items: stretch;
	}

		/* ハンバーガーがXに変形 */
		#menu-toggle:checked + .menu-icon span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
		}
		#menu-toggle:checked + .menu-icon span:nth-child(2) {
		opacity: 0;
		}
		#menu-toggle:checked + .menu-icon span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
		}

		/* メニュー本体（右から出す） */
		.button-container {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100%;
		background: #d7a6a6;
		transition: right 0.4s ease;
		z-index: 2;
		}

	#menu-toggle:checked ~ .button-container {
		display: flex;
		right:0;
	}

	.button-container ul {
		list-style: none;
		width: 100%;
		margin: 0 auto;
		width: fit-content;
		display: block;
		padding-top: 60px;
	}

	.button-container li {
		display: flex;
		align-items: center;
		margin: 0;
		/*padding: 5px;*/
		line-height: 2.5em;
		border-bottom: 1px solid #f9f3e5;
	}

	.button-container a {
		font-size: 1.2rem;
		transition: 0.3s ease;
		color: #575757;
		margin: 5px 0;
	}

	.menu-icon-item {
		display: block;
		margin-right: 12px;
		margin-top: 5px;
		font-size: 0.9em;
		flex-shrink: 0;
		color: #f9f3e5;
	}

	.button-container a.btn {
		background-color: transparent;
		padding: 5px;
		width: 148px;
		height:45px;
	}
}

/* about */

.about-outside {
	padding: 50px 0 50px 0;
}

.about-container {
	display: flex; /* 横並び */
	justify-content: center; /* 水平方向の中央揃え */
	align-items: center; /* 垂直方向の中央揃え */
	border: 1.5px solid #DEB887; /* 枠線 */
	width: 60%; /* 枠の幅 */
	margin: 0 auto;
	padding: 15px;
}
.about-container img {
	width: 200px;
}

.about-text p {
	line-height: 1.5;
	max-width: 530px;
	font-size: 1.1em;
	margin: 0 auto;
	padding: 1%;
}

.about-image p {
	font-size: 1em;
}

@media (max-width: 768px) { /* レスポンシブ*/
	.about-container {
	display:block;
	width: 80%;
	margin: 0 auto;
	}

	.about-container img {
	width: 170px;
}

	.about-image {
		text-align: center;
		padding-top: 10px;
	}

	.about-text p {
		padding: 3%;
		font-size: 1em;
	}
}

/* menu */

.card-container {
	display: flex; /* 横並び */
	justify-content: center; /* 水平方向の中央揃え */

	position:relative;
	background-image: url('images/menu_bg.webp');
	background-size: cover; /* 画面全体に背景画像を覆う */
	background-position: center; /* 背景画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防止 */
	box-sizing: border-box; /* パディングやボーダーでサイズが変わるのを防ぐ*/
	padding-bottom: 10px;
}

.fade-in {
  animation: fadeIn 1s ease-in-out;
}

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

.card {
	width: 25%; /* 例：3枚並べるなら30%程度（余白考慮） */
	max-width: 345px;
	margin: 1%; /* カード間の余白 */
	padding: 20px;
	box-sizing: border-box; /* paddingとborderをwidthに含める */
}

.card-title {
	font-size: 1.2em;
	font-weight: 400;
	color: #575757;
}

.image-container {
	position: relative;
  	display: inline-block; /* または width: 300px; など */
	cursor: pointer;
}

.image-container img {
	display: block;
	width: 100%;
	transition: opacity 0.3s ease;
}

.image-container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0; /* 初期状態は透明 */
	transition: opacity 0.3s ease;
	border-radius: 13px;
}

.image-container:hover::before {
  opacity: 0.9; /* ホバー時に半透明の白を重ねる */
}

.image-container:hover img {
	opacity: 0.8; /* 画像自体も少し暗く（薄く）する */
}

@media (max-width: 768px) { /* レスポンシブ*/
	.card-container {
		display:block;
	}

	.card {
		width: 75%;
		margin: 0 auto;
	}
}

/* button access*/

.btn--access {
	display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 250px;
    margin: 0 auto;
    padding: .9em 3em .9em 2em;
}

.btn--access::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%) scaleX(1.4);
    width: 2em;
    height: .5em;
    background-color: black;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
}

.btn-wrapper {
	padding: 30px 0 40px 0;
}

/* footer */
.footer-wrapper {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	padding: 5px;
}

.footer-copyright {
	font-size: 14px;
	text-align: center;
}

/* access page */
.h2-wrapper {
	display: flex;
	align-items: baseline;
	gap: 10px;
	padding-bottom: 5px;
}

h2::first-letter {
    font-family: "Imperial Script", cursive; /* 最初の文字だけフォントを変更 */
    font-size: 2em;
	font-weight: 200;
	padding-right: 3%;
}

h2 {
	font-family: "Source Serif 4", serif;
	font-weight: 300;
	letter-spacing:0.1em;
	padding-left: 10%;
	position: relative;
}

h2::after {
	content: '';
	position: absolute;
	bottom: 5px; 
	left: 70%;  
	width: 130px;  
	height: 1px;  
	background-color: #DEB887;
}

.gallery {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 0;
}

.gallery-main img {
  width: 100%;
  border-radius: 10px;
}

.gallery-thumbs {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: center;
}

.thumb {
  width: 180px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.3s;
  border-radius: 6px;
}

.thumb:hover {
  opacity: 1;
}

.thumb.active {
  opacity: 1;
  border: 2px solid #c9a063;
}

.gallery-text {
	text-align: center;
	padding: 5px 0;
}


@media (max-width: 768px) {
	h2 {
		font-size: 1.3em;
		padding-left: 5%;
	}

	iframe {
		width:100%;
		height:300px;
	}

	.gallery {
		padding: 20px 5px;
	}

	.gallery-thumbs {
		flex-wrap: wrap;
		margin-top: 5px;
		gap:5px;
	}

	.thumb {
		width: 23%;
	}

	.gallery-text {
		font-size: 0.9em;
	}

}

/* Map text */

.map-text-wrapper {
	display: flex; /* 横並び */
	align-items: center; /* 垂直中央揃え */
	justify-content: center;
	gap: 8px; /* アイコンとテキストの間のスペース */
	/*font-size: 1.2rem;  必要に応じてサイズ調整 */
	padding-top: 30px;
}

.ph-map-pin {
	font-size: 20px;
}

.card-bg {
	position:relative;
	background-image: url('images/menu_bg.webp');
	background-size: cover; /* 画面全体に背景画像を覆う */
	background-position: center; /* 背景画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防止 */
	box-sizing: border-box; /* パディングやボーダーでサイズが変わるのを防ぐ*/
	padding-bottom:20px;
}

iframe {
	border: none;
	display: block;
	margin: 0 auto;
	padding: 30px;
}

.responsive-iframe { /* レスポンシブデザイン */
	width: 100%;
	aspect-ratio: 16 / 9;
}

/* menu page */

.menu-list-white-bg {
    position: relative; /* 背景画像との重なりを調整 */
	width:70%;
    background-color:rgba(255, 255, 255, 0.6);
	padding:20px;
	align-items: center; /* 垂直中央揃え */
	margin: 0 auto;

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.menu-list-wrapper {
	padding-top: 30px;
}

.menu-list-wrapper ul {
	padding-left: 0;
	list-style-position: inside;
}

.menu-list-wrapper li {
	padding-left: 0.5em;
	padding: 1%;
}

.menu-category-1 {
	font-weight: 450;
}

.menu-category {
	margin-top: 1em;
	font-weight: 450;
}

.menu-list-white-bg::before { /*リスト区切り縦線*/
	content: "";
	position: absolute;
	top: 5;
	bottom: 5;
	left: 50%;
	width: 1px;
	height: 80%;
	background-color: #DEB887;
	transform: translateX(-50%);
	opacity: 0.5;
}

@media (max-width: 768px) { /* レスポンシブ*/
	.menu-list-white-bg {
		grid-template-columns: 1fr; /*リスト1列*/
		gap:20px;
	}
	.menu-list-white-bg { /*メニューリストと施術時間の幅を合わせる*/
		width: 85%;
	}
	.treatment-time {
		width: 85%;
	}
	.menu-list-white-bg::before { /*縦線消す*/
		display: none;
	}
}

.menu-column {
	position: relative;
}

.menu-column ul {
	list-style: none;   /* デフォルトの丸を消す */
	padding-left: 0;
}

.menu-column li {
	position: relative;
	padding-left: 1.6em;  /* アイコン分の余白 */
	line-height: 1.7em;
}

.menu-column li::before {
	content: "✦";
	position: absolute;
	left: 0;
	top: 0.3em;
	color: #d4b483;      /* ゴールド系 */
	font-size: 0.9em;
}

.treatment-time {
	display: flex; /* 横並び */
	justify-content: center;
	gap: 5px; /* アイコンとテキストの間のスペース */
	padding-top: 10px;

    background-color:rgba(255, 255, 255, 0.6);
	padding-bottom:20px;
	align-items: center; /* 垂直中央揃え */
	margin: 0 auto;
	width:70%;
}

.ph-clock-clockwise {
	font-size: 1.5em;
	padding-top: 2px;
}

.menu-list-wrapper {
	position:relative;
	background-image: url('images/menu_bg.webp');
	background-size: cover; /* 画面全体に背景画像を覆う */
	background-position: center; /* 背景画像を中央に配置 */
	background-repeat: no-repeat; /* 画像の繰り返しを防止 */
	box-sizing: border-box; /* パディングやボーダーでサイズが変わるのを防ぐ*/
	/*padding-bottom: 10px;*/
}

/* couseling text*/

.couseling-wrapper {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding:0 20px;
	gap:10px;
}
.image-counseling {
	max-width: 400px;
  	height: auto; /* 高さは自動調整 */
  	object-fit: contain; /* コンテナに収める */
}
.sparkle {
	width: 70px;
}


.gold-outline {
	border: 1.5px solid #DEB887; /* 枠線 */
	padding: 20px;
	margin: 0 auto;
	width: 100%;
}

.gold-outline p {
	line-height: 1.7em;
}

.treatment-link-wrapper {
	padding-top: 0.5em;
}

.treatment-link-wrapper a {
	position: relative;
	display: inline-block;
	color: #DEB887;
	text-decoration: underline;
	font-weight: 400;
	padding-left: 2.5em;
	transition: 0.3s ease;
}

.treatment-link-wrapper a:hover {
	text-decoration-thickness: 2px;
	opacity: 0.7;
}

.treatment-link-wrapper a::before {
	position: absolute;
	top: 50%;
	left: 0; 
    transform: translateY(-50%) scaleX(1.0);
    width: 2em;
    height: 0.5em;
    background-color: black;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
}

.menu-image-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	max-width: 80%;
	margin: 0 auto;
	padding:50px 0 30px 0;
}

.image-serum {
	max-width: 400px;
	height:auto;
}

.image-tea {
	max-width: 330px;
	height:auto;
}

.image-tea-wrapper {
	text-align: center;
}

.image-tea-wrapper p {
	padding-top: 5px;
}

.image-treatment-wrapper {
	max-width:230px;
	height:auto;
	display: flex;
	align-items:flex-end;
	gap:10px
}

.sparkle2 {
	max-width: 70px;
}

@media (max-width: 768px) {
	.couseling-wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap:10px;
	}
	.image-counseling {
		width: 80%;
	}
	.sparkle {
		width:50px;
		padding-top: 80px;
	}
	.gold-outline {
		width: 100%;
	}
	.gold-outline-outside {
		padding-top: 10px;
	}

	.menu-image-container {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 20px 0;
	}

	.image-serum {
		margin-left: auto;
		width: 90%;
	}

	.image-tea-wrapper {
		padding-right: 0;
		margin:0 auto;
		width:90%;
	}

	.image-tea-wrapper p {
		padding-top: 0px;
		font-size: 90%;
	}

	.image-treatment-wrapper {
		width:70%;
		padding-right: 10px;
		margin-right: auto;
	}

	.sparkle2 {
		width: 50px;
		padding:0px;
	}

}

/* Price list */

.gold-outline-outside-price {
	padding: 20px 0;
}

.gold-outline-price {
	border: 1.5px solid #DEB887; /* 枠線 */
	padding: 20px;
	margin: 0 auto;
	width: 70%;
}

.gold-outline-price ul {
	list-style: none;   /* デフォルトの丸を消す */
	padding-left: 0;
	display: table; /* 中央寄せ */
	text-align: left;
	margin-left: auto;
	margin-right: auto;
}

.gold-outline-price li {
	position: relative;
	padding-left: 1.6em;  /* アイコン分の余白 */
	line-height: 2em;
}

.gold-outline-price li::before {
	content: "✦";
	position: absolute;
	left: 0;
	top: 0.1em;
	color: #d4b483;      /* ゴールド系 */
	font-size: 0.9em;
}

.gold-outline-price p {
	text-align: center;
	padding-top: 1%;
}

.price-wrapper {
	background-image: url("images/marble.webp"); /* 画像パス */
	background-repeat: no-repeat;
	background-size: cover;        /* 全体にフィット */
	background-position: center;   /* 中央基準 */
	padding: 30px 0;
}

@media (max-width: 768px) {
	.gold-outline-price {
	width: 80%;
	}
}

/* Treatment */
.treatment-section {
	position: relative;
	display: flex;
	height: 600px;
	overflow: hidden;
}

/* 背景左右 */
.treatment-bg-left,
.treatment-bg-right {
	width: 50%;
	background-size: cover;
	background-position: center;
}

.treatment-bg-left {
	background-image: url("images/treatment-bg-mtg.webp");
}

.treatment-bg-right {
	background-image: url("images/treatment-bg-visea.webp");
}

/* 中央白ボックス */
.treatment-text-white-bg {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	background: rgba(255,255,255,0.9);
	padding: 40px;
	text-align: left;
}

/* ボタン共通 */
.btn-treatment {
	position: absolute;
	bottom: 40px;
	padding: 15px 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 50px;
	font-size: 30px;
	font-weight: 100;
	align-items: center;
	gap:30px;
}

.btn-treatment:hover {
	background: rgba(255, 255, 255, 1.0);
	border-radius: 50px;
	/*gap:40px;*/
	transition: 0.3s ease;
}

.btn-treatment:hover .ph-arrow-circle-right {
	transform: translateX(10px);
}

/* 左ボタン */
.btn-left {
	left: 25%;
	transform: translateX(-50%);
}

/* 右ボタン */
.btn-right {
	left: 75%;
	transform: translateX(-50%);
}

.treatment-text p {
	line-height: 1.5em;
}

.ph-arrow-circle-right {
	font-size: 40px;
	color:#DEB887;
	transition: transform 0.3s ease;
}

@media (max-width: 768px) {
	.treatment-text-white-bg {
		position: relative;
		transform: none;
		left: auto;
		top: auto;
		margin: 20px;
		padding:0 15px;

		width:90%;
	}

	.treatment-section {
		flex-direction: column;
		height: auto;
	}

	.treatment-bg-left,
	.treatment-bg-right {
		width: 100%;
		height: 300px;

		position: relative;
	}

	.btn-left {
		position: absolute;
		bottom: 420px;
		left: 50%;
		transform: translateX(-50%);
		padding: 15px 40px;

	}

	.btn-right {
		position: absolute;
		bottom: 100px;
		left: 50%;
		transform: translateX(-50%);
		padding: 15px 40px;
	}

}