@charset "utf-8";


/* ===========================
  総合本科コーストップ 全体
=========================== */
.heading_collection{
padding:5px 10px;
margin-top:5px;
margin-bottom:10px;
font-size:20px;
font-weight:800;
background:#fff;
border-left:7px solid #6666CC;
border-bottom:1px solid #6666CC;
}
.sougo-hero {
  position: relative;
  width: 100%;
  padding-top: 60px;
  padding-left: 10px; 

  /* === 斜線背景 Pattern === */
  border-left:10px solid #ffffff ;
  background-color: #fff;
  background-image: repeating-linear-gradient(
      -45deg,
      rgba(112, 108, 207, 0.12) 0px,
      rgba(112, 108, 207, 0.12) 16px,   /* 線條粗細 */
      transparent 6px,
      transparent 26px              /* 線條間隔 */
  ); 
  font-family: "Noto Sans JP", sans-serif;
}

/* ===========================
   上段：金色タイトル帯
=========================== */
.sougo-month-wrap {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%; 
  z-index: 10;
}
.sougo-month-bar {
  position: relative;
  display: inline-block;
  padding: 0.5em;  
  background: #716ccf;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
  padding: 0.5rem 1rem; 
  margin:1rem 0 1rem 0; 
   -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

.sougo-month-bar::before{
  position: absolute;
  content: '';
  top: 100%;
  left: 0;
  border: none;
  border-left: solid 10px transparent;
  border-top: solid 10px rgb(95, 89, 193);
}

/* ===========================
   月生・最適・年度帯
=========================== */

.sougo-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 10px auto;
  text-align: center; 
}

/* N月生 丸ラベル */
.sougo-label {
  display: flex;
  flex-direction: row;
  justify-content: center; 
  flex-wrap: wrap;
  font-weight: 900;
  width: 100%; 
}

.sougo-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3px;
  margin: 10px 0;
}
/* 1文字ボックス */
.sougo-wrap span {
  width: 95px;          /* PCサイズ */
  height: 95px;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #9564cb 0%, #6866cc 100%);
  border: 1px solid rgba(255,255,255,0.3);
  box-sizing: border-box;
}

