@charset "UTF-8";

/* ----------------------------
   リセット＆ベース設定
---------------------------- */
body{
  margin: 0;
  padding: 0;
  list-style: none;
	  font-family: 'Noto Sans JP', 'Source Han Sans JP', 'Helvetica Neue', sans-serif;
	color: #666666;
    font-size: 20px;
}


h1 {
font-family: "raleway", sans-serif;
font-weight: 700;
font-style: italic;
	font-size: 48px;
}


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

p{
	margin: 0;
}

.hidden-pc{
	display: none;
}



@media screen and (max-width: 768px) {
body {
	font-size: 12px;
	}
	
h1 {
	font-size: 24px;
	}

	.hidden-pc{
	display: block;
}
	
}

.menu_button_area {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998; /* メニューボタンよりは下 */
}

.menu_button {
  font-style: Italic;
  -webkit-backdrop-filter: blur(5px);
  align-items: center;
  backdrop-filter: blur(5px);

  /* ✅ 背景色を濃い紫に変更 */
  background: #9163cb;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  box-shadow: 0px 0px 8px 0px rgba(175, 187, 218, 0.3) inset, 0px 0px 16px 0px rgba(255, 255, 255, 0.5);

  /* ✅ テキスト色を白に変更 */
  color: #ffffff;

  font-size: 3rem;
  gap: 4px;
  letter-spacing: 0.05em;
  padding: 4px 20px;
  position: absolute !important;
  right: 30px;
  text-transform: uppercase;
  top: 16px;
  z-index: 9999 !important;
}


.menu_button::before {
  content: "";
  display: block;
  width: 8px;
  border-radius: 50%;
  background-color: #ffffff; /* 元: var(--color-inverse) */
}

/* メニュー本体 */
.menu {
  position: fixed;
  top: 0;
  right: -370px;
  width: 370px;
  height: 100vh;
  background-color: transparent;
  transition: right 0.9s ease;
  z-index: 999;
}

.menu.is_open {
  right: 0;
}

/* メニューベース */
.menu_base {
  position: fixed;
  top: 0;
  width: 370px;
  height: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
background: rgba(145, 99, 203, 0.6);
  z-index: 998;
}

.menu_inner {
  font-family: "Raleway", sans-serif;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 53px;
	text-align: center;
	font-style: Italic;
}

.menu_title {
  color: #9163cb;
  line-height: 1;
text-transform: uppercase;
	font-size: 3rem;
}


.menu_list {
  margin-top: 24px;
		  list-style: none;

		padding-left: 0;
  margin-left: 0;

}

.menu_list li {
  margin:80px 0;
}

.menu_list li a {
  display: block;
  font-size: 3rem;
	  font-style: Italic;
  color: #fff;
  letter-spacing: 0.02em;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.menu_list li a::before {
  content: "";
  display: none; /* 要件に応じて display: block に変更可能 */
  width: 16px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0.5em; /* 元: 0.5lh は無効な値 */
  left: 0;
}

.menu_list li a span {
  display: block;
  margin-top: 4px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}

.menu_list li a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}



@media screen and (max-width: 768px) {

  .menu,
  .menu_base {
    width: 180px;
  }
	
  /* メニューが開いているとき */
  .menu.is_open {
    right: 0;
  }

  /* ボタンのサイズを調整 */
  .menu_button {
    padding: 4px 10px;
    top: 12px;
    right: 5px;
	font-size: 1.2rem;
  }

  /* タイトルフォントサイズ縮小 */
  .menu_title {
    font-size: 1.2rem;
  }

  /* メニュー項目の文字サイズを調整 */ 
  .menu_list li a {
    font-size: 1.2rem;
    height: auto;
	  line-height: 1;
  }

  .menu_list li a span {
    font-size: 1.2rem;
	}

  .menu_inner {
    padding: 80px 0;
    padding-bottom: 40px;
  }
	
	  .menu_list li  {
	margin: 40px 0;
	}

}




/* ----------------------------
   スライダー共通
---------------------------- */
.slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9; /* 高さを横幅に合わせて自動調整 */
  overflow: hidden;
}

