@charset "UTF-8";

/* ==========================================
   ベース設定
========================================== */
html, body {
  overflow-x: hidden; /* ✅ 横スクロール防止 */
  background-color: #FFFEFA;
  background-image: url("../img/background.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  font-family: "Noto Sans JP", sans-serif;
  color: #472C00; 
margin: 0;       /* ★ここを追加（外側の余白をゼロに） */
  padding: 0;      /* ★ここを追加（内側の余白をゼロに） */
}

/* 画像を親幅いっぱいに */
img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================
   全体ラッパー（PCの最大幅1200px）
========================================== */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: auto;
}

.content {
  position: relative;
}

/* ==========================================
   【修正】PC用追従ボタン（静止・右端固定）
========================================== */
.seminar-bt {
  position: fixed;
  z-index: 9999;
  top: 200px;       /* 上からの位置（お好みで調整してください） */
  right: 0px;       /* 画面の右端にベタ付け */
  width: 200px;     /* ボタン枠の幅（画像の大きさに合わせて調整） */
  display: block !important;
}

/* アニメーションを削除し、右に押し付ける設定 */
.seminar-bt .button {
  width: 90%;       /* ボタン本体のサイズ（お好みで調整してください） */
  height: auto;
  display: block;
  margin: 0 0 0 auto; /* ★追加：左側の余白を自動にして右に押し付ける */
  
  /* ★修正：アニメーション（animation: ...）の記述を完全に削除しました */
  animation: none !important; 
  transform: none !important; /* 万が一残っている変形もリセット */
}

/* 不要になった @keyframes zoomin, zoomin-right の記述は削除してOKです */

/* ==========================================
   【スマホ表示】スマホの時はPC用ボタンを消す
========================================== */
@media screen and (max-width: 767px) {
.seminar-bt .button {
    display: none !important;
  }
}

.cta {
  width: 528px;
  margin: 100px auto;
}

#CTA-2 {
  position: absolute;
  bottom: 6.5%;
  left: 50%;
  transform: translateX(-50%);
}

#CTA-3 {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}

#CTA-4 {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

/* ==========================================
   各エリアの画像レイアウト（装飾・メイン）
========================================== */
/* area01 */
.area01-b {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 0;
  width: 100%;
}
.area01 {
  position: relative;
  z-index: 10;
  display: block;
  padding: 10px;
  width: 90%;        /* 左右に余白をもたせる */
  margin: 10px auto; /* 中央寄せ */
}

/* area02 */
.area02-b {
  position: absolute;
  z-index: 1;
  bottom: -75px;
  /* ★固定pxから％指定に変更（元の画面比率に調整） */
  left: -15%; 
  width: 30%; 
}
.area02 {
  position: relative;
  z-index: 10;
  display: block;
  width: 90%;        /* ★追加：左右に余白をもたせる */
  margin: 10px auto; /* ★追加：中央寄せ */
}

.area02img {
  width: 90%;
  margin: 10px auto;
}

/* area03 (program) */
.area03-b {
  position: absolute;
  z-index: 1;
  top: 17%;
  right: 0px;
  /* ★固定pxから％指定に変更 */
  width: 30%;
}
.area03 {
  position: relative;
  z-index: 10;
  display: block;
  width: 90%;        /* ★追加：左右に余白をもたせる */
  margin: 10px auto; /* ★追加：中央寄せ */
}

/* area04 (point) ★04.png用に追加 */
#point picture {
  position: relative;
  z-index: 10;
  display: block;
  width: 90%;        /* 左右に余白をもたせる */
  margin: 10px auto; /* 中央寄せ */
}

/* area05 (review) */
.area05-b2 {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}
.area05-b {
  position: absolute;
  z-index: 2;
  top: -10%;
  left: -7%;
  width: 25%;
  max-width: 100%;
}
.area05-main {
  position: relative;
  z-index: 0; /* HTMLで指定があるため0にしています */
  display: block;
  width: 90%;        /* ★追加：左右に余白をもたせる */
  margin: 10px auto; /* ★追加：中央寄せ */
}

.area06 img {
  width: 409px;
}

/* ==========================================
   FAQ関連
========================================== */
#q-a {
  margin-top: 70px;
}

.faq-title {
  display: block;
  width: 300px;
  max-width: 100%;
  margin: 30px auto 50px auto;
}

.faq-container {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

details {
  margin-bottom: 15px;
  background-color: #FFFFFF;
  padding: 0 12px;
}

summary {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F29E29; 
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  list-style: none;
  position: relative;
}

summary::-webkit-details-marker {
  display: none;
}

details[open] summary {
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #F29E29;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
  font-family: Arial, sans-serif;
  position: relative;
  margin-right: 15px;
  flex-shrink: 0;
}

.q-icon::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 2px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  transform: rotate(-30deg);
}

