

/* ==========================================================================
   Top Page Elements (Desktop Default)
   ========================================================================== */
.p-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.p-heading-deco {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.p-heading-deco__main {
    font-size: 2.2rem;
    color: var(--color-main);
}

.u-bg-grid {
    background-image: 
        linear-gradient(rgba(0, 65, 133, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 65, 133, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color:#fff;
}

/* section1 */
.p-hero {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../images/pref/hero-img.jpg");
}

.p-hero .l-container {
    height: 550px;
}

.p-hero__visual {
    width: 55%;
}

.p-hero__content {
    width: 100%;
    max-width:640px;
    margin:auto;
    text-align: left;
}

.p-hero__copy {
    color: var(--color-main);
    font-weight: bold;
    padding-top:25px;
	text-shadow: 
	0 0 5px #fff,
	0 0 7px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff,
    0 0 5px #fff,
	0 0 7px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff,
    0 0 5px #fff,
	0 0 7px #fff,
    0 0 10px #fff,
    0 0 20px #fff,
    0 0 30px #fff,
    0 0 40px #fff;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "MS PMincho", serif;
}

.p-hero__copy span.sub{
	display:block;
	font-size:25px;
	}
.p-hero__copy span.main{
	display:block;
	font-size:42px;
	margin-top:-5px;
	margin-left:50px;
	color:#296ee0;
	}
	
.p-hero__copy span.sub b{
	color:#224eb1;
	display:inline-block;
	font-size:28px;
	margin:0 5px 0 0;
	background:linear-gradient(
    transparent 60%,           /* ①書き始め：70%→60%に上げて、開始位置を高く */
    #d2e8fb 60%, 
    #d2e8fb 90%, /* ②書き終わり：100%→90%にして、下に隙間を作る */
    transparent 90%            /* 下の残り10%は透明（＝浮いて見える） */
    )
	}	

.p-hero__copy span.main b{
	color:#f2a500;
	}


/* --------------------------------------------------
3つの利点（円形）
---------------------------------------------------- */

.p-course-benefits-wrap {
    padding-bottom: 90px; 
}

.p-course-benefits-wrap div.l-container {
    position: relative;
}

/* カードの並び（PC/スマホ共通の基本設定） */
.p-course-benefits {
    display: flex;
    width: 600px;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 10;
	margin: -10px auto 0px;
    height: 100px;
}

/* カード単体のスタイル */
.c-benefit-card {
    width: 160px;
    position: absolute;
    top: -110px;
	aspect-ratio: 1 / 1;    /* 幅と高さの比を1:1にする（正方形になる） */
  	border-radius: 50%;
    background-color: #fffeec;
    border: 2px solid #f9ec8e;
    display: flex;
    text-align:center;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

/* --- 個別配置（ここで横に並べる） --- */
.c-benefit-card:nth-child(1) {
    left: 0;
}

.c-benefit-card:nth-child(2) {
    left: 50%;
    transform: translateX(-50%); /* ぴったり中央へ */
}

.c-benefit-card:nth-child(3) {
    right: 0;
}

/* ラベル全体の配置コンテナ */
.c-benefit-card__label {
    display: flex;
    align-items: center; /* これが上下中央の肝 */
    color: #d3a543;
    font-weight: bold;
    line-height: 1.1;
    /* PC時のデフォルトサイズ */
    font-size: 24px;
}

/* 横書きのspan */
.c-benefit-card__label span {
    display: block;
    white-space: nowrap; /* 勝手に改行させない */
}


/* --------------------------------------------------
3つの特長のセクション
---------------------------------------------------- */

/* --- セクション全体 --- */
.sec-feature {
  padding: 40px 0;
  overflow: hidden;
}

/* --- 上段メインカード --- */
.p-feature-main {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	overflow: hidden;
	margin-bottom: 20px;
	width: 96%;
	margin:auto;
	max-width: 800px;
}

.p-feature-main__title {
  background: #224eb1;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 24px;
  font-weight: bold;
}

.p-feature-main__title span{
  color:var(--color-accent-y);
}

.p-feature-main__body {
  display: flex;
  align-items: center;
}

.p-feature-main__body .text-area 
  {
  width: 50%;
  text-align: center;
  line-height: 1.6;
  padding:15px 0 15px;
  color:#224EB1;
  font-size: 22px;
}

.p-feature-main__body .text-area span{
  font-weight:bold;
  color:#d52525;
}

.p-feature-main__body .text-area .cross {
  display: block;
  color: #ff5050;
  font-size: 20px;
  margin: 5px 0;
}

.p-feature-main__body .image-area {
  width: 50%;
  position: relative; 
  overflow: hidden;
  height: 200px; 
}

.p-feature-main__body img {
  height: 100%; 
  width: 100%; /* ★100%より大きくして、あえてはみ出させる */
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* これで拡大した画像も中央に寄る */
  object-fit: cover; /* 歪み防止に念のため入れておくのはアリ */
  display: block;
}

/* --- 下段3カラムカード --- */
.p-course-benefits-wrap .p-feature-list {
	display: flex;
	justify-content: space-between;
	gap: 10px; /* カード間の隙間 */
	width:96%;
	margin:30px auto 0;
	max-width: 800px;
}

.p-course-benefits-wrap .p-feature-card {
  width: 32%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-course-benefits-wrap .p-feature-card__head {
	font-size:24px;
	font-weight:bold;
	background: #224eb1;
	color: #fff;
	text-align: center;
	padding: 5px 0 10px;
	min-height: 70px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.p-course-benefits-wrap .p-feature-card__head span{
	font-size: 24px;
	color:var(--color-accent-y);
	line-height: 24px;
	}
	
.p-course-benefits-wrap .p-feature-card__head span b{
	font-size: 40px;
    font-weight: normal;
	}

.p-course-benefits-wrap .p-feature-card__body {
	font-size:22px;
	color:#224EB1;
	background-position: center top;
	position: relative;
	padding: 15px 20px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
}

.p-course-benefits-wrap .p-feature-card__body span{
  font-size:22px;
  font-weight:bold;
  color:#d52525;
  }

.bg-student01{
	text-align:left;
	background-image: url('../images/pref/ft1.jpg');
	}
.bg-student02{
	background-image: url('../images/pref/ft2.jpg');
	}
.bg-student03{
	text-align:left;
	background-image: url('../images/pref/ft3.jpg');
	}

/* 装飾パーツ */
.c-arrow-down {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ffeb3b;
  margin: 8px auto;
}

.p-feature-card__body .large {
  font-size: 20px;
}


/* --------------------------------------------------
地域のセクション
---------------------------------------------------- */

.sec-area {
    padding:0 0 90px;
     background-color:#ebfcf8;
    }

.sec-area h2{
    color:#06848f;
    }

.sec-area h2:before{
     background-color:#06848f;
    }

.sec-area .area__grid{
	width:100%;
	background:#fff;
	flex-wrap: wrap;
	display: flex;           /* Flexboxを有効化 */
	justify-content: center; /* ★ここが重要：左右（主軸）の中央揃え */
	align-items: stretch;    
	align-content: flex-start;
	padding: 20px 30px; 
	border: 1px solid #cce9e2;
	box-sizing: border-box;
	border-radius: 5px;
}


.sec-area .area__grid dl dt{
    font-size: 22px;
    font-weight:bold;
    color:#06848f;
    width:100%;
    text-align:center;
    padding:5px 0 10px;
}

.sec-area ul {
    flex-wrap: wrap;
    display: flex;           /* Flexboxを有効化 */
    justify-content: start; /* ★ここが重要：左右（主軸）の中央揃え */
    align-items: center;     /* オプション：上下（交差軸）の中央揃え */
}

.sec-area ul li{
padding-left: 15px;
position:relative;
font-weight:bold;
  width: auto; /* 幅を指定しない */
  min-width: 118px; /* 東京東久留米市が1行で入る最小幅をキープ */
  display: flex;       /* 横並び */
  align-items: center; /* 上下中央揃え */
  gap: 4px;           /* 三角と文字の間の余白 */
  margin-right: 15px;
  margin-bottom: 8px;
  
  }
  
  .sec-area ul.pc3 li{
  min-width: 140px; /* 大阪 */
  } 
  
.sec-area ul.pc2 li{
  min-width: 172px; /* 大阪 */
  }   
.sec-area ul li.sp50{  
     min-width: 215px
     } 
  
.sec-area ul li::before {
	font-size:60%;
  content: "●";      /* ここに文字を入れる */
  color: #06848f;    /* 好きな色を指定 */
  position: absolute;
  left: 0px;           /* 左端に固定 */
  top: 20%;
}

 .sec-area ul li a{
    color:#000;
}


/* --------------------------------------------------
悩みのセクション
---------------------------------------------------- */
.sec-worry-blue {
    background: 
		url('../images/pref/worry.png') no-repeat 90% bottom/ 400px, /* 上に乗る画像 */
        #3B559B;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 100px), 
        50% 100%, 
        0 calc(100% - 100px)
    );
    position: relative;
    z-index: 3;
    padding: 60px 0 35px; 
    margin-bottom: -100px; /* 尖った分を次の要素に重ねる */
    overflow: visible;
	color:#fff;
}

/* --- H2タイトル（ハテナ背景） --- */
.p-heading-question {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    position: relative;
}

.p-heading-question::before {
    content: "?";
    position: absolute;
    top: -145px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 180px;
    color: rgba(255, 255, 255, 0.1); /* 透けたハテナ */
    font-family: Arial, sans-serif;
    z-index: -1;
}

.sec-worry-blue img {
	height:175px;
	object-fit:cover;
	}

/* --- リストと画像のレイアウト --- */
.p-worry-content {
    position: relative;
    padding:50px 80px 100px 0;  /* 画像が重なる分の余白 */
}

.p-worry-check-list {
    list-style: none;
    padding: 0;
}

.p-worry-check-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    line-height: 1.6;
}

/* チェックアイコン（SVGまたは疑似要素） */
.p-worry-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 21px;
	height: 20px;
	border: 2px #fff solid;
	background: #3b559b;
	border-radius: 0px;
}

.p-worry-check-list li::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 3px solid #e60012; /* 赤いチェック線 */
    border-bottom: 3px solid #e60012;
    transform: rotate(-45deg);
}

/* --- 右側の女性画像 --- */
.p-worry-image {
    position: absolute;
    right: -20px;
    bottom: -50px;
    width: 180px; /* スマホサイズに合わせて調整 */
    z-index: 2;
}

/* --- 下部の黄色ラベル --- */
.p-worry-bottom-label {
	position: relative; /* absoluteからrelativeに変更 */
    z-index: 10;        /* 確実に一番上にくるようにする */
    width: 330px;
    margin: 0 auto;     /* 左右中央揃え */
    /* ★重要：マイナスマージンで上のセクションのV字部分に重ねる */
    margin-top: 70px;  
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #224eb1;
    padding: 12px 0;
    /* 背景透過 */
    background: color-mix(in srgb, var(--color-accent-y), transparent 10%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 浮き出し効果 */
}


/* --------------------------------------------------
成績を伸ばす3つの条件
---------------------------------------------------- */

.sec-condition{
	padding:50px 0 90px;
	background: linear-gradient(145deg, #FFF 40%, #f0f7fb 40%);
	}
	
.sec-condition h2 span{
	color:#d52525;
	font-size:32px;
	}
.sec-condition h2 span b{
    font-size: 54px;
    line-height: 40px;
	}


.sec-condition .p-condition-intro__text{
	text-align:center;
	}

/* --- 2. リスト構造のリセット --- */
.p-condition-list {
    list-style: none;
    padding: 0;
    width:800px;
    margin: 40px auto 0; /* 導入文との間隔 */
}

.c-condition-card {
    background: #fff;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.c-condition-card dl,
.c-condition-card dt,
.c-condition-card dd {
    margin: 0;
    padding: 0;
}

/* --- 3. 見出し部分 (dt) --- */
.c-condition-card__head {
    background: #224eb1;
    color: #fff;
    padding: 15px 15px 15px 70px; /* バッジの横幅分あける */
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.c-condition-card__head h3 {
    font-size: 22px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    text-indent: 100px;
}

/* --- 4. 盾型バッジ（条件01〜03） --- */
.c-badge {
	width: 80px;
	background: url("../images/pref/shield.png");
	background-repeat: no-repeat;
	background-size: contain;
	height: 120px;
	position: absolute;
	text-align:center;
    font-size: 16px;
    font-weight:bold;
    color:#224eb1;
    padding:15px 0 0;
  }

.c-badge span {
	width: 100%;
	text-align: center;
	font-size: 42px;
	display: block;
	line-height: 18px;
	color: #224eb1;
    
}

.c-badge b {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

/* --- 5. コンテンツ部分 (dd) --- */
.c-condition-card__content {
    background: #fff;
}

.c-condition-card__content span{
	font-size: inherit;
	}

.c-condition-card__img img {
    width: 100%;
    height: auto;
    display: block;
}

.c-condition-card__body {
    padding: 20px 15px;
    line-height: 1.7;
    color: #333;
}

.p-condition-outro{
	text-align:center;
}

.p-condition-outro div{
	width:fit-content;
	margin:50px auto 15px;
	background:#224eb1;
	color:#fff;
	font-weight:bold;
	padding:10px 15px;
	}

.p-condition-outro div span{
	color:#f9d700;
	}

/* 青い下向き三角形 */
.c-arrow-down-blue {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #6e9bff;
    margin: 0 auto;
}

/* --------------------------------------------------
やればできるを実感出来る家庭教師
---------------------------------------------------- */

.p-system-steps {
	list-style: none;
	padding: 0;
	max-width:800px;
	margin:auto;
}

.p-system-steps__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;      /* アイコンとテキストの間隔 */
  margin-bottom: 40px;
}

/* 02など左右を反転させたい場合 */
.p-system-steps__item.is-reverse {
  flex-direction: row-reverse;
}

/* 数字背景：liに対して絶対配置 */
.step-num {
	font-style: italic; /* これを追加 */
	position: absolute;
	z-index: 1;
	font-family: 'Roboto', sans-serif;
	font-size: 100px;
	font-weight: bold;
	/* 上下の位置だけ中央で固定 */
    top: 50%;
    transform: translateY(-50%);
}

/* 01: 青系 */
.p-system-steps__item.is-blue .step-num {
	color: rgba(25, 62, 151, 0.1);
	right: 0;   /* 右端に固定 */
	left: auto; /* 左基準をキャンセル */
}

/* 02: 黄系（画像に合わせて少し濃いめがおすすめ） */
.p-system-steps__item.is-yellow .step-num {
	color: rgba(249, 215, 0, 0.2); 
	left: 0;    /* 左端に固定 */
	right: auto;/* 右基準をキャンセル */
}

/* 03: 緑系 */
.p-system-steps__item.is-green .step-num {
	color: rgba(0, 176, 39, 0.1);
	right: 0;   /* 右端に固定 */
	left: auto; /* 左基準をキャンセル */
}

.step-icon {
	position: relative;
	z-index: 2;
	width: 100px;
	height: 100px;
}

.step-text {
	position: relative;
	z-index: 2;
	margin: 0;
	font-weight: bold;
	line-height: 1.5;
	font-size: 22px;
}

.sec-system-detail strong{
	font-size:32px;
	font-weight:bold;
    padding: 50px 0 30px;
    color: #224eb1;
    display:block;
    width: 100%;
    text-align:center;
    letter-spacing: .1em;
	}


.p-system-middle-grid {
    background-image: url("../images/pref/dislike-bg.jpg"); /* 方眼紙の背景 */
    background-size: cover;
    position: relative;
    padding: 120px 0 0; /* 矢印の高さ分、多めに取る */
    height: 420px;
}

/* 上部の白い矢印部分 */
.p-system-middle-grid::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fff; /* 上のエリアの色 */
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}


.p-fukidashi-area{
width: 75%;
    margin: 0 0 0 25%;
    font-size: 20px;
    font-weight: bold;
	}

.p-fukidashi-area .left{
	width:fit-content;
	background:#FFF;
	padding:15px;
	border-radius:10px;
	}


.p-fukidashi-area .right{
    width: fit-content;
    background: #FFF;
    padding: 15px;
    border-radius: 10px;
    margin: 50px 0 0 25%;
	}


.p-solve-label{
	display: table;      /* 中身の幅に合わせつつ、margin:autoを効かせる */
 	width: fit-content;
    background: #224eb1;
    padding:10px 15px;
    font-weight:bold;
    color:#fff;
    font-size:20px;
    position: relative;
    z-index: 10;
    text-align: center;
    margin: -45px auto 0;
	}
	
.p-solve-label span{
	display:block;
	line-height:1.2;
	color:#f9d700;
	font-size:28px;
	
	}

.p-visual-overlap{
    margin: 100px auto 0;
    max-width: 600px;
}

.p-heading-system-check{
	font-size: 32px;
	font-weight: bold;
	padding: 100px 0 100px;
	color: #224eb1;
	display: block;
	width: 100%;
	text-align: center;
	letter-spacing: .1em;
	}


.p-promise-copy{
	display: table;      /* 中身の幅に合わせつつ、margin:autoを効かせる */
 	width: fit-content;
    background: #FFF;
    padding:10px 15px;
    font-weight:bold;
    font-size:20px;
    position: relative;
    z-index: 10;
    text-align: center;
    margin: -45px auto 0;
	border:3px solid #224eb1;
	}

.p-question-footer{
	width:100%;
	background:#eff1fa;
	background-image: url("../images/pref/worry2.png");
	background-position:right bottom;
	background-size:160px; 
	background-repeat:no-repeat;
	padding:20px 0 90px;
	}
	
div.promise_foot .zigzag-box {
    display: flex;
    flex-direction: column; /* 要素を縦に並べる */
    gap: 15px;              /* 1行目と2行目の間の余白（お好みで調整） */
    max-width: 600px;       /* 横に広がりすぎないように最大幅を設定 */
    margin: 50px auto 30px;    /* エリア全体を中央に配置 */
}


div.promise_foot .zigzag-box span{
    display:inline-block;
    background:#fff;
    padding:5px 10px;
	border-box:box-sizing;
	border-radius:10px;
	}

/* 1行目を左端へ */
div.promise_foot .zigzag-box .line-1 {
    align-self: flex-start;
}

/* 2行目を右端へ */
div.promise_foot .zigzag-box .line-2 {
    align-self: flex-end;
}

/* --- 下部のテキスト --- */
div.promise_foot .center {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #224eb1; /* 青色 */
}
	
	
	
/*--------------------------------
選ばれる理由
----------------------------------*/

.sec4 {
    padding:0 0 90px;
     background-color: var(--color-main);
     clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 100px), 
        50% 100%, 
        0 calc(100% - 100px)
    );
    position:relative;
    }

.sec4 h2{
    color:var(--color-white);}

.sec4 h2 span{
	color:#FFEB3B;}

.sec4 h2:before{
     background-color:var(--color-white);
    }

.sec4 ul {
    width:800px;
    margin:auto;
}


.sec4 ul li{
    margin:50px 0 0;
    background-color: #fff;
}

.sec4 ul li dl dt {
font-size:24px;
color:#304ba4;
font-weight:bold;
}

.sec4 ul li dl dt div{
  background: linear-gradient(
    130deg, 
    #dfe6ff 0%, 
    #dfe6ff 60%, 
    #ffffff 60%, 
    #ffffff 100%
  );
  margin:0 -20px 0 0;
  display:inline-block;
  padding:5px 50px 5px 15px;
  
}

.sec4 ul li dl dt div span{
        font-size:38px;
 }

.sec4 ul li dl dd div{
    padding:15px;
}

.sec4 ul li dl dd div.point{
    padding:15px;
    width:100%;
    background:#ffd9d9;
    font-weight:bold;
    color:#d00;
    }	
    
.sec4 .zigzag-box {
    display: flex;
    flex-direction: column; /* 要素を縦に並べる */
    gap: 15px;              /* 1行目と2行目の間の余白（お好みで調整） */
    max-width:500px;       /* 横に広がりすぎないように最大幅を設定 */
    margin: 50px auto 30px;    /* エリア全体を中央に配置 */
}

.sec4 .zigzag-box span{
	color:#bcd1ed;
    display:inline-block;
	}

/* 1行目を左端へ */
.sec4 .zigzag-box .line-1 {
    align-self: flex-start;
}

/* 2行目を右端へ */
.sec4 .zigzag-box .line-2 {
    align-self: flex-end;
}    
 
.sec4 p.center{
	text-align:center;
	color:#fff;
	}    
    
.sec4 p.center span{
	color:#f9d700;
	}

/* --------------------------------------------------
成功事例
---------------------------------------------------- */

section.sec-success-cases{
	background:#eef7ff;
	padding: 100px 0 90px;
	margin:-100px auto 0;
	}


/* --- レイアウト：liを直接Flexboxにする --- */
.p-success-item {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

/* 反転の指定：これだけで入れ替わる */
.p-success-item.is-reverse {
    flex-direction: row-reverse;
}

/* --- 写真エリア --- */
.success-visual {
    width: 140px; /* 少し大きめにしてインパクトを出す */
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

/* --- テキストボックスエリア --- */
.success-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    position: relative;
	width: 60%; /* これで効くようになります */
}

.success-content span{
	font-size:inherit;
	font-weight:bold;
	}

/* --- 青い点数ラベル --- */
.success-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color:#224eb1;
    font-size:20px;
}

.success-title .subject {
    font-size: 22px;
    color: #224eb1;
    font-weight: bold;
}

.success-title .score {
    background: #224eb1;
    color: #fff;
    padding: 4px 12px 0;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
}

.success-title .score b{
	color:#ffeb3b;
	font-size:36px;
	}



/* --------------------------------------------------
保護者の声
---------------------------------------------------- */


/* --- 背景画像とV字切り抜き --- */
section.sec-parent .container_wrap:nth-child(1){
    width:100%;
    background-image: url("../images/pref/parents-bg.jpg"); 
    background-size: cover;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 100px), 
        50% 100%, 
        0 calc(100% - 100px)
    );
    position: relative;
    padding:0 0 100px;
}

section.sec-parent .container_wrap:nth-child(2){
    background:#fff;
    padding:100px 0 90px;
    }

section.sec-parent h2{
	color:#fff;
	}

section.sec-parent h2::before{
	background:#fff;
	}

/* --- 吹き出しのデザイン --- */
.p-feedback-chat {
    max-width: 700px;
    margin: 40px auto 0;
}

.chat-bubble {
    background: #fff;
    color: #333;
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    width: fit-content;
    max-width: 90%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chat-bubble.is-left { margin-right: auto; text-align: left; }
.chat-bubble.is-right { margin-left: auto; text-align: left; }

.chat-bubble p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.5;
}

.chat-bubble .user {
    display: block;
    text-align: right;
    font-size: 14px;
    color: #666;
}

/* --- 下部アウトロエリア --- */
.p-feedback-outro {
    text-align: center;
    padding: 60px 0;
}

.p-outro-heading {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

.p-outro-heading .line-blue {
    display: table;
    margin: 0 auto 10px;
    background: #224eb1;
    color: #fff;
    padding: 5px 20px;
}

.p-outro-heading .line-blue-yellow {
    display: table;
    margin: 0 auto;
    background: #224eb1;
    color: #f9d700; /* 黄色文字 */
    padding: 5px 20px;
}

.p-outro-text {
	width:100%;
	text-align:center;
    line-height: 1.8;
}
/* ------------------------------------------------
私たちについて
------------------------------------------------- */

/* --- 全体背景 --- */
.sec-about-us {
    background-color: #f0f7ff; /* 薄い水色 */
    padding: 0 0 90px;
}


.sec-about-us .p-about-intro {
	text-align: center;
    margin-bottom: 40px;
}


.c-point-list {
	width:500px;
    text-align: left;
    background: #fff;
    padding: 15px 30px;
    box-sizing:border-box;
    border-radius: 5px;
    margin: 15px auto;
    list-style: none;
}
.c-point-list li::before {
    content: "●";
    color: #2551b6;
    margin-right: 8px;
}

/* --- 情報リスト（青バー） --- */
.c-info-list {
    max-width: 600px;
    margin: 0 auto;
}

.c-info-list dt {
    background: #2551b6;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    letter-spacing: 0.1em;
}

.c-info-list dd {
    background: #fff;
    padding: 15px 15px 25px;
    text-align: center;
    line-height: 1.6;
    font-size:inherit;
}

/* --- 特徴のサブリスト --- */
.c-feature-sublist {
    list-style: none;
    padding: 0;
    text-align: left;
}
.c-feature-sublist li {
    margin-bottom: 15px;
}
.c-feature-sublist li strong {
    display: block;
    color: #193e97;
    margin-bottom: 5px;
}

.c-feature-sublist li span{
	font-size:inherit;
	}

/* --- 料金エリア --- */
.p-price-main {
    font-size: 24px;
    font-weight: bold;
}
.p-price-main .u-font-accent {
    font-size: 44px;
    color: #e60012; /* 赤色 */
}

.sec-about-us span.caution{
	margin:10px 0 20px 50%;
	display:block;
	font-size:13px;
	}

.c-campaign-banner {
    margin: 15px 0;
    font-weight: bold;
}


.c-campaign-banner dt{
	position:relative;
	width:fit-content;
	background:#ffea00;
	color:#103da3;
	margin:auto;
	z-index:3;
	}

.c-campaign-banner dd {
	background:#edf6ff;
	margin-top:-20px;
	padding-top:45px;
	}

.c-check-simple {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    color: #193e97;
}
.c-check-simple li::before {
    content: "・";
    font-weight: bold;
}

/* ------------------------------------------------
こんな生徒におすすめ
------------------------------------------------- */

.sec-recommend {
    position: relative;
    padding: 0 0;
/* url() を先に書き、カンマで区切って gradient を後に書く */
background: 
        /* 1. 先に「半透明グラデ」を書く（これが上に重なる） */
        linear-gradient(
            to bottom, 
            rgba(158, 170, 196, 0.7) 0%,   /* 0.7 = 70%の不透明度 */
            rgba(158, 170, 196, 0.7) 70%, 
            rgba(255, 255, 255, 0.9) 100%
        ),
        /* 2. 次に「画像」を書く（これが下になる） */
        url("../images/pref/rec-bg.png") no-repeat right top / auto 100%;
}

.sec-recommend h2 {
	color:#fff;
	}

.sec-recommend h2:before {
	display:none;
	}

/* --- チェックリスト --- */
.p-recommend-content {
    max-width: 600px;
    margin: 0 auto 40px;
}

.p-recommend-checklist {
    list-style: none;
    padding: 0;
        max-width: 600px;
    margin: 0 auto 40px;
}

.p-recommend-checklist li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    line-height: 1.4;
    display: flex;
    color:#fff;
    align-items: center;
    min-height: 32px;
}

/* 白い枠線のボックス */
.p-recommend-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* 赤いチェックマーク */
.p-recommend-checklist li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 18px;
    height: 10px;
    border-left: 4px solid #e60012;
    border-bottom: 4px solid #e60012;
    transform: rotate(-45deg);
}

/* --- フッターテキスト --- */

.sec-recommend p{
	margin:50px 0 50px;
	text-align:center;
	font-size:20px;
	}


/* ------------------------------------------------
本当にまだ大丈夫？
------------------------------------------------- */
.sec-risk {
    /* 背景：単色 ＋ シルエット画像 ＋ V字切り抜き */
    background: 
        linear-gradient(rgba(59, 85, 155, 0.95), rgba(59, 85, 155, 0.95)),
        url('../images/pref/risk-bg.png') no-repeat right bottom / contain;
    background-size:300px;    
    background-color: #3b559b;
    color: #fff;
    padding: 0 0 90px;
    position: relative;
    z-index: 3;
}

.sec-risk h2{
	color:#fff;
	}
	
.sec-risk h2:before{
	background:#fff;
	}	
.p-risk-intro{
	text-align:center;
	}	
	
.p-risk-intro span{
	color:#f9d700;
	}

/* --- カードリスト --- */
.p-risk-list {
    list-style: none;
    padding: 0;
}
.c-risk-card {
	margin:50px auto 50px;
	width:800px;
    display: flex;            /* 横並び */
    justify-content: space-between; /* 左右（主軸）の両端配置 */
    align-items: center;      /* ★追加：上下（交差軸）の中央揃え */
    list-style: none;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.c-risk-card img{
	display:block;
	width:25%;
	}
.c-risk-card__body{
	width:75%;
	}
.c-risk-card__body h3 {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 8px;
	line-height: 1.3;
	width:100%;
	text-align:center;
}
.c-risk-card__body p {
	line-height: 1.5;
	margin: 0;
	color:#000;
	padding:15px;
	box-sizing:border-box;
}

/* --- 結び文 --- */
.risk_foot {
    text-align: center;
    margin-top: 40px;
    line-height: 1.8;
}

.risk_foot span{
	color:#f9d700;
	}

.c-arrow-down-white {
    width: 0; height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #aec1ff;
    margin: 15px auto 0;
}
/* ------------------------------------------------
100名限定キャンペーン
------------------------------------------------- */
.sec-campaign {
    padding:100px 0 90px;
    margin:-100px auto 0;
    background-color: #fffdec;
    text-align: center;
}

.sec-campaign h2 strong {
    color: #e60012; /* 赤文字 */
    }

.sec-campaign h2:before{
	content:none;
	}
.sec-campaign .l-container{
	position:relative;
	}
.sec-campaign .l-container .p-condition-card{
	position:absolute;
	top: -100px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 600px;
    background: #fff;
    padding:20px 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 3;
}

.p-campaign-visual {
    width: 100%;
    min-height:200px;
    margin: 0 auto 50px; /* 下のボックスがはみ出す分、余白を広く */
}
.p-campaign-visual img {
    height: auto;
    display: block;
    object-fit: cover;
}


.sec-campaign .l-container .p-condition-card h3 {
    font-size: 20px;
    color: #224eb1;
    margin-bottom: 15px;
    font-weight: bold;
}
.sec-campaign .l-container .p-condition-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; /* 中央揃えの中での左寄せ用 */
}
.sec-campaign .l-container .p-condition-card ul li {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 1.5em;
    position: relative;
}
.sec-campaign .l-container .p-condition-card ul li::before {
    content: "●";
    color: #224eb1;
    position: absolute;
    left: 0;
}
.sec-campaign p.note{
	padding:210px 0 0;
	}
.sec-campaign p.note span{
	display:inline-block;
	color:#224eb1;
	margin:0 auto 0;
	font-size:20px;
	}
	




/* ------------------------------------------------
安心の理由
------------------------------------------------- */

 .sec-relief p.top {
    text-align: center;
    margin-bottom: 15px;
    margin-bottom: 50px;
}

/* --- リストエリア（中央に幅を絞って配置） --- */
.p-relief-list {
    list-style: none;
    padding: 0;
    max-width: 800px; /* 画像のバランスに合わせて最大幅を制限 */
    margin: 0 auto;
}

.p-relief-item {
    margin-bottom: 60px;
}

/* タイトルと番号アイコンの並び */
.p-relief-item__title {
	display: flex;
    align-items: center;    /* アイコンとテキストの高さを中央で揃える */
    justify-content: flex-start; /* 左から順番に並べる（中央にしたい場合は center） */
    color: #224eb1;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    }

    /* 1行目を左寄せにし、中のアイコンとテキストを横に並べる */
    .p-relief-item__title .title-line-1 {
        display: flex;
        align-items: center;    /* アイコンと文字の高さを合わせる */
    }

    /* 2行目を右寄せにする */
    .p-relief-item__title .title-line-2 {
		display: block;
    }

/* 番号アイコン（01, 02...） */
.p-relief-item__title .num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #224eb1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-style: italic;
    margin-right: 5px;
    margin-top: -7px;
    line-height: 1;      /* 上下の見えない行間余白をリセット */
    padding-right: 5px;
    padding-bottom: 4px;
}

/* 画像 */
.p-relief-item__visual {
    margin-bottom: 15px;
    text-align: center;
}
.p-relief-item__visual img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* テキスト */
.p-relief-item__text {
	margin:15px 0 0;
    line-height: 1.6;
    color: #333;
}

/* --- アウトロエリア --- */
.p-relief-outro {
    /* l-container の中にあっても画面幅いっぱいに背景を広げるテクニック */
    background-color: #f2f5fc; /* 薄い青背景 */
    margin: 60px calc(50% - 50vw) 0;
    padding: 50px 20px;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
}

.p-relief-outro p {
    font-weight: bold;
    line-height: 1.8;
    margin: 0;
}

.p-relief-outro .c-relief-label {
	display:block;
	margin:20px auto 20px;
	width:fit-content;
	background-color: #224eb1;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 30px;
    letter-spacing: 0.05em;
}

/* 最後の一文 */
.p-relief-outro .u-font-accent {
    color: #224eb1;
    font-size: 20px;
    margin-top: 15px;
    
}

.p-relief-outro .c-relief-label .no1{
	color:#ffa5be;}
	
.p-relief-outro .c-relief-label .no2{
	color:#ffea00;}	

/* ------------------------------------------------
やればできる
------------------------------------------------- */
.sec-first-step {
    position: relative;
    padding: 0 0 90px;
    background-color: #fff;
    /* 右上に女性の画像を配置（透過PNGや白背景に馴染む画像を使用） */
    background-image: url('../images/pref/step.jpg');
    background-repeat: no-repeat;
    background-position: 100% top;
    background-size: 47% auto;
    z-index: 1;
}

/* --- リード文 --- */
.p-first-step-lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    z-index: 2; /* 背景画像より前に出す */
}

/* --- 特徴・ベネフィットボックス（ゴールド枠） --- */
.sec-first-step .p-feature-box {
    background-color: #fffefa; /* ほんのり黄色い背景 */
    border: 2px solid #d4af37; /* ゴールドの枠線 */
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 35px 40px;
    box-sizing:border-box;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.sec-first-step .p-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; /* 中央寄せの中で左揃えにするテクニック */
    text-align: left;
}

.sec-first-step .p-feature-list li {
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.sec-first-step .p-feature-list li span{
	font-size:inherit;
	}


.sec-first-step .p-feature-list li:last-child {
    margin-bottom: 0;
}

/* リスト内の赤文字調整（既存の u-color-red を少し暗い赤に上書きする場合） */
.sec-first-step .p-feature-list .u-color-red {
    color: #bb0000; 
}

/* --- 水色の下向き矢印 --- */
.c-arrow-blue-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #8ab4f8; /* 水色 */
    margin: 0 auto 30px;
}

/* --- ボトムメッセージ --- */
.p-first-step-bottom {
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    color: #224eb1; /* サイト全体のベースカラー（濃い青） */
    position: relative;
    z-index: 2;
}





/* ======================================================================================================================================================================================
   MOBILE OVERRIDES (max-width: 599px)
   ====================================================================================================================================================================================== */
@media screen and (max-width: 599px) {

  /* ==========================================================================
   Top Page Elements (スマホ)
   ========================================================================== */


.p-hero .l-container {
   	height: 350px;
    background-position: 40% center;
}

.p-hero__copy span.sub{
	display:block;
	font-size:22px;
	}
.p-hero__copy span.main{
    font-size: 22px;
    margin-top: -5px;
    margin-left: 20px;
	}
	
.p-hero__copy span.sub b{
	font-size:22px;
	}	

.p-hero__copy span.main b{
	font-size:24px;
	}


/* --------------------------------------------------
3つの利点（円形）
---------------------------------------------------- */

.p-course-benefits-wrap {
    padding-bottom: 50px; 
}

.p-course-benefits-wrap div.l-container {
    position: relative;
}

/* カードの並び（PC/スマホ共通の基本設定） */
.p-course-benefits {
    width:100%;
    height:55px;
}

/* カード単体のスタイル */
.c-benefit-card {
    width: 100px;
    top: -80px;
}

/* ラベル全体の配置コンテナ */
.c-benefit-card__label {
    font-size: 18px;
}

/* --------------------------------------------------
3つの特長のセクション
---------------------------------------------------- */

/* --- セクション全体 --- */
.sec-feature {
  padding: 40px 0;
  overflow: hidden;
}

/* --- 上段メインカード --- */
.p-feature-main {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	overflow: hidden;
	margin-bottom: 20px;
	width: 96%;
	margin:auto;
}

.p-feature-main__title {
  padding: 5px;
  font-size: 18px;
}

.p-feature-main__body .text-area 
  {
  padding:10px 0 10px;
  font-size:16px;
}

.p-feature-main__body .image-area {
  height: 120px; 
}

/* --- 下段3カラムカード --- */
.p-course-benefits-wrap .p-feature-list {
	margin:10px auto 0;
	gap: 3px;
}

.p-course-benefits-wrap .p-feature-card {
	width: 33%;
}

.p-course-benefits-wrap .p-feature-card__head {
    font-size: 15px;
    padding: 5px 0 5px;
    height:70px;
}

.p-course-benefits-wrap .p-feature-card__head span{
	font-size: 18px;
	line-height: 1.2;
	}
	
.p-course-benefits-wrap .p-feature-card__head span b{
	font-size: 30px;
    font-weight: normal;
    line-height: 0.4;
	}

.p-course-benefits-wrap .p-feature-card__body {
	font-size:15px;
	color:#224EB1;
	background-position: center top;
	position: relative;
	padding: 10px;
	text-align: left;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 1;
	line-height:1.6;
}
.p-course-benefits-wrap .p-feature-card__body span{
	font-size:14px;
  }

.bg-student01{
	text-align:left;
	background-image:none;
	}
.bg-student02{
	text-align:center!important;
	background-image: none;
	}
.bg-student03{
	text-align:left;
	background-image: none;
	}

/* 装飾パーツ */
.c-arrow-down {
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid #ffeb3b;
  margin: 8px auto;
}

.p-feature-card__body .large {
  font-size: 20px;
}

/* --------------------------------------------------
地域のセクション
---------------------------------------------------- */

.sec-area {
    padding:0 0 50px;
    }

.sec-area .area__grid{
	width:100%;
	padding: 10px; 
}
.sec-area ul li{
        font-size: 14px;
        min-width: 24%;
        gap: 1px;
        margin-right: 1px;
        margin-bottom: 3px;
        }
        
.sec-area ul.sp3 li{
        min-width: 33%;
        }
        
.sec-area ul li.sp50 {
		min-width:49%;
		}        

/* --------------------------------------------------
悩みのセクション
---------------------------------------------------- */
.sec-worry-blue {
    background: 
		url('../images/pref/worry.png') no-repeat 500% bottom/ 350px, /* 上に乗る画像 */
        #3B559B;
    clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 50px), 
        50% 100%, 
        0 calc(100% - 50px)
    );
    padding: 35px 0 0px; 
    margin-bottom: -100px; /* 尖った分を次の要素に重ねる */
}

/* --- H2タイトル（ハテナ背景） --- */
.p-heading-question {
	font-size: 24px;
}

.sec-worry-blue .ques_top{
	height:50px;
	}

.p-heading-question::before {
    top: -95px;
    font-size: 120px;
}

.sec-worry-blue img {
	height:175px;
	object-fit:cover;
	}

/* --- リストと画像のレイアウト --- */
.p-worry-content {
    position: relative;
    padding: 50px 100px 60px 0;
}

.p-worry-check-list li {
    padding-left: 30px;
    margin-bottom: 10px;

}


/* --- 右側の女性画像 --- */
.p-worry-image {
    position: absolute;
    right: -20px;
    bottom: -50px;
    width: 180px; /* スマホサイズに合わせて調整 */
    z-index: 2;
}

/* --- 下部の黄色ラベル --- */
.p-worry-bottom-label {
    width: fit-content;
    margin-top: 70px;  
    text-align: center;
    font-size: 18px;
    padding: 10px;
    /* 背景透過 */
    background: color-mix(in srgb, var(--color-accent-y), transparent 10%);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* 浮き出し効果 */
}


/* --------------------------------------------------
成績を伸ばす3つの条件
---------------------------------------------------- */

.sec-condition{
	padding:30px 0 50px;
	background: linear-gradient(145deg, #FFF 40%, #f0f7fb 40%);
	}
.sec-condition h2 span b{
    font-size: 54px;
    line-height: 40px;
	}


.sec-condition .p-condition-intro__text{
	text-align:left;
	}

/* --- 2. リスト構造のリセット --- */
.p-condition-list {
    width:100%;
    margin: 40px auto 0; /* 導入文との間隔 */
}

.c-condition-card {
    background: #fff;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
}

.c-condition-card dl,
.c-condition-card dt,
.c-condition-card dd {
    margin: 0;
    padding: 0;
}

/* --- 3. 見出し部分 (dt) --- */
.c-condition-card__head {
    padding: 15px 15px 15px 70px; /* バッジの横幅分あける */
    position: relative;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.c-condition-card__head h3 {
    font-size: 18px;
    text-indent: 0;
    padding: 0 10px 0 75px;
}

/* --- 4. 盾型バッジ（条件01〜03） --- */
.c-badge {
	width: 60px;
	height: 90px;
	font-size: 14px;
	padding:5px 0 0;
  }

.c-badge span {
    font-size: 36px;
    display: block;
    line-height: 15px;
}

.c-badge b {
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}


.c-condition-card__body {
    padding: 10px;
}

.p-condition-outro{
	text-align:left;
}

.p-condition-outro div{
	width:fit-content;
	margin:50px auto 15px;
	padding:10px 15px;
	}

/* --------------------------------------------------
やればできるを実感出来る家庭教師
---------------------------------------------------- */

.p-system-steps {
	max-width:100%;
}

.p-system-steps .p-system-steps__item {
	gap: 50px;      /* アイコンとテキストの間隔 */
	margin-bottom: 40px;
	justify-content: flex-start; /* ★ここを変更（左揃え） */
}

/* 反転した時のテキストの微調整（不要なマージンを削除） */
.p-system-steps__item.is-reverse .step-text {
    /* margin-left: 20%; ← Flexboxを使っている場合、これはレイアウト崩れの原因になるので削除します */
    margin: 0; 
    text-align: right; /* テキスト自体も右揃えにすると綺麗です */
}

/* 反転した時のアイコンの微調整 */
.p-system-steps__item.is-reverse .step-icon {
    /* ベースの margin: 0 50px 0 0; を打ち消す */
    margin: 0;
}

/* 数字背景：liに対して絶対配置 */
.step-num {
	font-size: 100px;
	/* 上下の位置だけ中央で固定 */
    top: 50%;
    transform: translateY(-50%);
}

.step-icon {
	width: 85px;
	height: 85px;
	margin: 0 50px 0 0;
}

.step-text {
	font-size: 16px;
	text-indent:-65px;
}

.sec-system-detail strong{
	font-size: 22px;
	padding: 0;
	}


.p-system-middle-grid {
    position: relative;
    padding: 130px 0 0;
    height: 350px;
}

/* 上部の白い矢印部分 */
.p-system-middle-grid::before {
    height: 50px;
}


.p-fukidashi-area{
	width: 100%;
    margin: 0;
    font-size: 16px;
	}

.p-fukidashi-area .left{
	padding:10px;
	margin: 0 0 0 15%;
	}


.p-fukidashi-area .right{
    padding: 10px;
    border-radius: 10px;
    margin: 30px 0 25px 0;
	}


.p-solve-label{
    padding:10px;
    color:#fff;
    font-size:16px;
    margin: -30px auto 0;
	}
	
.p-solve-label span{
	font-size:22px;
	}
img.promise{
    height: 150px;
    vertical-align: bottom;
    object-fit: cover;
}
.p-visual-overlap{
    margin: 50px auto 0;
    max-width: 100%;
}

.p-heading-system-check{
	font-size: 22px;
	padding: 50px 0 70px;
	letter-spacing: .1em;
	}


.p-promise-copy{
 	width: 90%;
    padding:10px;
    font-weight:bold;
    font-size:16px;
    margin: -30px auto 0;
	border:2px solid #224eb1;
	}

.p-question-footer{
	width:100%;
	padding:5%;
	box-sizing:border-box;
	background:#eff1fa;
	background-image: url("../images/pref/worry2.png");
	background-position:right bottom;
    background-size: 115px;
	background-repeat:no-repeat;
	}
div.promise_foot .zigzag-box{
	width:90%;
	margin:50px auto 30px;
	}	
div.promise_foot .zigzag-box span{
    padding:5px;
	}

/* 1行目を左端へ */
div.promise_foot .zigzag-box .line-1 {
    align-self: flex-start;
}

/* 2行目を右端へ */
div.promise_foot .zigzag-box .line-2 {
    align-self: flex-end;
}

/* --- 下部のテキスト --- */
div.promise_foot .center {
    font-size: 18px;
    font-weight: bold;
    color: #224eb1; /* 青色 */
}	
	
	
/*--------------------------------
選ばれる理由
----------------------------------*/

.sec4 {
    padding:0 0 50px;
     clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 50px), 
        50% 100%, 
        0 calc(100% - 50px)
    );
    position:relative;
    }

.sec4 ul {
    width:100%;
}

.sec4 ul li dl dt {
    font-size: 18px;
    display: flex;
    align-items: center; /* 上端合わせ（中央にしたい場合は center に変更） */
	line-height: 1.2;
	align-items: center;
	padding: 0 10px 0 0;
}

.sec4 ul li dl dt div{
    padding: 10px 50px 17px 15px;
    flex-shrink: 0; /* テキストが長くなっても、このdivの幅を縮めない（固定する） */
    }

.sec4 ul li dl dt div span{
        font-size: 34px;
 }

.sec4 ul li dl dd div{
    padding:15px;
}

.sec4 ul li dl dd div.point{
    padding:10px;
    }	

/* --------------------------------------------------
成功事例
---------------------------------------------------- */

section.sec-success-cases{
	padding: 100px 0 50px;
	margin:-100px auto 0;
	}


/* --- レイアウト：liを直接Flexboxにする --- */
.p-success-item {
	position:relative;	
    display: flex;
    align-items: center;
    gap: 30px;
    margin:0 auto 50px;
    
}

/* 反転の指定：これだけで入れ替わる */
.p-success-item.is-reverse {
    flex-direction: row-reverse;
}

/* --- 写真エリア --- */
.success-visual {
	position:absolute;
    width: 80px; /* 少し大きめにしてインパクトを出す */
    height: 80px;
    z-index:3;
    top:-15px;
}
/* --- テキストボックスエリア --- */
.success-content {
    padding: 20px;
    border-radius: 15px;
    position: relative;
    width: 80%;
    margin: auto;
}

.success-content span{
	font-size:inherit;
	font-weight:bold;
	}

/* --- 青い点数ラベル --- */
.success-title {
	width:fit-content;
	align-items: center;
    gap: 15px;
    margin:0 auto 15px;
}

.success-title .subject {
    font-size: 22px;
    color: #224eb1;
    font-weight: bold;
}

.success-title .score {
    background: #224eb1;
    color: #fff;
    padding: 4px 12px 0;
    font-size: 24px;
    font-weight: bold;
    border-radius: 4px;
}

.success-title .score b{
	color:#ffeb3b;
	font-size:36px;
	}



/* --------------------------------------------------
保護者の声
---------------------------------------------------- */


/* --- 背景画像とV字切り抜き --- */
section.sec-parent .container_wrap:nth-child(1){
    background-image: url(../images/pref/parents-bg.jpg);
    background-size: cover;
    padding:0 0 50px;
     clip-path: polygon(
        0 0, 
        100% 0, 
        100% calc(100% - 50px), 
        50% 100%, 
        0 calc(100% - 50px)
    );
    position: relative;
    padding:0 0 50px;
}

section.sec-parent .container_wrap:nth-child(2){
    padding:30px 0 50px;
    }

/* --- 吹き出しのデザイン --- */
.p-feedback-chat {
    max-width: 100%;
    margin: 30px auto 0;
}

.chat-bubble {
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 25px;
    width: fit-content;
    max-width: 90%;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chat-bubble.is-left { margin-right: auto; text-align: left; }
.chat-bubble.is-right { margin-left: auto; text-align: left; }

.chat-bubble p {
    font-size: 16px;
}

.chat-bubble .user {
    font-size: 12px;
}

/* --- 下部アウトロエリア --- */
.p-feedback-outro {
    padding: 30px 0;
}

.p-outro-heading {
    font-size: 18px;
}

.p-outro-heading .line-blue {
    display: table;
    margin: 0 auto 10px;
    background: #224eb1;
    color: #fff;
    padding: 5px 20px;
}



/* ------------------------------------------------
私たちについて
------------------------------------------------- */

/* --- 全体背景 --- */
.sec-about-us {
    padding:0 0 50px;
}


.sec-about-us .p-about-intro {
	text-align: center;
    margin-bottom: 40px;
}


.c-point-list {
	width:100%;
}

/* --- 情報リスト（青バー） --- */
.c-info-list {
    max-width: 600px;
    margin: 0 auto;
}

.c-info-list dt {
    text-align: left;
    padding: 8px;
}

.c-info-list dd {
    background: #fff;
    padding: 15px 15px 25px;
    text-align: left;
}

/* --- 特徴のサブリスト --- */
.c-feature-sublist {
    list-style: none;
    padding: 0;
    text-align: left;
}
.c-feature-sublist li {
    margin-bottom: 15px;
}



.c-feature-sublist li strong {
    display: block;
    color: #193e97;
    margin-bottom: 5px;
}

.c-feature-sublist li span{
	font-size:inherit;
	}

.c-info-list dt{
	width:100%;
	text-align:center;
	}


/* --- 料金エリア --- */
.p-price-main {
    width:100%;
    text-align:center;
}
.p-price-main .u-font-accent {
    font-size: 44px;
    color: #e60012; /* 赤色 */
}

.sec-about-us span.caution{
	margin:10px 0 20px 50%;
	display:block;
	font-size:12px;
	}

.c-campaign-banner {
    margin: 15px 0;
    font-weight: bold;
}


.c-campaign-banner dt{
	position:relative;
	width:fit-content;
	background:#ffea00;
	color:#103da3;
	margin:auto;
	z-index:3;
	}

.c-campaign-banner dd {
	background:#edf6ff;
	margin-top:-20px;
	padding-top:45px;
	}

.c-check-simple {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    color: #193e97;
}
.c-check-simple li::before {
    content: "・";
    font-weight: bold;
}

/* ------------------------------------------------
こんな生徒におすすめ
------------------------------------------------- */

.sec-recommend {
    padding: 0 0 50px;
/* url() を先に書き、カンマで区切って gradient を後に書く */
background: 
        /* 1. 先に「半透明グラデ」を書く（これが上に重なる） */
        linear-gradient(
            to bottom, 
            rgba(158, 170, 196, 0.7) 0%,   /* 0.7 = 70%の不透明度 */
            rgba(158, 170, 196, 0.7) 70%, 
            rgba(255, 255, 255, 0.9) 100%
        ),
        /* 2. 次に「画像」を書く（これが下になる） */
        url("../images/pref/rec-bg.png") no-repeat right top / auto 100%;
}


/* --- チェックリスト --- */
.p-recommend-content {
    max-width: 75%;
    margin: 0 0 40px;
}

.p-recommend-checklist {
    list-style: none;
    padding: 0;
        max-width: 600px;
    margin: 0 auto 40px;
}

.p-recommend-checklist li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 25px;
    line-height: 1.4;
    display: flex;
    color:#fff;
    align-items: center;
    min-height: 32px;
}

/* 白い枠線のボックス */
.p-recommend-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

/* 赤いチェックマーク */
.p-recommend-checklist li::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 18px;
    height: 10px;
    border-left: 4px solid #e60012;
    border-bottom: 4px solid #e60012;
    transform: rotate(-45deg);
}