.slider img {
  position: absolute; /* ←絶対配置 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 1s ease;
}

.slider img.active {
  opacity: 1;
  z-index: 1;
}

/* ----------------------------
   スマホ用
---------------------------- */
@media screen and (max-width: 768px) {
  .slider {
    /* 高さは自動、横幅いっぱいに */
    height: auto;
  }

  .slider img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}


/* ----------------------------
   セクション
---------------------------- */
.info_wrapper{
	margin-top: 100px;
}

.section-title {
  color: #9163cb;
  text-align: center;
  position: relative;
 margin-bottom: 50px;
}

.sub-title{
	color: #666666;
	font-weight: bold;
	margin-top: 0;
	font-size: 30px;
}

.section-title h1 {
	margin: 0;
    padding-bottom: 5px; /* 好きな数値に調整 */
}




.about-text{
	text-align: center;
}


.info-list{
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px; /* スマホ用余白 */
  box-sizing: border-box;
}



.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px; /* 日付と本文の間隔 */
}

.info-date {
  min-width: 110px; /* 日付の幅を固定 */
}

.info-text {
  flex: 1;
	margin-bottom: 10px;
}

.info-text a {
  color: inherit;        /* 親要素の文字色を使う */
  text-decoration: none; /* 下線を消す */
}

.info-text a:hover {
  color: #9163cb;        /* ホバー時の色（お好みで変更） */
}

.info-toggle-btn {
  display: block;
  margin: 20px auto 0;
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
	background-color: #dedede;
}





@media screen and (max-width: 768px) {
	
.section-title {
	margin-bottom: 20px;
}
.sub-title{
	    margin-top: 0px;     /* 上の余白をなくす */
	font-size: 15px;
		letter-spacing: 0.01em;
	}
	
.about-text{
	text-align: center;
	line-height: 1.5rem;
	padding-bottom: 4rem;
	margin: 0 10px;
	}	
	

	
  .info-item {
    flex-direction: column;
    gap: 4px;
  }

  .info-date {
    min-width: auto; /* 固定幅を解除 */
    font-size: 0.9em;
  }
	
}

/* 最初はどちらも非表示にしておく */
.mobile-text,
.desktop-text {
  display: none;
}

/* モバイル画面（932px以下）：モバイル用テキストを表示 */
@media screen and (max-width: 768px) {
  .mobile-text {
    display: inline;
  }
}

/* デスクトップ画面（933px以上）：デスクトップ用テキストを表示 */
@media screen and (min-width: 768px) {
  .desktop-text {
    display: inline;
  }
}


/* ----------------------------
   情報リスト
---------------------------- */



.item_link:hover {
  color: #9163cb;
}

.date {
  white-space: nowrap;
  color: #333;
  width: 6em;
}

.text {
  flex: 1;
  color: #555;
}

.item {
  flex-direction: column;
  align-items: center;
  margin: 0px auto;
}

.item_link {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  color: inherit;
  transition: color 0.3s;
	width: 100%;
}

@media screen and (max-width: 768px) {
	.item_link{
	line-height: 1.2em;
		  gap: 0;
	}	
	.info_wrapper{
		align-items: center;
	}
.item {
	padding: 20px 0;
	}
	
	.date{
		margin-bottom: 8px;
	}	
}
/* ----------------------------
   動画
---------------------------- */
.video_wrapper {
  margin: 150px auto;
  max-width: 1200px;
}

.video-container {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}


.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: absolute;
  left: 0;
}


@media screen and (max-width: 768px) {
.video_wrapper {
	margin: 100px 10px;
	}
}

.section-grid {
  position: relative;
  min-height: 3000px;
 margin: 0 auto;
  max-width: 1200px;

}


.section-grid {
  position: relative;
  min-height: 3000px;
 margin: 0 auto;
  max-width: 1200px;

}


  .section-grid {
	  margin-top: 100px;
}


/* 共通スタイル */
.box {
  position: absolute;
  padding: 0.5em;
}

/* 個別配置（中央寄せ前提で left を再調整） */
.box2 { left: 57%; width: 600px;}
.box3 { top: 16%; left: 57%; }
.box4 { top: 21%; left: 37%; }
.box5 { top: 30%; }
.box6 { top: 40%; left: 40%; width: 600px;}
.box7 { top: 40%; left: 85%; }
.box8 { top: 51%; left: 30%; }
.box9 { top: 65%; }
.box10 { top: 65%; left: 55%; width: 600px;}
.box11 { top: 73%; left: 55%; }