.q-text {
  flex-grow: 1;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  padding-right: 30px;
  text-align: center; 
}

summary::after {
  content: "＋";
  position: absolute;
  right: 20px;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

details[open] summary::after {
  content: "−";
}

.answer {
  color: #333333;
  padding: 20px;
  font-size: 16px;
  margin: 0;
  background-color: #FDF8F0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

/* ==========================================
   セミナー一覧（CMS部分）
========================================== */
.seminar-title-img {
  width: 20%;
  margin: 100px auto 60px auto;
}

.seminar-card {
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: #fff;
  border: 6px solid #ED6D35;
  border-radius: 16px;
  overflow: hidden;
}

.seminar-header {
  background-color: #ED6D35;
  padding: 15px 20px;
}

.seminar-title {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.seminar-body {
  padding: 30px;
}

.seminar-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

.seminar-info-wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.seminar-details {
  flex: 1;
}

.seminar-details dl {
  margin: 0;
}

.detail-row {
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.detail-row dt {
  width: 80px;
  flex-shrink: 0;
}

.detail-end{
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.detail-end dt {
  width: 80px;
  flex-shrink: 0;
}

.label {
display: inline-block;
    background-color: #ED6D35;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 16px;
    border-radius: 20px;
    text-align: center;
}

.detail-row dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
	/* ▼ ここから追加：長いURLなどを枠内で強制的に折り返す ▼ */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

.detail-end dd {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
	/* ▼ ここから追加：長いURLなどを枠内で強制的に折り返す ▼ */
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

.seminar-visuals {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.seminar-image {
  width: 100%;
  height: auto;
}

.seminar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #E3BB58, #BA8812);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

.seminar-btn:hover {
  opacity: 0.8;
}

.btn-icon {
  margin-right: 8px;
}

/* もっと見るボタン機能 */
#seminar-list-container .seminar-card:nth-child(n+4) {
  display: none;
}

#seminar-list-container.is-open .seminar-card:nth-child(n+4) {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   講座がない時のメッセージ
========================================== */
.no-seminar-msg {
  text-align: center; /* 文字を真ん中寄せ */
  font-size: 16px;
  font-weight: bold;
  color: #ED6D35; /* オレンジ色に */
  background-color: #FDF8F0; /* 薄いオレンジの背景 */
  padding: 40px 20px; /* 内側の余白（上下ふっくら） */
  border-radius: 10px; /* 角を丸く */
  margin: 30px auto; /* 外側の余白 */
  width: 90%; /* スマホでもはみ出ないように */
  max-width: 600px;
}

/* ==========================================
   「過去の日程はこちらから / 閉じる」ボタン（CSS版）
========================================== */
button.btn-center {
  display: block;
  margin: 40px auto;
  appearance: none;
  -webkit-appearance: none;
  background-color: #FF3D00; /* 鮮やかなオレンジ */
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  font-family: inherit;
  padding: 35px 20px;
  
  /* 白枠と角丸、影の設定 */
  border: 4px solid #FFFFFF;
border-radius: 80px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 500px;
}

button.btn-center:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}
/* ==========================================
   「過去の日程はこちらから / 閉じる」ボタン
========================================== */
#show-past-btn {
  display: block;
  margin: 40px auto;
  appearance: none;
  -webkit-appearance: none;
  background-color: #FF3D00; /* 鮮やかなオレンジ */
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  font-family: inherit;
  
  /* ★ご指定のパディング（縦にふっくら） */
  padding: 35px 20px; 
  
  /* 白枠と角丸、影の設定 */
  border: 4px solid #FFFFFF;
  border-radius: 80px; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); 
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90%;
  max-width: 500px;
}

/* マウスを乗せた時の沈み込みアニメーション */
#show-past-btn:hover,
#hide-past-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* ==========================================
   【スマホ表示】ボタンのサイズ調整
========================================== */
@media screen and (max-width: 767px) {
  #show-past-btn {
    font-size: 18px;
    /* スマホでは画面のバランスに合わせて少し縦幅を縮めます */
    padding: 20px 20px; 
    margin: 30px auto;
  }
}

/* ==========================================
   「閉じる」画像ボタン用（※画像を使用する場合の控え）
========================================== */
.cta.cta-close {
  width: 25% !important;     /* 幅を25%にする（!importantで確実に上書き） */
  margin-top: 40px !important; /* 上の余白 */
  margin-bottom: 20px !important; /* 下の余白 */
  margin-left: auto !important;   /* 中央寄せ維持 */
  margin-right: auto !important;  /* 中央寄せ維持 */
}

/* ==========================================
   お問い合わせフォーム
========================================== */
.form-title-img {
  width: 40%;
  margin: 100px auto 60px auto;
}

.contact-form-wrapper {
  max-width: 500px; 
  margin: 0 auto;   
}

.form-group {
  margin-bottom: 25px; 
}

.form-group label {
  display: block; 
  font-size: 15px;
  font-weight: bold;
  color: #4A3A2A; 
  margin-bottom: 10px; 
}

.required {
  color: #E60012; 
  font-size: 18px;
  margin-left: 4px;
  vertical-align: middle; 
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  box-sizing: border-box; 
  padding: 15px;          
  font-size: 16px;        
  color: #333333;
  background-color: #FBFBFB; 
  border: 1px solid #E2E2E2; 
  border-radius: 6px;        
  font-family: inherit;      
  transition: all 0.3s ease; 
}

.form-group textarea {
  resize: vertical; 
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #C8C8C8;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none; 
  border-color: #F29E29; 
  background-color: #FFFFFF; 
  box-shadow: 0 0 5px rgba(242, 158, 41, 0.3); 
}

.submit-btn-wrap {
  margin-top: 40px;
  text-align: center;
}

.submit-btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  padding: 30px 10px;
  background-color: #00C300;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: bold;
  border: 4px solid #FFFFFF;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  font-size: 22px;
}

.submit-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

/* ==========================================
   YouTube 埋め込み
========================================== */
iframe {
  display: block;
  margin: 100px auto 0 auto;
  width: 90%;
  max-width: 640px;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* ==========================================
   PC用ヘッダー（白背景）
========================================== */
.site-header {
  background-color: #ffffff; /* 白背景 */
  width: 100%;
  border-bottom: 1px solid #E2E2E2; 
  /* position: sticky; top: 0; z-index: 9000; */
}

.header-inner {
  max-width: 1200px;   
  margin: 0 auto;      
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 15px 20px;  
  box-sizing: border-box;
}

/* ==========================================
   左側：ロゴとキャッチコピー
========================================== */
.header-logo-area {
  display: flex;
  flex-direction: column;
}

.catchphrase {
  font-size: 11px;
  font-weight: bold;
  color: #555555;
  margin: 0 0 5px 0; 
  padding: 0;
}

.logo {
  margin: 0;
}

.logo img {
  height:70px;
  width:auto;
  display: block;
}

/* ==========================================
   右側：PC用ナビゲーション
========================================== */
.nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  position: relative;
}

.nav-list a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #472C00;
  padding: 0 12px; 
  transition: opacity 0.3s;
}

