/* Base Styles */
:root {
	--color-main: #333;
	--color-accent: #d4bda8;
	--color-bg: #fdfdfd;
	--color-white: #ffffff;
	--color-text-light: #666;
	--font-serif: "Noto Serif JP", serif;
	--font-sans: "Montserrat", "Noto Sans JP", sans-serif;
}

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

body {
	font-family: var(--font-sans);
	color: var(--color-main);
	background-color: var(--color-bg);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a {
	text-decoration: none;
	color: inherit;
	transition: 0.3s;
}

a:hover {
	opacity: 0.7;
}

ul {
	list-style: none;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	.container {
		padding: 0 20px;
	}
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 0 40px; /* 横余白を追加 */
	transition: 0.3s;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: space-between; /* 両端に寄せる */
}

.header.is-scrolled {
	background-color: rgba(255, 255, 255, 0.95);
	height: 60px;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header__logo img {
	/* height: 100%; */
	height: 32px;
	margin-left: 10px;
	margin-bottom: 12px;
}

.header__nav {
	display: flex;
	align-items: center;
	gap: 40px;
}

.header__sns {
	display: flex;
	gap: 20px;
}

.header__sns a {
	font-size: 1.5rem;
	color: var(--color-main);
	transition: 0.3s;
}

.header__sns a:hover {
	color: #e4405f; /* Instagram color */
	opacity: 1;
}

.footer__sns {
	display: flex;
	gap: 20px;
}

.footer__sns a {
	font-size: 1.8rem;
	color: var(--color-white);
	transition: 0.3s;
}

.footer__sns a:hover {
	color: #e4405f;
	opacity: 1;
}

@media (max-width: 768px) {
	.header {
		padding: 0 20px;
	}
	.header__sns a {
		font-size: 1.3rem;
	}
}

.header__menu-trigger {
	background: none;
	border: none;
	cursor: pointer;
	width: 40px;
	height: 16px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.header__menu-trigger span {
	display: block;
	width: 100%;
	height: 1px;
	background-color: var(--color-main);
	transition: 0.3s;
}

.header__menu-trigger.is-active span:nth-child(1) {
	transform: translateY(7.5px) rotate(45deg);
}

.header__menu-trigger.is-active span:nth-child(2) {
	transform: translateY(-7.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
	height: 100vh;
	background-image: url("../images/AdobeStock_1523831539.jpeg");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: var(--color-white);
}

.hero__content {
	position: relative;
	z-index: 1;
	text-align: center;
}

.hero__sub-copy {
	font-size: 1.2rem;
	margin-bottom: 30px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__main-copy {
	font-size: 10vw;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
	text-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.hero__reservation {
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 999;
}

.reservation-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 140px;
	height: 140px;
	background-color: var(--color-white);
	border-radius: 50%;
	color: var(--color-main);
	font-weight: 700;
	line-height: 1.4;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border: 1px solid #ddd;
	text-align: center;
	padding: 10px;
	position: relative;
}

.reservation-btn__rotating-text {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	animation: rotate-text 20s linear infinite;
}

.reservation-btn__rotating-text svg {
	width: 100%;
	height: 100%;
}

.reservation-btn__rotating-text text {
	font-family: var(--font-sans);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	fill: #999; /* Gray color */
}

.reservation-btn__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.reservation-btn__logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100px;
	height: auto;
	opacity: 0.6;
	z-index: 1;
}

.reservation-btn__text {
	position: relative;
	z-index: 2;
	display: block;
	font-size: 1.1rem;
	letter-spacing: 0.05em;
}

@keyframes rotate-text {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* Campaign Section */
.campaign {
	padding: 120px 0;
	text-align: center;
	background-color: #d0d6de;
	overflow: hidden;
}

.campaign__title {
	font-size: 2.5rem;
	margin-bottom: 60px;
	display: inline-block;
	position: relative;
	padding: 10px 0;
}

.campaign__title::before,
.campaign__title::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 1px;
	background-color: var(--color-accent);
}

.campaign__title::before {
	top: 0;
}
.campaign__title::after {
	bottom: 0;
}

.campaign__title small {
	display: block;
	font-size: 0.9rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 5px;
}

.campaign__slider {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.campaign__slider-track {
	display: flex;
	width: calc(300px * 6 + 15px * 6); /* Adjust based on slide width and gap */
	animation: slide-scroll 20s linear infinite;
	gap: 15px;
}

.campaign__slide {
	flex-shrink: 0;
	width: 300px; /* Adjust as needed */
	height: 200px; /* Adjust as needed */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.campaign__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

@keyframes slide-scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-300px * 3 - 15px * 3));
	}
}

/* Concept Section */
.concept {
	padding: 140px 0;
	background-color: #d0d6de;
}

.concept--no-padding-top {
	padding-top: 0;
}

.concept__inner {
	display: flex;
	align-items: center;
	gap: 100px;
}

.concept--reverse .concept__inner {
	flex-direction: row-reverse;
}

.concept__text {
	flex: 1;
}

.concept__image {
	flex: 1;
}

.concept__image img {
	border-radius: 30px;
	width: 100%;
}

.concept__title {
	font-family: var(--font-serif);
	font-size: 2.8rem;
	margin-bottom: 40px;
}

.concept__description {
	font-size: 1.1rem;
	color: var(--color-text-light);
}

.section-title {
	text-align: center;
	font-size: 3.5rem;
	margin-bottom: 80px;
	font-family: var(--font-sans);
	line-height: 1.2;
}

.section-title span {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	margin-top: 10px;
	letter-spacing: 0.1em;
	color: var(--color-text-light);
}

.btn {
	display: inline-block;
	padding: 15px 40px;
	font-weight: 700;
	border-radius: 50px;
	transition: 0.3s;
}

.btn--outline {
	border: 1px solid var(--color-main);
	color: var(--color-main);
}

.btn--outline:hover {
	background-color: var(--color-main);
	color: var(--color-white);
}

/* Welfare Section */
.welfare {
	padding: 140px 0;
	background-color: var(--color-white);
}

.welfare__content {
	display: flex;
	align-items: center;
	gap: 80px;
}

.welfare__text {
	flex: 1;
}

.welfare__text h3 {
	font-size: 2rem;
	margin-bottom: 30px;
	line-height: 1.4;
	font-family: var(--font-serif);
}

.welfare__points {
	margin: 30px 0 40px;
}

.welfare__points li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	font-weight: 700;
}

.welfare__points li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	color: var(--color-accent);
}