/* 画像 */
.box img {
  border-radius: 15px;
  display: block;
}


.box h2{
	font-size: 26px;
 color: #9163cb;
	margin-bottom: 0;
	font-weight: bold;
}

.box2{
	margin-top: 10px;
}

.box6{
	margin-top: 10px;
}

.box10{
	margin-top: 10px;
}



	
@media screen and (max-width: 1300px) {
/* セクショングリッドを縦並び + 中央揃え */
	  .section-grid {
    display: flex;
    flex-direction: column;  /* 縦並び */
    align-items: center;     /* 中央揃え */
    box-sizing: border-box;
		  text-align: center;
  }

  .section-grid .grid-box {
    width: 100%;
  }

  .section-grid .box {
    position: relative;      /* absoluteを解除 */
    width: 100%;             /* 横幅いっぱいに */
    max-width: 100%;        /* 最大幅を指定（任意で調整） */
    margin-bottom: 20px;     /* 縦間隔 */
    left: auto;              /* 左位置リセット */
    right: auto;             /* 右位置リセット */
	margin: 0 auto;
	  	padding: 10px 0;
  }
	
	.box img {
	  margin: 0 auto;
	}
}
	
	
/* スマホ時に絶対配置を解除して縦並び・中央寄せ */
@media screen and (max-width: 768px) {

	  .section-grid .grid-box {
		  width: 90%;
	}
	
  .section-grid .box h2 {
    font-size: 16px;       /* タイトルサイズ調整 */
    text-align: center;
  }

  .section-grid .box span {
    text-align: center;
  }

	  .box img {
    width: 90%;   /* 親ボックスの幅に合わせる */
    height: auto;  /* 縦横比を維持 */
    display: block;
    margin: 0 auto;
  }
	
	
	  .box4 img, .box7 img {
    max-width: 40%;
    height: auto;
  }
}  


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