.nav-list a:hover {
  opacity: 0.6;
}

.nav-icon {
  height: 32px; 
  width: auto;
  margin-bottom: 6px;
  object-fit: contain;
}

.nav-text {
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
}

.nav-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0px;
  width: 1px;
  height: 13px;
  background-color: #D3D3D3; 
}

/* ==========================================
   フッター全体（白背景）
========================================== */
.site-footer {
  background-color: #ffffff;
  padding: 30px 20px 40px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ==========================================
   ① ロゴと校名
========================================== */
.footer-logo-area {
  text-align: center;
  margin-bottom: 30px;
}

.footer-logo-area img {
  width: 100%;
  max-width: 400px; /* ロゴの大きさ */
	height: auto;
  margin: 0 auto 10px;
  display: block;
}

.footer-school-name {
  font-size: 15px;
  font-weight: bold;
  color: #472C00;
  margin: 0;
  padding: 0;
}

/* ==========================================
   ② お問い合わせ情報
========================================== */
.footer-contact {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  color: #472C00;
  line-height: 1.8;
}

.footer-contact p {
  margin: 0;
  padding: 0;
	font-size: 14px;
}

.footer-contact a {
  color: #472C00;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer-contact a:hover {
  opacity: 0.6;
  text-decoration: underline;
}

/* ==========================================
   ③ ナビゲーションメニュー（横並び）
========================================== */
.footer-nav {
  margin-bottom: 40px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* 画面が狭いときは折り返す */
}

.footer-nav li {
  display: flex;
  align-items: center;
  padding: 0;
}

.footer-nav a {
  text-decoration: none;
  color: #472C00;
  font-size: 13px;
  font-weight: bold;
  padding: 5px 15px;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.6;
}

/* 項目間の区切り線（｜） */
.footer-nav li:not(:last-child)::after {
  content: "｜";
  color: #472C00;
  font-size: 12px;
}

/* ==========================================
   ④ 下部（コピーライト・サブリンク）
========================================== */
.footer-bottom {
  display: flex;
  justify-content: space-between; /* 左と右に分ける */
  align-items: center;
  padding-top: 20px;
}

.copyright {
  font-size: 11px;
  color: #472C00;
  margin: 0;
  padding: 0;
}

.footer-sub-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.footer-sub-nav li {
  display: flex;
  align-items: center;
  padding: 0;
}

.footer-sub-nav a {
  text-decoration: none;
  color: #472C00;
  font-size: 11px;
  transition: opacity 0.3s;
}

.footer-sub-nav a:hover {
  opacity: 0.6;
}

/* サブリンク間の区切り線（｜） */
.footer-sub-nav li:not(:last-child)::after {
  content: "｜";
  color: #472C00;
  font-size: 10px;
  margin: 0 10px;
}

/* ★ プライバシーポリシーを今は非表示にする設定 */
.privacy-policy-link {
  display: none !important;
}

/* その他基本設定の残り */
li {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  color: #472C00;
}

p {
  color: #472C00;
  font-size: 0.7rem;
  padding: 4px;
  margin-top: 20px;
}

a {
  color: #472C00;
}

/* ==========================================
   【PC表示】768px以上での切り替え
========================================== */
@media screen and (min-width: 768px) {
  #hamburgerBtn,
  .sp-menu {
    display: none !important;
  }
}

/* ==========================================
   【スマホ表示】767px以下（390px最適化）
========================================== */
@media screen and (max-width: 767px) {
  
  /* PC用ヘッダーを非表示 */
  .header-nav {
    display: none;
  }

  .content{
    padding: 10px;
  }

.logo img {
    width: 80%;
    height: auto;
}
	
  /* ✅ 全体ラッパー：変な拡大をさせず、横スクロールを確実に防ぐ */
  .wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* youtube埋め込み*/
  iframe{
    margin-top:20px;
    margin-bottom:20px;
  }
	
  /* ✅ 各種タイトルやCTAボタン：画面幅の90%（左右に5%ずつの余白） */
  .cta,
  .form-title-img,
  .seminer-title-img,
  .faq-title {
    width: 90%;
    max-width: 350px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta{
    margin:20px auto;
  }
	
  .seminar-title-img{
    width:40%;
    margin-top:40px;
    margin-bottom:30px;
  }
  
  .faq-title {
    width:40%;
    margin-top:40px;
    margin-bottom:20px;
  }
  
  .form-title-img{
    width:40%;
    margin-top:40px;
    margin-bottom:20px;
  }

  /* ✅ 追従ボタン（セミナー申込） */
  .seminar-bt {
    display:none; 
  }

  /* ✅ フォーム・FAQの全体枠に左右の余白 */
  .contact-form-wrapper,
  .faq-container {
    width: 90%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }
  
  .faq-container {
    padding: 20px 15px; 
  }

  .q-text{
    font-weight:600;	
	  font-size:16px;
  }
	
  details{
    padding:0px;
  }
	
  /* ✅ セミナーカード（CMS一覧部分）の左右余白と縦積み */
  .seminar-card {
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto 30px auto; 
  }

  .seminar-body {
    padding: 20px 15px;
  }
  
  .seminar-info-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .seminar-visuals {
    width: 100%;
  }

  .seminar-title{
    font-size: 18px;
  }

  /* ✅ 「過去の日程はこちらから」ボタン（スマホ用） */
  button.btn-center {
    font-size: 18px;
    padding: 15px 20px;
    margin: 30px auto;
  }
	
  /* ✅ 装飾あしらい画像（390pxデザイン基準で％に変換） */
  .area02-b {
    width: 22%;
    left: -2%;
    bottom: -70px;
  }

  .area03-b {
    width: 45%;
    top: 730px;
    right: -8%;
  }

  .area05-b {
    display:none;
  }

  /* スマホ用フッター */
  .site-footer {
    /* 追従ボタンと被らないように、スマホ時は下余白を多めに取ります */
    padding: 50px 15px 110px; 
  }

  .footer-logo-area img {
    max-width: 270px; /* スマホではロゴを少し小さく */
  }

  .footer-contact {
    font-size: 13px; /* スマホでは文字サイズを微調整 */
  }
	
  .footer-nav{
    display: none; 
  }

  /* コピーライトとリンクも縦並びにして中央に寄せる */
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
	
	.area01{
		width:100%;
	}
	#point picture{
	position: relative;
    z-index: 10;
    display: block;
    width: 114%;
    margin: 10px auto;
    left: -30px;
	}
	
	.area05-main {
    position: relative;
    z-index: 0;
    display: block;
    width: 105%;
    margin: 10px auto;
    left: -10px;
}
	
	/* ==========================================
     ハンバーガーメニュー関連（オレンジ丸背景）
  ========================================== */
	#hamburgerBtn {
    position: fixed;
	  top: 8px;
	right: 15px;
    z-index: 9999;
    background-color: #ED6D35;
    border: none;
    cursor: pointer;
	  width: 56px;
	  height: 56px;
	  border-radius: 50%; /* ★これで「まん丸」になります！ */
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15); /* 少し影をつけて浮かせます */
  }

  /* 中の3本線 */
  #hamburgerBtn .bar {
    display: block;
    width: 26px;   /* 丸からはみ出さないように線の幅を調整 */
    height: 3px;
    background-color: #FFFFFF; /* ★オレンジに映えるように線を白に */
    margin: 4px 0; /* 線の間隔 */
    border-radius: 3px; /* 線のカドも少し丸く */
    transition: all 0.3s ease-in-out;
  }

  /* 「×」になった時のアニメーション（丸のサイズに合わせて微調整） */
  #hamburgerBtn.active .bar:nth-child(1) {
    transform:translateY(11px) rotate(45deg);
  }
  #hamburgerBtn.active .bar:nth-child(2) {
    opacity: 0;
  }
  #hamburgerBtn.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 254, 250, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .sp-menu.active {
    opacity: 1;
    visibility: visible;
	 z-index:9998;
  }

  .sp-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
  }

  .sp-menu li {
    margin: 20px 0;
  }

  .sp-menu a {
    font-size: 20px;
    text-decoration: none;
    color: #2B1F00;
    font-weight: bold;
  }
	
	#q-a {
    margin-top: 10px;
}
	.faq-title {
        margin-top: 0px;
		margin-bottom:30px;
}
	button.btn-center {
        font-size: 18px;
        padding: 20px 20px;
        margin: 30px auto;
        border-radius: 80px;
    }
	.cta.cta-close {
		width: 45% !important;
	}
	