.welfare__image-wrap {
	flex: 1;
	position: relative;
}

.welfare__image {
	width: 100%;
}

.welfare__image img {
	border-radius: 30px;
	width: 100%;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.welfare__tickets {
	position: absolute;
	bottom: -40px;
	right: -20px;
	display: flex;
	flex-direction: column;
	gap: -60px; /* Overlap effect */
}

.welfare__ticket {
	width: 280px;
	height: auto;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	transition: 0.3s;
}

.welfare__ticket--ladies {
	transform: rotate(-5deg);
	margin-bottom: -100px;
	z-index: 2;
}

.welfare__ticket--body {
	transform: rotate(3deg);
	margin-left: 40px;
	z-index: 1;
}

.welfare__ticket:hover {
	z-index: 10;
	transform: scale(1.05) rotate(0);
}

@media (max-width: 768px) {
	.welfare__tickets {
		position: static;
		margin-top: 40px;
		flex-direction: row;
		justify-content: center;
		gap: 10px;
	}
	.welfare__ticket {
		width: 45%;
		margin: 0 !important;
		transform: none !important;
	}
}

/* Welfare Page Specific Styles */
.welfare-hero {
	background-image: linear-gradient(rgba(228, 77, 58, 0.7), rgba(228, 77, 58, 0.7)),
		url("../images/womens_care07.jpg");
	background-size: cover;
	background-position: center;
	color: var(--color-white);
	padding: 160px 0 100px;
	text-align: left;
}

.welfare-hero h2 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	line-height: 1.2;
}

.welfare-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
}

.welfare-intro {
	padding: 100px 0;
	text-align: center;
}

.welfare-intro__lead {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 40px;
	line-height: 1.6;
}

.welfare-intro__desc {
	max-width: 800px;
	margin: 0 auto;
	color: var(--color-text-light);
}

.welfare-system {
	padding: 100px 0;
	background-color: #f8f8f8;
}

.welfare-system__grid {
	display: flex;
	gap: 60px;
	align-items: center;
}