.box {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.box.animate {
  animation-name: fadeUp;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

/* 順番に表示させるための遅延 */
.box1.animate,.box3.animate,.box4.animate,.box5.animate,.box6.animate,.box7.animate,.box8.animate,.box9.animate  
{ animation-delay: 0.5s; }

@media screen and (max-width: 768px) {
  .box1.animate,
  .box2.animate,
  .box3.animate,
  .box4.animate,
  .box5.animate,
  .box6.animate,
  .box7.animate,
  .box8.animate,
  .box9.animate,
  .box10.animate,
  .box11.animate {
    animation-delay: 0s !important; /* ← スマホ時はすべて即時開始 or 無効 */
  }
}


/* アニメーション定義 */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーション対象の初期状態 */
.animate-target {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 表示トリガー */
.animate-target.animate {
  animation: fadeUp 0.8s ease-out forwards;
}

.lineup-section {
  max-width: 1200px; /* セクション全体の幅 */
  margin: 500px auto 0;
  text-align: center;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .lineup-section {
    margin: 100px 10px;
  }
}

/* グリッドの基本設定 */
.product-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
  justify-content: center;
}

/* 1行目：2列 */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 2行目：3列 */
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* 商品カード */
.product-card {
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.product-card img {
  object-fit: cover;     /* アスペクト比を保ったまま中央トリミング */
  border-radius: 8px;
  display: block;
	margin: 0 auto;
	height: 50%;
}

.product-card:hover {
  transform: scale(1.03);
}

.product-card p {
  font-weight: bold;
}


.size-container {
  display: flex;
  justify-content: center;     /*  中央揃えにする */
  gap: 5px;
  flex-wrap: nowrap;           /*  折り返さない */
  overflow-x: auto;            /*  横スクロール（必要に応じて） */

  /* オプション：スクロールバー非表示 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.size-container::-webkit-scrollbar {
  display: none;
}


.size-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  color: #999999;
  text-decoration: none;
	line-height: 1;
}

.size-btn:hover {
  color: #9163cb;
}


.unit {
  margin-top: -10px;
	font-size: 1.2rem;
}

.size-detail {
  margin-top: 4px;
  color: #777;
}

.big-number{
	font-size: 3rem;
}

@media screen and (max-width: 1300px) {
  /* 商品グリッドを縦並びに */
  .product-grid {
	  margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
	  width: 100%;
  }

  .product-card p {
    text-align: center;
	margin: 0;
  }
	
	.product-card img {
		width: 60%;
		margin: 0 auto;

	}

  /* サイズボタン横スクロールを解除して縦並びに変更 */
  .size-container {
    flex-wrap: wrap;         /* 折り返しを許可 */
    justify-content: center; /* 中央寄せ */
    overflow-x: hidden;      /* 横スクロール禁止 */
    width: 100%;             /* 幅を画面に収める */
    gap: 16px;
    padding: 0 10px;
    box-sizing: border-box;
	  margin-top: 10px;
  }

  .big-number {
    font-size: 2rem;
  }
  .unit{
    font-size: 15pt;
  }


  .cm {
    font-size: 12pt;
  }

}

.mbp-section {
  margin: 150px auto;
  max-width: 1200px;     /* 全体幅を固定 */
	
  box-sizing: border-box;
}

.mbp-content {
  display: flex;
  justify-content: space-between; /* 画像とテキストの間を均等に */
  align-items: center;            /* 高さを中央揃え */
  gap: 2.5rem;                       /* 余白 */
  flex-wrap: nowrap;              /* 折り返さない（横並びを維持） */
  width: 100%;
}

.mbp-image {
  flex: 0 0 50%; /* 幅の比率を指定（45%：画像側） */
}

.mbp-image img {
  width: 100%;              /* コンテナ幅に合わせる */
  height: auto;
  border-radius: 10px;
  display: block;
}

.mbp-text {
  flex: 1;                  /* 残りスペースを使用 */

  margin: 0;
}

.mbp-text img {
  margin: 25px 0;
  display: block;
}

.mbp-text button {
  border: none;
  border-radius: 20px;
  background-color: #9163cb;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
	padding: 2px 50px;
}

.mbp-text button:hover {
  background-color: #7a4db9;
}

/* スマホ用調整 */
@media screen and (max-width: 768px) {
  .mbp-section {
    margin: 20px auto; 
    width: 95%; /* 画面幅に少し余裕を持たせる */
  }

  .mbp-content {
    flex-direction: column; /* 縦並び */
    align-items: center;
    gap: 2em;
  }
	
	  .mbp-image {
    width: 300px; /* 画像コンテナを幅いっぱいに */
  }
	
  .mbp-image img {
    width: 100%;   /* 画像がはみ出ない */
    height: auto;
    border-radius: 10px;
  }
	
  .mbp-text {
    width: 100%; /* テキストも幅いっぱい */
    text-align: center; /* 中央寄せ */
  }

  .mbp-text img {
    max-width: 80%; /* ロゴは少し小さめ */
    margin: 15px auto;
  }

  .mbp-text button {
    font-size: 1rem;
    padding: 10px 30px;
  }
}


.footer{
	text-align: center;
	margin: 300px auto 0;
}

.footer p{
	padding: 5px 0;
}


.copyright{
	margin-top: 60px;
	font-size: 10pt;
}

.sns{
	display: flex;
  align-items: center;      /* 上下中央 */
  justify-content: center;  /* 左右中央（不要なら削除） */
  gap: 30px;
}

@media screen and (max-width: 768px) {
	.footer{
		margin: 100px 10px 10px;
	}
	
	.sns img{
		width: 50px;
	}
}
	
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 96px;
  height: 96px;
  background: none; /* 背景色なし */
  border: none;
  border-radius: 50%; /* 円形にしたい場合 */
  cursor: pointer;
  opacity: 0.7;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;

  /* 中央揃え用 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* ボタン内の画像設定 */
.scroll-top-btn img {
  height: auto;
  display: block;
  border-radius: 50%; /* 画像を円形にしたい場合 */
}

/* 表示時 */
.scroll-top-btn.show {
  opacity: 0.7;
  visibility: visible;
}

/* ホバー効果（画像ベースなので不要なら削除OK） */
.scroll-top-btn:hover img {
  filter: brightness(1.1);
  transform: scale(1.05);
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
.scroll-top-btn  {
	right: 0px;
	bottom: 0px;
	}
	
.scroll-top-btn img {
	width: 50%;
	}

}





/* MBPページ */

/* ナビゲーションバー */
.navbar {
  position: fixed; /* メイン画像の上に重ねる */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(145, 99, 203, 0.5); /* 半透明で画像が見える */
  color: white;
  z-index: 10; /* 他より上に表示 */
	height: 100px;
}


/* ロゴ部分 */
.top-logo {
  font-weight: bold;
	margin-left: 30px;
}

.nav-links {
  display: flex;
  align-items: center;
	margin-right: 20px;
}

.nav-home {
  font-size: 30px;   /* ← ここで大きさ調整 */
  letter-spacing: 0.05em;
	font-family: "Raleway", sans-serif;
    font-style: italic;
	margin-right: 20px;
}


/* ナビリンク */
.nav-links a {
  color: white;
  text-decoration: none;
}

.main-image {
  width: 100%;
  overflow: hidden;
}

.main-image img {
  width: 100%;     /* 横幅いっぱい */
  height: auto;    /* 縦は比率を維持して自動調整 */
  display: block;  /* 画像下の余白対策 */
}

.nav-right a{
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.lang-btn {
  text-decoration: none;
  color: #fff;
  padding: 4px 10px;
	border-radius: 5px;
}



.lang-btn.active {
  font-weight: bold;
  color: #fff;
}

.lang-sep {
  margin: 0 4px;
  color: #000;
}

/* 日本語ページ用 */
.lang-btn.active:lang(ja) {
  background-color: #000;
}

/* 英語ページ用 */
.lang-btn.active:lang(en) {
  background-color: #000;
}


@media screen and (max-width: 768px) {
  .navbar {
    height: auto;
  }

  .nav-links {
    display: flex;
    justify-content: center;
  }


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

  .navbar img {
    width: 50%;
	  align-content:center;
  }
	
	.nav-home{
		font-size: 16px;
		margin: 0 10px;
	}

.main-logo img {
  position: absolute;
  top: 150px;
  left: 50%;                    /* 👈 画面の中央に */
  transform: translateX(-50%);  /* 👈 画像の半分だけ左にずらして中央揃え */
  z-index: 10;
  width: 350px;                 /* 👈 半分のサイズ */
  height: auto;
  object-fit: cover;
}
	
	.lang-switch a{
		font-size: 10px;
	}
}
	


.mbp-about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: nowrap; /* ← wrapしないように */
}

.mbp-about-image {
  text-align: center;
}

.mbp-about-image img {
  height: auto;
  border-radius: 30px;
}

.mbp-about-text {
	text-align: left;
	    line-height: 3rem;         /* 行間も詰め気味に */
}

.en-about-text{
	line-height: 1.5;
}


@media screen and (max-width: 768px) {
  .mbp-about-content {
    flex-direction: column;      /* 縦並びに */
    align-items: center;         /* 中央揃え（左右） */
    justify-content: center;     /* 中央揃え（上下） */
    text-align: center;          /* テキストも中央寄せ */
    gap: 2em;                    /* スマホでは少し狭めに */
  }

  .mbp-about-text {
    line-height: 1.5;         /* 行間も詰め気味に */
	  text-align: center;
	}

.mbp-about-image img {
    max-width: 80%;
    height: auto;
    display: inline-block; /* 中央揃えのために追加 */
  }
	.mbp-about-image {
    text-align: center;
    width: 100;
  }
	
}


.highlight {
  color: #9163cb; /* 好きな色に変更OK */
  font-weight: bold; /* 太字にしたい場合 */
}



.mbp-btn {
  text-align: center; /* ボタンも文章も中央揃え */
  margin-top: 50px;   /* 必要に応じて間隔調整 */
 position: relative;
  text-align: center;
}

.btn-directory {
  border: none;
  border-radius: 20px;
  background-color: #9163cb;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
  text-align: center;
  padding: 2px 40px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 31px;
}

.mbp-btn button:hover {
  background-color: #7a4db9;
}

.bth-bottom {
  display: block;       /* フレックスは不要 */
  margin-top: 10px;     /* ボタンとの間隔 */
  text-align: center;   /* 中央揃え */
  line-height: 1.5;     /* 複数行でも中央に見えるように */
  color: #333;          /* 文字色 */
}

/* クリックを完全に殺す */
.coming-soon .btn-link {
  pointer-events: none;
}

/* 上に重ねる */
.coming-soon-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 40px; /* ボタンの高さに合わせる */
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 0, 0, 0.4);
  color: #333;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.1em;
  pointer-events: none; /* オーバーレイ自体も無効 */
}

/* ボタンを「押せそうだけど押せない」見た目に */
.coming-soon .btn-directory {
  opacity: 0.5;
  cursor: not-allowed;
}

@media screen and (max-width: 768px) {
  .btn-directory {
	  font-size: 18px;
	  padding: 10px 40px;
	  border-radius: 60px;
	  width: 100%;
  }
	
	.bth-bottom{
		font-size: 10px;
		line-height: 1.2;
	}
	
	.coming-soon-overlay{
		width: 100%
	}
}


.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
	max-width: 100%;
		  		margin-bottom: 50px;

}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr); /* スマホでは2列 */
	gap: 5px;
  }
}