/* SP対策：画面が狭い時は自動縮小 */
@media (max-width: 480px) {
  .sougo-wrap span { 
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

@media (max-width: 360px) {
  .sougo-wrap span {
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}

/* ===========================
   右側人物写真
=========================== */

.sougo-hero-img {
  position: absolute;
  right: 0;
  top: 360px;
  width: 38%;
  height: 230px;
  background-image: url("./image/sougo-hero.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
}

/* ===========================
   下段：キャッチコピー
=========================== */

.sougo-copy-box {
 /* position: absolute;
  top: 0;            
  transform: translate(-50%, -50%);*/

  background-color: rgba(255, 255, 255, 0.6); /* ← 透明白底 */
  padding: 10px 20px;
  
  text-align: center; 
  display: block;
  margin: 0 auto;
  width:100%;
  max-width: 660px;
  height: auto;
}

.sougo-title {
	font-family: 'Noto Sans JP', sans-serif;
	display: block;
	text-align: center;
	margin-top: 20px;
	padding: 20px auto;
	color          : #000000;            /* 文字の色 */
    font-size      : 1.8rem;               /* 文字のサイズ */
    font-weight: 700;
    letter-spacing : 2px;                /* 文字間 */
    text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;        /* 文字の影 */
	
}

.sougo-title span {
	 display        : inline-block;
   color          : #6666cc;            /* 文字の色 */
   font-size      : 2.5rem;               /* 文字のサイズ */
   letter-spacing : 2px;                /* 文字間 */
	 font-weight: 700;
  	text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;        /* 文字の影 */
}



/* SP */
@media (max-width:992px) {
.sougo-title {
	margin-top: 8%;
	font-size  : 1.3rem; 
	
 }
	.sougo-title span { 
		font-size      : 1.7rem; 
	}
  .sougo-hero-img {
   display: none;
  }
}

@media (max-width: 768px) {
  .sougo-hero {
    padding-right: 10px;
  }
  .sougo-title-bar {  
  font-size: 1.4rem !important;
  text-align: left; 
  padding-left: 10px;
  margin-bottom: 10px;
}
  .sougo-header-row {
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: space-around;
  align-items: center; 
  text-align: center; 
}
.sougo-hero-img {
   display: none;
  }
}
/*--------------------------------
  価格表 全体
--------------------------------*/
.price-table {
  margin-top: 20px;
}

.price-box {
  text-decoration: none;
  color: inherit;
  display: block;
}

.price-box-inner {
  border: 2px solid #6666cc;
  text-align: center;
  padding: 15px 10px;
  border-radius: 4px;
  transition: 0.2s;
  background: #fff;
  margin-top: 40px;
}

.price-box-inner:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

/*--------------------------------
  見出し部分
--------------------------------*/
.price-title {
  background-color: #6666cc;
  color: #fff;
  font-weight: 700;
  font-size: 1.2em;
  padding: 6px 0;
  margin-bottom: 12px;
}

/*--------------------------------
  基本料金
--------------------------------*/
.price-main {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

/*--------------------------------
  キャンペーン
--------------------------------*/
.price-campaign .price-note,
.price-set .price-note {
  font-size: 12px;
  color: #5f5f5f;
}

.price-highlight {
  font-size: 1.3em;
  color: #f00;
  font-weight: bold;
  margin-left: 4px;
}

.price-highlight.small {
  font-size: 1em;
}


/*＝＝＝締切＝＝＝＝*/
/* 大枠の白いボックス */
.deadline-box {
  border: 1px solid #cfc7ff;       /* うす紫枠 */ 
  background: #fff;
  display: inline-block; 
  border-radius: 20px; 
  padding: 16px 22px;
  margin: 10px auto;
  width: 100%;
  height: 120px;
  max-width: 380px;
  font-family: 'Noto Sans JP', sans-serif;
  box-sizing: border-box;

}

/* 横並び */
.deadline-inner {
  display: flex;
  align-items: center; 
  justify-content: center;
}

/* ■ 募集締切（左側の四角いブロック） */
.deadline-label {
  background: #4d48d8;    /* 青紫 */
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.15;
  padding: 10px 14px;
  border-radius: 5px;
  text-align: center;
  margin-right: 15px;
  width: 80px;
  height: 80px;
}

/* 数字部分（11.28） */
.deadline-date {
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
}

/* 日付 */
.big-text {
  font-size: 54px;
  font-weight: 900;
  color: #7667d4; /* fallback */
  text-shadow: 
      2px 2px 0 #ffffff,
     -2px 2px 0 #ffffff,
      2px -2px 0 #ffffff,
     -2px -2px 0 #ffffff;

  letter-spacing: 2px;
  margin-right: 10px;
}

.big-text .dot {
  font-size: 0.8em;
}

/* ● 金（丸の中） */
.weekday {
  
  background:linear-gradient(180deg, #9564cb 0%, #6866cc 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* まで */
.made {
  font-size: 1rem;
  font-weight: 300;
  color: #000;
}

/* ===========================
   （RWD）
   =========================== */
@media (max-width: 480px) {
  .deadline-box {
    padding: 12px 14px;
  }

  .deadline-label {
    min-width: 55px;
    padding: 8px 10px;
    margin-right: 10px;
  }

  .big-date {
    font-size: 36px;
    text-shadow: 2px 2px 0px #fff;
  }

  .weekday {
    width: 32px;
    height: 32px;
    font-size: 16px;
    margin-right: 8px;
  }

  .made {
    font-size: 18px;
  }
}

@media (max-width: 360px) {
  .big-text {
    font-size: 3rem;
  }

  .weekday {
    width: 25px;
    height: 25px;
    font-size: 1rem;
  }

  .deadline-label {
    font-size: 1.2rem;
    padding: 8px 8px;
  }

  .made {
    font-size: 1.1rem;
  }
}


/* ================================
   チェック項目（上段3つ）
   ================================ */
.sougou-section {
  margin: 40px auto; 
}

.sougou-section img {
  margin: 20px auto;
  width: 100%;
  max-width: 88%;
}
/* SP */
@media (max-width: 480px) {
 .sougou-section img { 
  max-width: 250px;
  margin-left: 20px;
}
}
/* ============================
   総合本格コースの三つの魅力 セクション
   ============================ */
.merit-cards {
  display: flex !important;
  flex-wrap: wrap;
  align-items: stretch;   
}

.merit-cards .col-sm-4 {
  display: flex !important;
  float: none !important;  
}


/* カード全体 */
.merit-card {
  background-color: #ffffff;
  border:1px solid #cecdff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 9px 18px 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* 見出し部分 */
.merit-heading {
  position: relative;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700; 
  padding-left:1.5rem ; 
  color: #6866cc;
  line-height: 1.4;
}

.merit-heading::before {
  position: absolute;
  font-family: "icomoon";
  content: "\f00c";
  color: #6866cc;
  top: 0;
  left: 0;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 15px; 
  line-height: 1.4;
}

/* 画像まわり */
.merit-image-wrap {
  margin-bottom: 15px;
}

.merit-image-wrap img {
  border-radius: 8px;
  width:100% ;
  max-width: 260px;
  height: auto;
}

/* テキスト部分 */
.merit-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
  margin: 0;
}

/* ============================
   レスポンシブ調整
   ============================ */

/* SPサイズで少し余白を広めに */
@media (max-width: 767px) {
  .merit-section {
    padding: 30px 0;
  }

  .merit-card {
    padding: 16px 14px 22px;
  }

  .merit-heading {
    font-size: 1.15rem;
  }

  .merit-text {
    font-size: 0.9rem;
  }
}


/* ================================
   合格者からの感想・ご意見 大枠
================================ */
.voice-box {
  background: #fafafa;
  border: 1px solid #ebe8e4;
  border-radius: 12px;
  padding: 35px 25px;
  margin: 40px 0;
}

/* ================================
   左側プロフィール
================================ */
.voice-left {
  margin-bottom: 25px;
}

.voice-icon {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffe9ef; /* ピンク背景 */
}

.voice-name {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 18px;
}

.voice-info {
  font-size: 0.8rem;
  color: #555;
}

/* ピンクタグ */
.voice-tag {
  display: inline-block;
  border: 2px solid #66459b;
  color: #66459b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
}

/* ================================
   右側テキスト
================================ */
.voice-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #66459b;
  margin-bottom: 20px;
}

.voice-text {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333;
}


/* ================================
   SP 調整
================================ */
@media (max-width: 480px) {
  .voice-title {
    font-size: 1rem;
  }

  .voice-text {
    font-size: 0.9rem;
  }

  .timeline-btn {
    font-size: 1.1rem;
    padding: 14px 30px;
  }
}

/* ================================
   ご入学までの流れ　枠
================================ */
/* 全体の囲み枠 */
.course-flow-box {
  background: #fdfaf3;              /* うっすらクリーム色 */
  border: 1px solid #eee3cf;
  border-radius: 16px;
  padding: 30px 28px 35px;
  margin: 40px 0;
}

/* 1ステップごとの行 */
.course-flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: flex-start;
      -ms-flex-align: flex-start;
          align-items: flex-start;
  margin-bottom: 18px;
}

/* 左側の番号ボックス */
.course-flow-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 3px solid #d89421;
  background: #ffffff;
  color: #d89421;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 28px;
  margin-right: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

/* 右側テキストエリア */
.course-flow-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* タイトル（オレンジ） */
.course-flow-title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #c78416;
  margin: 4px 0 6px;
}

/* 説明文 */
.course-flow-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 0;
}

.course-flow-body .small {
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ▼ の矢印 */
.course-flow-arrow {
  text-align: center;
  margin: 4px 0 18px;
}

.course-flow-arrow span {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #c59a31;  /* 矢印の色 */
}

/* -------------------------
   SP 調整
-------------------------- */
@media (max-width: 767px) {
  .course-flow-box {
    padding: 20px 15px 25px;
  }

  .course-flow-step {
    margin-bottom: 14px;
  }

  .course-flow-num {
    width: 32px;
    height: 32px;
    line-height: 26px;
    font-size: 18px;
    margin-right: 12px;
  }

  .course-flow-title {
    font-size: 1.1rem;
  }

  .course-flow-text {
    font-size: 0.9rem;
  }

  .course-flow-arrow {
    margin-bottom: 14px;
  }
}


/*テーブル*/

table.kanzen tr, table.kanzen th, table.kanzen td {
	margin: 0;
	padding: 5px;
	vertical-align: top;
	font-size: 0.9rem;
}


/*タイトル：：なぜ、受験勉強は早期スタートがいいの？*/
/* ▼ 全体の余白 */
.worries-title-wrapper {
  margin: 60px 0 40px;
}

/* ▼ 丸い？マーク（吹き出し付き） */
.worries-icon {
  width: 45px;
  height: 45px;
  background-color: #2b338a; /* 濃い紺色 */
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worries-icon span {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
}

/* ▼ 吹き出しの三角形 */
.worries-icon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #2b338a;
}


.worries-title {
  margin-top: 30px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2b338a; 
  letter-spacing: 2px;
 }


 @media (max-width:481px) {
  .worries-title  {
    font-size: 1.4rem;
    line-height: 1.7;
    letter-spacing: 1px;
    padding: 0 10px;
}
.worries-icon {
    width: 70px;
    height: 70px;
  }

  .worries-icon span {
    font-size: 36px;
  }
}

.worries-list {
      background: #fff;
      border: 1px solid #ccc;
      padding: 20px;
      border-radius: 8px;
      margin: 30px auto;
      width: 100%;
      max-width: 480px;
    }

.worries--list li {
  position: relative;
  padding-left: 1.8em;
  margin-bottom: 1.2em;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.8;
  color: #333;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

.worries--list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #c55f2c; /* 淡藍色 check */
  font-weight: bold;
  font-size: 1em;
}
.worries--list a {
  color: #2c64c5;
  text-decoration: underline;
}
.worries--list a:hover {
  text-decoration: none;
}

.worries--list strong {
   font-family: 'Noto Sans JP', sans-serif;
   font-weight: bolder;
   font-size: 1.1rem;
}


/* 完全合格無料資料請求_btn */
.shiryou_btn-kan{
	 display: inline-block;
   padding: 0.6em 0.2em;
	 margin: 8px 0;
   text-decoration: none; 
   background:#348457;/*ボタン色*/
   color: #fff;
   border-bottom: solid 3px #197443;
   border-radius: 8px; 
	 letter-spacing:0;
   font-weight: 500;
	 font-size: 1.2rem;
	 max-width: 500px;
}

@media (max-width:480px) {
	.shiryou_btn-kan{
		font-size: 0.9rem;
	  letter-spacing:1px;
    padding: 1em 0.2em;
	} 
	
}
.shiryou_btn-kan:hover{
	 color: #fff;
	 -webkit-transform: translateY(1px);
     transform: translateY(1px);/*下に動く*/
     border-bottom: none;/*線を消す*/}
.shiryou_btn-kan:active{
	-webkit-transform: translateY(1px);
     transform: translateY(1px);/*下に動く*/
     border-bottom: none;/*線を消す*/}



/* ===== 全体 ===== */
.course-flow-wrapper{
  max-width:900px;
  margin:40px auto;
  padding:20px 0;
  font-family:"Noto Sans JP",sans-serif;
}

/* ===== タイトル ===== */
.flow-title {
  color: #6866cc;
  font-size:1.3rem;
  margin-bottom:45px; 
  font-weight:bold;
  position: relative;
  display: inline-block;
  padding: 0 45px; 
}
.flow-title::before, .flow-title::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color:#6866cc;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.flow-title::before {
  left:0;
}
.flow-title::after {
  right: 0;
}


/* ===== 共通設定　ー キャンペーン値段　 ===== */
.price-box {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  max-width: 800px;
  margin: 40px auto;
  text-align: center;
}

/* タイトル（紫色背景） */
.price-header-collection {
  background: #6666cc;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 14px 0;
  margin-bottom: 24px;
}

/* 価格エリア */
.price-body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

/* 旧価格 */
.price-old {
  text-decoration: line-through;
  color: #333;
  font-size: 1rem;
}

/* 矢印 */
.price-arrow {
  font-size: 1.4rem;
  color: #111;
}

/* 新価格 */
.price-new .campaign {
  margin: 0;
  font-size: 1rem;
  color: #111;
}

.price-new .new-amount {
  font-family: "Special Gothic Expanded One", sans-serif;	
  margin: 4px 0 0;
  font-size: 2.4rem;
  font-weight: 900;
  color: #c22727;
}

.price-new .new-amount span {
  font-size: 1.6rem;
}
 
/* 備考 */
.price-note { 
  color: #333;
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  text-align: left;
  line-height: 1.6;
}

/* ===== タイムライン外枠 ===== */
.timeline-box{
  background:#f7f5fa;
  border:1px solid #ddd;
  padding:25px 20px;
  border-radius:12px;
  margin-bottom:30px;
}

/* ===== 年份 ===== */
.timeline-year{
    position:absolute;
    left:-70px;
    top:0;
    background:#7a53ba;
    color:#fff;
    padding:5px 12px;
    border-radius:10px;
    font-weight:bold;
}

/* ===== 單行 ===== */
.timeline-row{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:25px 0;
    border-left:3px solid #ccc;
    margin-left:50px;
}

/* ===== 月份 ===== */
.timeline-month{
    background:#dfafff;
    color:#fff;
    padding:5px 16px;
    margin-left: 10px;
    border-radius:8px;
    font-weight:500;
    font-size: 0.8rem;
    flex-shrink:0;
}
.timeline-month-blank {
  background:#f7f5fa;
  display: block;
  width: 66px;
}

/* ===== 文案 ===== */
.timeline-content{
    flex:1;
}
.timeline-content p{
    font-size: 0.95rem;
}
.timeline-content .small{
  font-size:0.75rem;
  line-height: 1.2;
  font-weight: normal;
}
.phase-title {  
  color: #66459b;
  font-size:1.25rem;
  font-weight:bold;
  display:flex;
  align-items:center;
}
.phase-title:before {
  content: '●';
  color: #66459b;
  margin-right: 8px;
}

/* ===== タグ ===== */
.tag-wrap{
    margin:8px 0;
    padding-left: 10px;
}

.tag{
    border: 1px solid #66459b;
    color: #66459b;
    padding:5px 10px;
    border-radius:8px;
    margin-right:10px;
    font-size:14px;
}

/* ===== イラスト ===== */
.timeline-img img{
    width:180px;
    background:#d3f1ff;
    border-radius:4px;
}


/* ===== SP（RWD） ===== */
@media(max-width:768px){

    .timeline-box{
        padding:20px 10px;
    }

    .timeline-row{
        flex-direction:column;
        gap:10px;
        margin-left:35px;
    }

    .timeline-img img{
        width:100%;
        max-width:240px;
        margin-top:10px;
    }

    .timeline-year{
        left:-55px;
    }
    .timeline-content p {
    margin-left: 10px;
}
}

/* ===== 共通イベント ===== */
.event-item{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:25px auto;
  max-width:800px;
  gap:15px;
}

/* ===== 左側カプセル（丸角タグ） ===== */
.event-label{
  padding:12px 22px;
  border-radius:999px;
  font-size:1.2rem;
  font-weight:bold;
  color:#fff;
  white-space:nowrap;
}

/* 色：8月上旬 / 10月末 */
.event-label.purple{
  background:#66459b;
}

/* 色：8月〜9月 */
.event-label.pink{
  background:#d7356c;
}

/* ===== 右側白い大枠 ===== */
.event-box{
  flex:1;
  border:2px solid #66459b;
  background:#fff;
  border-radius:12px;
  padding:18px 16px;
  font-size:1.3rem;
  text-align:center;
  font-weight:bold;
}

.event-box.big{
  font-size:1.5rem;
}

/* 万が一、不合格科目があった場合、次回試験まで確実サポート（紫の帯） */
.subject-detail {
  background:#efe7fa;
  color:#66459b;
  padding:8px 0;
  display:block;
  font-size:1.2rem;
  border-radius:10px;
  margin-bottom:8px;
  text-align: center;
}


/* ===== SP レスポンシブ ===== */
@media (max-width:768px){
  .event-item{
    flex-direction:column;
    text-align:center;
  }

  .event-label{
    font-size:1.1rem;
    padding:10px 20px;
  }

  .event-box{
    width:100%;
    font-size:1.2rem;
  }

  .event-box.big{
    font-size:1.35rem;
  }
}


/* ================================
   timeline-ボタン
================================ */
.timeline-btn {
  display: inline-block;
  margin: 30px 0 auto;
  padding: 18px 10px;
  border: 2px solid #66459b;
  font-size: 1.1rem;
  border-radius: 20px;
  color: #66459b;
  background: #ffffff;
  transition: 0.2s;
  text-decoration: none;
}

.timeline-btn:hover {
  background: #66459b;
  color:#ffffff;
}

.timeline-btn i {
  margin-left: 10px;
}
/*-- 総合本科コース　シンプル　フルサポート テーブル--*/
/* 料金表テーブル全体 */
.course-price-table {
  font-size: 14px;              /* 文字サイズ調整 */
  margin-bottom: 0;
}

/* ヘッダー行 */
.course-price-head {
  background-color: #6666cc;    /* 旧bgcolorの再現 */
  color: #ffffff;
  text-align: center;
}
.course-price-head th {
  text-align: center;
  vertical-align: middle;
}
/* キャンペーンラベルの強調 */
.course-price-head .campaign-label {
  color: #fff100;               /* キャンペーン用の黄色 */
  font-weight: 700;
}

/* 科目名のセル（左側） */
.course-price-table tbody td:first-child {
  background-color: #eeeff9;    /* 旧#EEEEF9 */
  font-weight: 600;
}

/* 金額のセル（右側） */
.course-price-table tbody td:last-child {
  background-color: #f8f8fc;    /* 旧#F8F8F8 / #F8F8FC を統一 */
  line-height: 1.6;
}

/* 元の通常料金（取り消し線） */
.course-price-table s {
  color: #999999;
  font-size: 12px;
}

/* キャンペーン金額（強調） */
.course-price-table .red-text {
  color: #e60012;               /* 日本式の赤系カラー */
  font-size: 16px;
  font-weight: 700;
}
/* ===========================
   コース比較テーブル（PC共通）
   =========================== */

/* テーブル全体 */
.course-compare-table {
  font-size: 14px;
}

/* ヘッダー行 */
.course-compare-head {
  background-color: #6666cc;
  color: #ffffff;
  font-size: 16px;
}

/* 左端カテゴリ列 */
.course-compare-category {
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
}

/* 項目名セル */
.course-compare-item {
  vertical-align: middle;
}

/* フラグ（●） */
.course-compare-flag {
  text-align: center;
  vertical-align: middle;
}

/* フルサポートの● */
.course-compare-flag.flag-full {
  color: #0099cc;
  font-weight: 700;
  font-size: 120%;
}

/* シンプルの● */
.course-compare-flag.flag-simple {
  color: #6600cc;
  font-weight: 700;
  font-size: 120%;
}

/* 行ごとの背景色（旧bgcolorを再現） */
.row-basic th,
.row-basic td {
  background-color: #dcdcf3;
}

.row-foundation th,
.row-foundation td {
  background-color: #eeeff9;
}

.row-practice th,
.row-practice td {
  background-color: #f8f8f8;
}

.row-support th,
.row-support td,
.row-pass th,
.row-pass td {
  background-color: #ffffff;
}

/* ===========================
   SP用調整（横スクロールなし）
   =========================== */

@media (max-width: 767px) {
  /* テーブル全体を少しだけコンパクトに */
  .course-compare-table {
    font-size: 12px;          /* 11px までは下げない。読めるギリ12px */
    table-layout: fixed;      /* 列幅を均等に近づける */
    width: 100%;
  }

  .course-compare-table th,
  .course-compare-table td {
    padding: 6px 4px;
    line-height: 1.5;
    word-wrap: break-word;    /* 長い語を折り返す */
    word-break: break-all;    /* 日本語でもしっかり改行してくれる */
    white-space: normal;
  }
.course-compare-head {
  font-size: 12px;
}
  /* カテゴリ列は少し細く＆文字も少しだけ縮める */
  .course-compare-category {
    font-size: 12px;
  }

  /* 項目名セルを優先的に幅を使わせたい場合（オプション） */
  .course-compare-item {
    font-size: 12px;
  }
}


/* -------------------------
  よくある質問
-------------------------- */
/* 全体の1項目枠 */
.faq-item {
  border: 1px solid #f0ece6;
  border-radius: 20px;
  padding: 10px 5px;
  margin-bottom: 25px;
  position: relative;
  background: #ffffff;
}

/* checkbox を隠す */
.faq-check {
  display: none;
}

/* Q 行 */
.faq-question {
  display: flex;
  align-items: center;   
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #66459b;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

/* Q の丸アイコン */
.faq-q-icon {
  flex: 0 0 42px;               /* 固定サイズでつぶれ防止 */
  width: 42px;
  height: 42px;
  background: #66459b;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;            /* 文字を中央揃え */
  font-size: 1.4rem;
  font-weight: 700;
  margin-right: 12px;
}

/* ＋／− の丸アイコン */
.faq-plus,
.faq-minus {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);  /* 常に縦中央 */
  border-radius: 50%;
  border: 2px solid #d9d4cd;
  text-align: center;
  line-height: 32px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #66459b;
  background: #fff;
  pointer-events: none;
}

/* + と − の文字 */
.faq-plus::before {
  content: "+";
}
.faq-minus::before {
  content: "-";
}

/* 初期状態：− は非表示 */
.faq-minus {
  display: none;
}

/* チェックされたら + を非表示、− を表示 */
.faq-check:checked + .faq-question .faq-plus {
  display: none;
}
.faq-check:checked + .faq-question .faq-minus {
  display: block;
}

/* A ブロック（初期は閉じる） */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 35px; /* A の位置調整 */
  transition: all .35s ease;
}

/* A: アイコン */
.faq-a-icon {
  font-weight: 700;
  color: #66459b;
  font-size: 1.7rem;
  margin-right: 8px;
}

/* チェックされたら回答オープン */
.faq-check:checked ~ .faq-answer {
  max-height: 370px;
  opacity: 1;
  margin-top: 12px;
}

/* SP 調整 */
@media (max-width: 480px) {
  .faq-q-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 1.3rem;
  }

  .faq-question {
    font-size: 1.2rem;
    padding-right: 50px;
  }

  .faq-plus, .faq-minus {
    width: 30px;
    height: 30px;
    font-size: 1.4rem;
    line-height: 28px;
  }
}