/* --- フッターテキスト --- */

.sec-recommend p{
	font-weight:bold;
	margin:50px 0 0px;
	text-align:center;
	font-size:16px;
	}


/* ------------------------------------------------
本当にまだ大丈夫？
------------------------------------------------- */
.sec-risk {
    /* 背景：単色 ＋ シルエット画像 ＋ V字切り抜き */
    background: 
        linear-gradient(rgba(59, 85, 155, 0.95), rgba(59, 85, 155, 0.95)),
        url('images/risk-bg-person.png') no-repeat right bottom / contain;
    background-color: #3b559b;
    color: #fff;
    padding: 0 0 50px;
    position: relative;
    z-index: 3;

}

.p-risk-intro{
	text-align:left;
	}	

.c-risk-card {
	display: flex;
	align-items: stretch;
	margin:30px auto 30px;
	width:100%;
}

.c-risk-card img{
	display:block;
	width:20%;
	object-fit: cover;
	}
.c-risk-card__body{
	width:80%;
	}
.c-risk-card__body h3 {
	font-size: 18px;
	margin: 10px auto 0;
	text-align:center;
}
.c-risk-card__body p {
	line-height: 1.5;
	padding:10px;
}

/* --- 結び文 --- */
.p-risk-footer {
    text-align: center;
    margin-top: 40px;
    line-height: 1.8;
}
.p-risk-footer .large {
    font-size: 18px;
    margin-top: 10px;
}
.c-arrow-down-white {
    width: 0; height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: 15px auto 0;
}
/* ------------------------------------------------
100名限定キャンペーン
------------------------------------------------- */
.sec-campaign {
    padding:100px 0 50px;
    margin:-100px auto 0;
}