.feature {
  text-align: center;
 
}

.feature img {
  display: block;
  margin: 0 auto;
	width: 50%
}

.caption {
	font-weight: 500;
  margin-top: 8px;
}


.caption-bottom{
	font-weight: 400;
}



.profile-grid {
  max-width: 1200px;
  margin: 100px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 20px;
}

.person {
	width: 250px;
}



.profile-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
	text-align: left;
}

.name {
	color: #9163cb;
  font-size: 31px;
  font-weight: bold;
	
}

.en-name{
	font-size: 20px;
}

.company {
  font-size: 16px;
}

.instagram{
  font-size: 16px;
}

.homepage{
  font-size: 16px;
}


.instagram img {
  width: 30px;
  vertical-align: middle;
  margin-right: 6px;
}

.homepage a {
  font-size: 0.95rem;
}

@media (max-width: 1200px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

/* スマホ対応 */
@media (max-width: 768px) {
	.person {
	width: 150px;
}
  .profile-grid {
    grid-template-columns: 1fr; /* 1列に */
    gap: 20;
	  margin-top: 0;
  }
  
  .profile-card {
    flex-direction: column; /* 縦並び */
    align-items: center;
    text-align: center; /* 真ん中寄せ */
	  gap: 0;
  }
	
	.name{
	font-size: 20px;
}

  .profile-info {
    text-align: center; /* 文字も中央に */
  }
	
	.caption{
		font-size: 10px;
	}
}


.rounded-box {
  display: inline-block; /* ← これを追加！ */
  border: none;
  border-radius: 50px;
  background-color: #9163cb;
  color: #fff;
  font-size: 36px;
  transition: background 0.3s;
  text-align: center;
  padding: 2px 20px; /* ← 横の余白を調整 */
	font-family: "Raleway", sans-serif;
    font-weight: 700;
    font-style: italic;
}


.exam-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
	 background: #fff;
     border: 5pt solid #c8b1e5;
     border-radius: 60px;
     padding: 40px;
	margin: 0 auto 70px;  /* ← これで中央配置になる */
}



