@charset "utf-8";

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

}


.top-button {
  text-align: center;
}

.top-nav {
  box-shadow: 0 2px 15px rgba(255, 255, 255, 0.15);
}

/* 基本設定 */
body {
  margin: 0;
  font-family: "游明朝体 Demibold", "Yu Mincho Demibold", "YuMincho-Demibold", "Yu Mincho", serif;
  color: white;
  background-color: black;
}

/* 条件1：メニュー展開時のスクロール禁止用クラス */
body.no-scroll {
  overflow: hidden;
}

/* ハンバーガーボタン */
.hamburger {
  top: 20px;
  right: 20px;
  z-index: 100;
  /* 一番上に配置 */
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  /* position: absolute; */
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  margin-bottom: 8px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

/* メニューが開いた時（×印に変形） */
.hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
  background-color: #fff;
  /* 背景が黒くなるので白に変更 */
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
  background-color: #fff;
}

/* 条件2：オーバーレイ（メニュー以外を薄暗くする） */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  /* 半透明の黒 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 40;
  /* メニューより下に配置 */
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* メニュー本体（右からスライドイン） */
.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  /* 初期状態は画面の右外に隠す */
  width: 300px;
  height: 100vh;
  background-color: #222;
  padding-top: 80px;
  transition: right 0.3s ease-in-out;
  z-index: 50;
  /* オーバーレイより上に配置 */
}