.sec-campaign .l-container .p-condition-card{
	position:absolute;
	top: -180px;
	width: 90%;      /* ★追加：横幅をしっかり広げる（90%や95%でもOK） */
	max-width: 100%;  /* ★修正：80%の制限を解除する */
    padding:15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.p-campaign-visual {
    min-height:300px;
    margin: 0 auto 50px; /* 下のボックスがはみ出す分、余白を広く */
}
.p-campaign-visual img {
    height: 200px;
    display: block;
    object-fit: cover;
}


.sec-campaign .l-container .p-condition-card h3 {
    font-size: 20px;
    color: #224eb1;
    margin-bottom: 15px;
    font-weight: bold;
}
.sec-campaign .l-container .p-condition-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; /* 中央揃えの中での左寄せ用 */
}
.sec-campaign .l-container .p-condition-card ul li {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    padding-left: 1.5em;
    position: relative;
}
.sec-campaign .l-container .p-condition-card ul li::before {
    content: "●";
    color: #224eb1;
    position: absolute;
    left: 0;
}
.sec-campaign p.note{
	padding:95px 0 0;
	}
.sec-campaign p.note span{
	display:inline-block;
	color:#224eb1;
	margin:0 auto 0;
	font-size:20px;
	}
	




/* ------------------------------------------------
安心の理由
------------------------------------------------- */

 .sec-relief p.top {
    text-align: left;
    margin-bottom: 15px;
    margin-bottom: 50px;
}