.exam-title .main-text {
    margin-top: 16px;
}

/* 左右並び */
.exam-row {
    display: flex;
    align-items: center; /* 上下中央 */
}

.exam-left {
	text-align: left;
	font-weight: bold;
	color: #9163cb;
}



.exam-right img {
    height: 300px;
}

/* 下部 */
.exam-bottom {
	text-align: left;
}





.exam-title-sub{
	    font-weight: bold;
		  font-size: 26px;
		margin-top: 5px;

}




.border-radius-box {
  border: none;                 /* 枠を消す */
  border-radius: 0;             /* 角丸解除 */
  font-size: 2rem;
  font-weight: bold;
  color: #9163cb;
  display: inline-block;        /* 下線幅を文字に合わせる */
  border-bottom: 4px solid #9163cb; /* 下線 */
}


.exam-row.center {
  justify-content: center;   /* 横方向中央 */
}

.exam-row.center .exam-left {
  text-align: center;        /* 中の文字も中央 */
}




.text-box{
	background-color: #eee8f9;
	color: #333;
	text-align: left;
	padding: 20px;
	font-size: 1rem;
	margin: 0 auto;
}

.text-box ul {
    margin: 10px 0;      /* 上下余白 */
    padding-left: 0px;  /* インデント */
	list-style: none;
}

.text-box li {
    line-height: 1.5;
		      margin-bottom: 6px;
	text-indent: -1em;
  padding-left: 1em;
}

.text-box li::before {
  content: '・';
}



.underline{
	 text-decoration: underline;
    font-weight: 600;
}

.second{
	margin-top: 50px;
}



/* 全体 */
.step-section {
	text-align: left;
    margin-bottom: 32px;
}