.welfare-system__text {
	flex: 1;
}

.welfare-system__text h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: 10px;
	display: inline-block;
}

.welfare-system__list li {
	margin-bottom: 20px;
	padding-left: 30px;
	position: relative;
}

.welfare-system__list li::before {
	content: "■";
	position: absolute;
	left: 0;
	color: var(--color-main);
}

.welfare-system__image {
	flex: 1;
	text-align: center;
}

.welfare-price {
	padding: 100px 0;
	background-color: #e44d3a;
	color: var(--color-white);
}

.welfare-price__item {
	margin-bottom: 80px;
}

.welfare-price__item:last-child {
	margin-bottom: 0;
}

.welfare-price h3 {
	font-size: 2rem;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
	gap: 15px;
}

.welfare-price h2 span {
	color: var(--color-white);
}

.welfare-price__table-wrap {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

.welfare-price table {
	width: 65%;
	border-collapse: collapse;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.welfare-price th,
.welfare-price td {
	padding: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	text-align: left;
}

.welfare-price th {
	background-color: rgba(255, 255, 255, 0.2);
	font-weight: 700;
}

.welfare-price__set {
	background-color: var(--color-white);
	color: var(--color-main);
	padding: 40px;
	border-radius: 20px;
	flex: 1;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.welfare-price__set h4 {
	font-size: 1.5rem;
	margin-bottom: 20px;
	color: #e44d3a;
}

.welfare-price__set .price {
	font-size: 2rem;
	font-weight: 700;
}

.welfare-price__set .price span {
	font-size: 1.2rem;
}

.welfare-price__set .note {
	display: block;
	margin-top: 10px;
	font-size: 0.9rem;
	color: #e44d3a;
}

@media (max-width: 960px) {
	.welfare-price__table-wrap {
		flex-direction: column;
	}
	.welfare-price table {
		width: 100%;
	}
	.welfare-system__grid {
		flex-direction: column;
	}
}

/* Responsive */
/* ABOUT AGERU-NO Section */
.about-ageruno {
	padding: 140px 0;
	background-color: #fdfdfd;
}

.ageruno-columns {
	display: flex;
	gap: 40px;
	align-items: stretch;
}

.ageruno-column {
	flex: 1;
	border: 1px solid #e44d3a;
	padding: 40px 20px;
	border-radius: 10px;
	background-color: var(--color-white);
}

.ageruno-column__header {
	text-align: center;
	margin-bottom: 40px;
}

.ageruno-column__header h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: var(--color-main);
}

.ageruno-column__catch {
	font-size: 1.2rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 30px;
	font-family: var(--font-serif);
}

.ageruno-column__sub {
	font-size: 0.95rem;
	color: var(--color-text-light);
	line-height: 1.6;
}

.ageruno-column__grid {
	display: grid;
	gap: 15px;
}

.beauty-grid {
	grid-template-columns: repeat(2, 1fr);
}

.fascia-grid {
	grid-template-columns: repeat(2, 1fr);
}

.grid-item {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.grid-item img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	display: block;
}

.grid-item span {
	display: block;
	font-size: 0.75rem;
	margin-top: 5px;
	text-align: center;
	color: #e44d3a;
	font-weight: 700;
}

.grid-item--machine {
	grid-column: span 2;
	text-align: center;
}

.grid-item--machine img {
	height: 200px;
	object-fit: contain;
	background-color: #fff;
}

.grid-item--machine span {
	font-size: 1rem;
	margin-top: 10px;
}

/* Menu Section */
.menu {
	padding: 120px 0;
	background-color: var(--color-white);
}

.menu__title {
	text-align: center;
	font-size: 3rem;
	margin-bottom: 80px;
	font-family: var(--font-sans);
}

.menu__title small {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.menu__title span {
	display: block;
	font-size: 1.2rem;
	margin-top: 20px;
	font-weight: 400;
}

.menu__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.menu__item {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	aspect-ratio: 16 / 9;
}

.menu__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.menu__item:hover img {
	transform: scale(1.1);
}

.menu__item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--color-white);
	padding: 20px;
	text-align: center;
}

.menu__item-overlay p {
	font-size: 0.9rem;
	margin-bottom: 10px;
}

.menu__item-overlay h3 {
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.menu__item {
	cursor: pointer;
}

/* Modal Styles */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	display: none;
	align-items: center;
	justify-content: center;
}

.modal.is-active {
	display: flex;
}

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(5px);
}