/* --- リストエリア（中央に幅を絞って配置） --- */
.p-relief-list {
    list-style: none;
    padding: 0;
    max-width: 100%; /* 画像のバランスに合わせて最大幅を制限 */
    margin: 0 0 0 0;
	text-align: left;       /* 基本のテキスト（1行目）は左揃えにする */
	text-align-last: right; /* 最後の行（この場合は2行目）だけを右揃えにする */
}

.p-relief-item {
    margin-bottom: 60px;
}

/* タイトルと番号アイコンの並び */
.p-relief-item__title {
        width: 100%;
        display: flex;             /* inline-flex から変更 */
        flex-direction: column;    /* 縦並びにする */
        color: #224eb1;
        font-size: 18px;
        font-weight: bold;
        line-height: 1.5;
        margin: 0 0 10px 0;
        letter-spacing: 0.05em;
    }

    /* 1行目を左寄せにし、中のアイコンとテキストを横に並べる */
    .p-relief-item__title .title-line-1 {
        display: flex;
        align-items: center;    /* アイコンと文字の高さを合わせる */
        align-self: flex-start; /* 左端に寄せる */
    }

    /* 2行目を右寄せにする */
    .p-relief-item__title .title-line-2 {
        align-self: flex-end;   /* 右端に寄せる */
        margin-top: 5px;        /* 1行目との間隔（お好みで調整） */
    }