/* STEP1 書類審査 */
.step-title p {
    margin: 0;
    font-weight: bold;      /* 太字 */
    color: #9163cb;        /* 紫文字 */
}

/* 説明文 */
.step-text {
    margin: 0;
}

/* 3stepタイトル部分 */
.five-step-title {
    background-color: #c8b1e5; /* 紫 */
    margin-bottom: 24px;
    text-align: left; /* 中央揃え */
	padding: 5px 20px;
}

.five-step-title p {
    margin: 0;
    color: #ffffff;  /* 白文字 */
    font-weight: 700; /* 太字 */
    font-size: 1.5rem;
}

.five-step-box{
	margin-top: 50px;
}




.schedule-image-wrap {
  position: relative;
  text-align: center;
  margin: 0 auto;
}

.schedule-image-wrap img {
  display: block;   /* 余白対策 */
  max-width: 100%;
  height: auto;
}

.schedule-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #8f6bcf;
	  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
  overflow-wrap: break-word;
}

.schedule-text p{
	padding: 10px;
}

.schedule-date {
  font-size: 36px;
  font-weight: bold;
}

.schedule-place {
  font-size: 20px;
}

.schedule-date-registration {
  font-size: 36px;
  font-weight: 500;
  display: block;      /* ← inline-block → block に変更 */
  position: relative;
  padding-bottom: 1px; /* 文字と下線の間隔 */
  text-align: center;  /* 中央寄せしたい場合 */
}

.registration-overlay {
  position: relative;  /* overlayの基準にする */
  display: block;      /* 横幅いっぱいに */
  width: 100%;
}

.overlay-text {
  position: absolute;
  inset: 0; /* 上下左右0で親要素いっぱいに */
  background: rgba(128, 128, 128, 0.6); /* 半透明グレー */
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
 padding: 30px 10px; /* 上下の余白を増やす */	
}


.strong{
	padding: 10px;
	font-weight: bold;
}

/* アンカーリンクで飛んだときに画面中央に見えるように調整 */
.document-btn {
  scroll-margin-top: 50vh; /* 画面中央の高さ分スクロール余白 */
}

#document-btn .disabled-tab {
  display: inline-block;
  padding: 2px 40px;   /* ← 2pxだと上下が薄すぎるので修正 */
  background: rgba(128, 128, 128, 0.6); /* 薄いグレー */
  color: #fff;
  border-radius: 20px;
  cursor: default;
  pointer-events: none;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 31px;
  text-align: center;
}


/* スマホ対応 */
@media (max-width: 768px) {
	.exam-box{
		padding: 20px;
		margin-bottom: 20px;
	}
	
	
    .exam-row {
        flex-direction: column;
        align-items: center; /* 中央揃え */
        gap: 20px; /* 要素間の余白 */
		width: 100%;
		margin: 0 auto;
    }

    .exam-left, .exam-right {
        flex: none; /* スマホでは自動で幅を取る */
    }

    .exam-right img {
        height: 200px; /* 縦横比を保持 */
    }

	.exam-bottom{
		margin-bottom: 20px;
	}

	
	.text-box ul,.text-box p{
		font-size: 10px;
	}


	
	.rounded-box{
		font-size: 20px;
	}
	
	.exam-title-sub{
		font-size: 16px;
	}
	
	.five-step-title p {
		font-size: 16px;
	}	
	

	
	.border-radius-box{
		text-align: center;
		font-size: 22px;
		margin: 10px;
	}
	
  .schedule-date {
    font-size: 16px;
  }
  .schedule-place {
    font-size: 14px;
  }

	.schedule-date-registration {
		font-size: 16px;
	}
	
	.schedule-text p{
	padding: 5px;
}
	
	.schedule-date-registration::after {
		  height: 2px;                    /* 線の太さ */
	}
	
	 .schedule-overlay p {
    font-size: 15px;
  }
	
  #document-btn .disabled-tab {
    display: block;
    width: 100%;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 60px;
    box-sizing: border-box;
  }
	
	.schedule-date-registration::after {
    white-space: normal;   /* 改行許可 */
		font-size: 14px;
    padding: 10px;
  }
	
	.overlay-text {
		font-size: 14px;
				padding: 20px;
	}
	
	.overlay-text-en{
		font-size: 10px;
	}
}