.seminar-bt {
  position: fixed;
  z-index: 9999;
  top: 100px;
  right: 0px;
  width: 200px;
  display: block !important; 
}
	
	/* ==========================================
   講座がない時のメッセージ
========================================== */
.no-seminar-msg {
  font-size: 14px;
}
	
} 

/* ==========================================
   【スマホ用】下部固定追従ボタン
========================================== */
/* PCでは非表示 */
.floating-btn-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .floating-btn-sp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: #33CCFF; /* 明るい水色 */
    text-decoration: none;
    padding: 15px;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0; /* 上側だけ角丸 */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15); /* ボタンの上に影 */
    text-align: center;
  }

/* 上の小さい文字（白文字・オレンジフチに変更） */
  .floating-btn-sp .small-text {
	  font-family: "Zen Maru Gothic", sans-serif;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #FFFFFF; /* 白文字 */
    /* オレンジのフチ（細め） */
    text-shadow:
      -1px -1px 0 #ED6D35,
       1px -1px 0 #ED6D35,
      -1px  1px 0 #ED6D35,
       1px  1px 0 #ED6D35,
       1px  0px 0 #ED6D35,
      -1px  0px 0 #ED6D35,
       0px  1px 0 #ED6D35,
       0px -1px 0 #ED6D35;
  }
  /* 下の大きい文字 */
  .floating-btn-sp .large-text {
	  font-family: "Zen Maru Gothic", sans-serif;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
    display: block;
    color: #ED6D35; /* ★オレンジの文字 */
    /* 白いフチ（太め） */
    text-shadow:
      -2px -2px 0 #FFFFFF,
       2px -2px 0 #FFFFFF,
      -2px  2px 0 #FFFFFF,
       2px  2px 0 #FFFFFF,
       2px  0px 0 #FFFFFF,
      -2px  0px 0 #FFFFFF,
       0px  2px 0 #FFFFFF,
       0px -2px 0 #FFFFFF;
  }
}
/* ==========================================
   【スマホ表示】フッターの余白調整（再調整）
========================================== */
@media screen and (max-width: 767px) {
  .site-footer {
    /* ★ここを変更：追従ボタンと被らないように、スマホ時は下余白をさらに多めに取ります */
    padding-bottom: 120px; 
	  margin-top: 0px;
            padding-top: 20px;
  }
}