/* 番号アイコン（01, 02...） */
.p-relief-item__title .num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: #224eb1;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-style: italic;
    margin-right: 5px;
    margin-top: -7px;
    line-height: 1;      /* 上下の見えない行間余白をリセット */
    padding-right: 5px;
    padding-bottom: 4px;
}

/* 画像 */
.p-relief-item__visual {
    margin-bottom: 15px;
    text-align: center;
}
.p-relief-item__visual img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* テキスト */
.p-relief-item__text {
	margin:15px 0 0;
    line-height: 1.6;
    color: #333;
    text-align: left;        /* 基本の左揃えを強制 */
    text-align-last: auto;   /* 最後の行だけ右に行く魔法を解除 */
}

/* --- アウトロエリア --- */
.p-relief-outro {
    /* l-container の中にあっても画面幅いっぱいに背景を広げるテクニック */
    background-color: #f2f5fc; /* 薄い青背景 */
    margin: 60px calc(50% - 50vw) 0;
    padding: 50px 20px;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
}

.p-relief-outro p {
    font-weight: bold;
    line-height: 1.8;
    margin: 0;
}

.p-relief-outro .c-relief-label {
	display:block;
	margin:20px auto 20px;
	width:fit-content;
	}


/* 紺色のラベル */
.c-relief-label {
    display: inline-block;
    background-color: #224eb1;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 8px 30px;
    margin: 20px 0;
    letter-spacing: 0.05em;
}