.modal__content {
	position: relative;
	width: 90%;
	max-width: 800px;
	max-height: 90vh;
	background: #fff;
	border-radius: 10px;
	overflow-y: auto;
	z-index: 1;
	padding: 40px 20px 20px;
}

.modal__close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: none;
	border: none;
	font-size: 2.5rem;
	line-height: 1;
	color: #333;
	cursor: pointer;
	z-index: 2;
}

.modal__body {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

.modal__body img {
	width: 100%;
	height: auto;
	border-radius: 5px;
}

@media (max-width: 768px) {
	.menu__grid {
		grid-template-columns: 1fr;
	}
	.menu__item-overlay h3 {
		font-size: 1.6rem;
	}
}

/* Intro Section */
.rakulease-intro {
	margin-top: 100px;
}

.rakulease-intro__main {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 100px;
}

.rakulease-intro__text {
	flex: 1;
}

.rakulease-intro__text h3 {
	font-size: 1.8rem;
	margin-bottom: 30px;
	line-height: 1.4;
	font-weight: 700;
}

.rakulease-intro__text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--color-text-light);
}

.rakulease-intro__image {
	flex: 1;
}

.rakulease-intro__image img {
	width: 100%;
	border-radius: 20px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rakulease-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.rakulease-feature {
	text-align: center;
}

.rakulease-feature__icon {
	width: 80px;
	height: 80px;
	background-color: var(--color-main);
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 25px;
	font-size: 2rem;
}

.rakulease-feature h4 {
	font-size: 1.3rem;
	margin-bottom: 15px;
	font-weight: 700;
}

.rakulease-feature p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--color-text-light);
}

@media (max-width: 960px) {
	.ageruno-columns {
		flex-direction: column;
	}
}

/* Flow Section */
.flow {
	padding: 120px 0;
	background-color: var(--color-white);
}

.flow__steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 60px;
}

.flow__step {
	text-align: center;
	position: relative;
}

.flow__num {
	display: block;
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 20px;
	font-family: var(--font-sans);
	opacity: 0.5;
}

.flow__step h3 {
	font-size: 1.2rem;
	margin-bottom: 15px;
}

.flow__step p {
	font-size: 0.95rem;
	color: var(--color-text-light);
}

/* Access Section */
.access {
	padding: 120px 0;
	background-color: var(--color-white);
}

.access__content {
	display: flex;
	gap: 80px;
}

.access__info {
	flex: 1;
}

.access__info h3 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.access__info p {
	margin-bottom: 10px;
}

.access__details {
	margin-top: 30px;
}

.access__details p {
	margin-bottom: 5px;
	font-weight: 700;
}

.access__map {
	flex: 1.5;
}

.access__map iframe {
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
	background-color: #222;
	color: var(--color-white);
	padding: 100px 0 40px;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 80px;
}

.footer__logo img {
	height: 24px;
}

.footer__nav ul {
	display: flex;
	gap: 50px;
}

.footer__copyright {
	text-align: center;
	font-size: 0.75rem;
	color: #666;
	border-top: 1px solid #333;
	padding-top: 40px;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero__main-copy {
		font-size: 12vw;
	}
	.concept__inner {
		gap: 50px;
	}
}

@media (max-width: 768px) {
	.header__nav {
		gap: 20px;
	}
	.header__sns {
		display: none;
	}

	.hero__main-copy {
		font-size: 15vw;
	}

	.campaign__banners {
		flex-direction: column;
	}

	.concept__inner {
		flex-direction: column !important;
		text-align: center;
	}

	.welfare__content,
	.rakulease-intro__main {
		flex-direction: column;
		gap: 40px;
	}

	.rakulease-features {
		grid-template-columns: 1fr;
	}

	.flow__steps {
		grid-template-columns: 1fr;
		gap: 60px;
	}

	.access__content {
		flex-direction: column;
	}

	.footer__inner {
		flex-direction: column;
		gap: 40px;
		text-align: center;
	}
	.footer__nav ul {
		flex-direction: column;
		gap: 20px;
	}
}