.nav-menu.active {
  right: 0;
  /* 画面内に表示 */
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li a {
  display: block;
  padding: 20px 30px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #444;
}

.nav-menu li a:hover {
  background-color: #444;
}

.hamburger p {
  color: #fff;
}

.header-img {
  width: 60px;
  height: 60px;
  color: white;
  background-color: black;
}

.header-img img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

.top-img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.top-mid {
  margin-left: 10px;
}

.top-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-top {
  position: fixed;
  bottom: 40px;
  left: 20px;
  z-index: 2;
}

.scroll-wrap {
  overflow-x: scroll;
  white-space: nowrap;
  width: 100%;
}

.scroll-wrap img {
  width: 100%;
  height: 100%;
}

.scroll-inner {
  display: flex;
  width: 425px;
  height: 240px;
}

.scroll-inner div {
  width: 100%;
  margin: 0px;
  flex-shrink: 0;
}

div .img {
  width: 425px;
  height: 240px;
}


.about-text {
  position: relative;
  display: inline-block;
  background-color: unset;
  font-family: "游明朝体 Demibold", "Yu Mincho Demibold", "YuMincho-Demibold", "Yu Mincho", serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: rgba(0, 0, 0, 0.75);
  padding: 60px 0;
}

.about-img {
  text-align: center;
  /* padding: 60px 0px; */
  background-image: url(about.webp);
  /* background: linear-gradient(to top, black 0%, black 100%), url(about.JPG); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: brightness(50%); */

}

/* .about-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
} */

.about-wrapper h2 {
  text-align: center;
  padding: 16px 0;
}


.jolly-img {
  width: 100%;
  height: 350px;
  overflow: hidden;
  margin-top: 30px;
}

.jolly-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.jolly-text {
  /* background-color: white;
  color: black; */
  max-width: 600px;
  padding: 40px;
  background-color: white;
  color: black;
}

.jolly-title {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.jolly-name {
  font-size: 32px;
  font-weight: normal;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.jolly-message {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}

.jolly-message p {
  margin-bottom: 25px;
}

.more-link {
  display: block;
  text-align: right;
  text-decoration: none;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

.more-link span {
  margin-right: 10px;
  font-size: 1rem;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.contact-box {
  border: 1px solid white;
  padding: 50px 40px;
  text-align: center;
  max-width: 600px;
  width: 100%;
  box-sizing: border-box;
}

.contact-title {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.15em;
  margin: 0 0 15px 0;
}

.contact-divider {
  border: none;
  border-top: 1px solid white;
  width: 95%;
  margin: 0 auto 25px auto;
}

.contact-text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 0 0 35px 0;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  padding: 12px 50px;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-button:hover {
  background-color: white;
  color: black;
}

.icon-paper-plane {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.swiper {
  width: 100%;
  height: 300px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* background: #eee; */
  width: 425px;
  height: 240px;
}

.swiper-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 全体のレイアウト調整用ラッパー */
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}

/* ロゴ部分（実機ではimgタグへの差し替えを推奨します） */
.logo {
  margin-bottom: 60px;
  width: 50%;
  height: 195px;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ナビゲーション全体（左右カラム） */
.nav-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  /* 左右カラムの間の余白 */
  margin-bottom: 80px;
}

/* リンクの共通スタイル */
.main-content a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
}

a:hover {
  opacity: 0.7;
}

/* 左カラム (TOP 〜 Privacy Policy) */
.nav-left {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* 各項目の縦の余白 */
}

/* 右カラム */
.nav-right {
  display: flex;
  flex-direction: column;
}

.collection-title {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.collection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Collection内のアイテムのインデント */
.collection-list li {
  padding-left: 12px;
}

/* JOLLY MAISONテキスト（Privacy Policyと高さを合わせるように下部に配置） */
.brand-name {
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-top: auto;
  padding-top: 30px;
}

/* コピーライト */
.copyright {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #f0f0f0;
}


body.no-scroll {
  overflow: hidden;
}



.info {
  font-family: "Times New Roman", "Yu Mincho", "MS Mincho", serif;
  padding-bottom: 10px;
}

.scroll-container {
  width: 100%;           /* コンテナの幅 */
  overflow-x: auto;      /* 横方向に内容がはみ出た場合にスクロールを表示 */
  white-space: nowrap;   /* 子要素を改行させずに横一列に並べる */
  background: #f0f0f0;
  padding: 10px;
}

.top-mid {
  display: inline-block; /* 横に並ぶように設定 */
  width: 200px;
  height: 100px;
  background: #007bff;
  color: white;
  margin-right: 10px;
  text-align: center;
  line-height: 100px;
}

.about-img {
  position: relative;
}

.about-bg-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0.5;
}

.collection-wrapper h2 {
  text-align: left;
  padding: 16px 10px;
}

@media (min-width: 767px) {
.pc-responsiv {
  display: none;
}
}

@media (min-width: 767px) {
  /* ブラウザのデフォルトの余白をリセット */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: sans-serif;
}

/* 1. 全体のレイアウト設定 */
.layout-container {
  display: flex;          /* 横並びにする */
  height: 100vh;          /* 画面の高さいっぱいに広げる */
  overflow: hidden;       /* 画面全体のスクロールを無効化する */
  color: #000;
}

/* 2. 両サイドバーの共通設定（固定部分） */
.sidebar {
  /* width: 250px;           サイドバーの幅 */
  background-color: #fff; /* 背景色（白） */
  padding: 40px;
  flex-shrink: 0;         /* 画面が狭くなってもサイドバーを縮めない */
  overflow-y: auto;       /* もしサイドバーの中身が画面より高くなった場合はサイドバー内をスクロールさせる */
	flex: 1;
}
.sidebar a{
	color: black;
	text-decoration: none;
}


/* 3. 真ん中のメインコンテンツ設定（スクロール部分） */
.main-content {
  /* flex-grow: 1;           余った幅を全て占有する */
  background-color: #111; /* 背景色（黒） */
  color: #fff;
  overflow-y: auto;       /* ★ここが重要：縦方向にはみ出した場合のみスクロールバーを出す */
	width: 375px;
}

/* --- 以下は見た目を整えるための装飾です --- */

ul {
  list-style: none;
  padding-left: 0;
}

li {
  margin-bottom: 15px;
  cursor: pointer;
}

.sub-menu {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
	margin-left: 40px;
}
.sub-menu li a{
	position: relative;
}
.sub-menu li a:hover::before {
	content: ">";
	position: absolute;
	left: -20px;
  top: -8px;
	color: black;
  font-size: 25px;

}

/* 真ん中のコンテンツの中央配置など */
.content-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
}

.logo-area {
  width: 150px;
  height: 150px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.scroll-spacer {
  height: 1500px; /* スクロール確認用の高さ */
  width: 1px;
}
  
}

@media (max-width: 767px) {
.layout-container {
  display: none;
}

}


.left-sidebar h2{
	font-family: serif;
}

.left-sidebar h3{
	margin-left: 20px;
}

.right-sidebar {
	padding-top: 80px;
	padding-left: 100px;
}

.right-sidebar a {
  color: black;
  text-align: center;
}

.right-sidebar img {
  object-fit: contain;
  width: 50px;
  height: 50px;
}

.right-sidebar ul li a{
	display: flex;
	align-items: center;
	gap:20px;
	text-decoration: none;
	color: black;
}