/* 最後の一文 */
.p-relief-outro .u-font-accent {
    font-size: 16px;
    margin-top: 15px;
    
}

/* ------------------------------------------------
やればできる
------------------------------------------------- */
.sec-first-step {
    padding: 30px 0;
    background-color: #fff;
    /* 右上に女性の画像を配置（透過PNGや白背景に馴染む画像を使用） */
    background-image: url('../images/pref/step.jpg');
    background-repeat: no-repeat;
    background-position: 100% top;
    background-size: 105% auto;
	z-index:0;
}

/* --- リード文 --- */
.p-first-step-lead {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
    position: relative;
    z-index: 2; /* 背景画像より前に出す */
}

/* --- 特徴・ベネフィットボックス（ゴールド枠） --- */
.sec-first-step .p-feature-box {
    background-color: #fffefa; /* ほんのり黄色い背景 */
    border: 2px solid #d4af37; /* ゴールドの枠線 */
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 15px;
    box-sizing:border-box;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.sec-first-step .p-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block; /* 中央寄せの中で左揃えにするテクニック */
    text-align: left;
}

.sec-first-step .p-feature-list li {
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0em;
}

.sec-first-step .p-feature-list li span{
	font-size:inherit;
	}


.sec-first-step .p-feature-list li:last-child {
    margin-bottom: 0;
}

/* リスト内の赤文字調整（既存の u-color-red を少し暗い赤に上書きする場合） */
.sec-first-step .p-feature-list .u-color-red {
    color: #b7282e; 
}

/* --- 水色の下向き矢印 --- */
.c-arrow-blue-down {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #8ab4f8; /* 水色 */
    margin: 0 auto 30px;
}

/* --- ボトムメッセージ --- */
.p-first-step-bottom {
	font-size: 18px;

}
}