
/* 2025/07/26 */

@charset "utf-8";

/* html { overflow: auto; }
body { overflow: hidden; } */

html {
  overflow-y: scroll;
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;

  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h1,h2,h3,h4,h5,h6,p,ul,ol {
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.41;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

strong {
  font-weight: 700;
}

ins {
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

address {
  font-style: normal;
}

figure {
  border: 0;
  margin: 0;
}

fieldset {
  border: 0;
}

/* 文字色
======================================================================= */

body {
  color: #333;
}

/* リンク */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  max-width: 808px;
}

/* バック横幅いっぱい */

body .l-wide {
  margin-right: -100%;
  margin-left: -100%;
  padding-right: 100%;
  padding-left: 100%;
}

@media(max-width: 599px) {
  body .l-wide {
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }
}

/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding-s {
  padding: 1.5em;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .l-margin {
    margin: 24px auto;
  }
  .l-padding {
    padding: 24px;
  }
}

/* 二段組 */

.l-columns-2 {
  columns: 2;
  column-gap: 24px;
}

.l-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 三段組 */

.l-columns-3 {
  columns: 3;
  column-gap: 24px;
}

.l-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media(max-width: 599px) {
  .l-columns-2,
  .l-columns-3 {
    columns: 1;
    column-gap: 0;
  }
  .l-grid-2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    justify-items: center;
  }
  .l-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    justify-items: center;
  }
}
/* 画像の大きさ */

.l-max-width-90 { max-width: 90%; }
.l-max-width-80 { max-width: 80%; }
.l-max-width-70 { max-width: 70%; }
.l-max-width-60 { max-width: 60%; }
.l-max-width-50 { max-width: 50%; }
.l-max-width-40 { max-width: 40%; }
.l-max-width-30 { max-width: 30%; }
.l-max-width-20 { max-width: 20%; }
.l-max-width-10 { max-width: 10%; }

@media(max-width: 599px) {
  .l-sp-max-width-90 { max-width: 90%; }
  .l-sp-max-width-80 { max-width: 80%; }
  .l-sp-max-width-70 { max-width: 70%; }
  .l-sp-max-width-60 { max-width: 60%; }
  .l-sp-max-width-50 { max-width: 50%; }
  .l-sp-max-width-40 { max-width: 40%; }
  .l-sp-max-width-30 { max-width: 30%; }
  .l-sp-max-width-20 { max-width: 20%; }
  .l-sp-max-width-10 { max-width: 10%; }
}

/* 文字揃え */

.l-txt-center,
p.l-txt-center {
  text-align: center;
}

.l-txt-right,
p.l-txt-right {
  text-align: right;
}

.l-txt-left,
p.l-txt-left {
  text-align: left;
}

/* 形状 */

.is-shadow-s {
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

.is-shadow-l {
  filter: drop-shadow(0 16px 16px rgb(0 0 0 / .15));
}

.is-round {
  border-radius: 8px;
}

/* ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢  ▲ ここまでは基本触らない ▲  ◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢◤◢ */

/* =======================================================================

  ヘッダー

======================================================================= */

 .header {
  position: relative;
  background: #fff url(img/header__bg.jpg) no-repeat center 138px;
  background-size: contain;
  min-height: 400px;
  padding-top: 40px;
  padding-bottom: 60px;
}


.header__top {
  display: flex;
  align-items: center;     
  justify-content: space-between;
}

.header__top-1 {
  font-size: 21px;
  font-weight: 500;
  color: #002f6c;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #002f6c;
  
}

.fv__text {
 margin-top: 10px;
 color: #000;
 line-height: 1.333;
}

.header .fv__year {
 display: inline-block;

 padding: 4px 12px;
 margin-bottom: 0;
 font-size: 31px;
 font-weight: 700;
 border: 1px solid #000;
}

.fv__title {
 font-size: 46px;
 font-weight: 700;
 line-height: 1.333;
 margin-top: 10px;
 letter-spacing: 0.05em;
}

.fv__ken {
  font-size: 31px;
  margin: .2em;
}

.l-width {
  position: relative;
}

.fv-btn {
  position: absolute;
  top: 0;
  right: 28px;
  transition: background-color 0.3s ease;
  
  margin: 0;
  padding: 5px 29px;
  background-color: #288bc2;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  border-radius: 999px;
}

.fv-btn:hover {
  background-color: #002f6c;
  color: #fff;
}


@media (max-width: 599px) {

  .header {
    background: #fff url(img/header__sp.jpg) no-repeat center 110px;
    background-size: contain;          
   
    min-height: 400px;
    margin-bottom: 20px;              
  }

  .header__top {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .header__top-1 {
    margin-bottom: 0;
    font-size: 16px;
  }

 
  .fv-btn {
    position: static;
    margin-left: auto;
    margin-top: 0;
    padding: 6px 18px;
    font-size: 13px;
  }


  .header .fv__year {
    font-size: 20px;
    padding: 3px 10px;
  }

 
  .fv__title {
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0.03em;
    margin-top: 8px;
  }

 
  .fv__ken {
    font-size: 20px;
    margin: .1em;
  }

  .fv__text {
    font-size: 14px;
  }

}


/* =======================================================================

  メイン

======================================================================= */

.main {
 margin-top: 60px;

}


.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    margin-top: 0;
  }
}

  



/* =======================================================================
 コンセプト
======================================================================= */

.concept {
 display: flex;
 justify-content: space-between;
}

.concept__img {
  display: block; /* PCでは表示 */
}

@media (max-width: 599px) {
  .concept__img {
    display: none; /* スマホでは非表示 */
  }
}





/* =======================================================================
 なぜ続いてきたのか
======================================================================= */

.reason {
 display: flex;
 justify-content: space-between;
}



.reason__img {
  display: block; /* PCでは表示 */
}

@media (max-width: 599px) {
  .reason__img {
    display: none; /* スマホでは非表示 */
  }
}


/* =======================================================================
  難しさ
======================================================================= */
.difficulty__img {
  display: flex;
  justify-content: center; 
  margin-top: 40px;
}




/* ======================================================================
  役割
======================================================================= */
.purpose__img {
 display: flex;
 justify-content: center; 
 margin-top: 40px;
} 



/* =======================================================================
得られるもの
======================================================================= */
.gain__img {
  display: flex;
  justify-content: center; 
  margin-top: 40px;
} 




/* =======================================================================
どんな方に向いてるか
======================================================================= */
.target__item {
  margin: 10px;
  background-color: #f2efe6;
  display: grid;
  grid-template-columns: auto 25%;
}

.target__ul {
  padding: 0;
}

.target__img {
  padding: 0;
}

.target__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}


.target__item > p {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.444;

  display: flex;
  height: 100%;
  align-items: center;
  padding-left: 1em;
  
  text-align: center;
}

.target__item:last-child {
  margin-bottom: 0;
}


@media(max-width: 599px) {
  
 .target__item {
  margin: 10px auto;
  
}
  
  .target p {
  text-align: left;
}

  .target__item > p {
    font-size: 16px;
  }
} 



/* =======================================================================
勉強会の運営と体制について
======================================================================= */
.operation__img {
  display: flex;
  justify-content: center; 
  margin-top: 40px;
}

@media(max-width: 599px) {
  .operation {
    padding-top: 0;
  }

  .operation .h3 {
    margin-top: 0;
  }
}




/* =======================================================================
  説明会・見学会へのお申し込み
======================================================================= */
.signup {
  background-color: #ebf2f5;
}


.signup h3.h3--left-line {
margin-top: 40px; 
}


.signup__item {
  background-color: #fff;
  box-shadow: 0 3px 4px 0 rgb(0 0 0 / .1);
}

@media(max-width: 599px) {

.signup h3.h3--left-line {
  margin-top: 30px;  
}
  .signup__item {
  margin-top: 40px;
} 
}



/* ============================
スケジュール
============================== */

.table {
  width: 100%;
}

.table th,
.table td {
  padding: .75em 1em;
  vertical-align: top;
  text-align: left;
}

.table thead th {
  background: #369;
  color: #fff;
}

.table th,
.table td,
.table p {
  line-height: 1.5;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.table p {
  margin-bottom: .333em;
}
  .table p:last-child {
    margin-bottom: 0;
  }

.table tbody th {
  background: #f2efe6;
}

@media(max-width: 599px) {

.table tbody th {
 font-size: 16px;
}
}

/* =======================================================================
  CTA
======================================================================= */

.cta__p-1 {
  text-align: center;
 
}

.cta__p-2 {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  padding: 0;
   margin-bottom: 20px;
}


.cta__btn {
  display: flex;
  justify-content: center; /* 横中央 */
}

.cta .is-shadow-l:hover {
  filter: none;
}

@media(max-width: 599px) {

 .cta__btn img {
    width: 100%;
    height: auto;
  }

 .cta__p-1 {
  text-align: center;
  margin: 0;
 } 
.cta__p-2 {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
 
}




/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]), .main ul, .main ol {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]), .main ul, .main ol {
    font-size: 1em;
  }
}

/* 小見出し H3
======================================================================= */

.h3 {
  margin-top: 60px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid #2e8ae6;
  border-bottom: 1px solid #2e8ae6;
  text-align: center;
  font-size: 30px;
  line-height: 1.333;
  color: #333;
}
  
/* ========== H3 左線バリエーション ========== */

.h3--left-line {
  border-top: none;
  border-bottom: none;
  text-align: left;
  position: relative;
  padding-left: 1em;
  font-weight: 400;
}

.h3--left-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 81px;
  background-color: #48b2ec;
}


@media(max-width: 599px) {
  .h3 {
   margin-top: 40px;
   margin-bottom: 20px;
    padding: .75em 1em;
    font-size: 21px;
  }
}


/* =======================================================================
  フッター
======================================================================= */

.footer {
  margin: 0;
  padding: 40px 0;
  font-size: .8em;
  text-align: center;
  background-color: #fff;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__logo {
  margin-bottom: 30px;
}

.footer__navi {
  text-align: right;
}

.footer__navi p {
  margin-bottom: 0;
}

.footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display:flex;
  justify-content: flex-end;
}

.footer__nav ul li {
  font-size: .9em;
}

.footer__nav ul li:not(:last-child) {
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}

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

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

.footer__copy {
  font-size: 1em;
  text-align: right;
}

@media(max-width: 599px) {
  .footer {
    padding: 24px 0;
  }
  .footer__inner {
    display: block;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo img {
    max-width: 50%;
  }
  .footer__nav ul {
    justify-content: center;
  }
  .footer__copy {
    text-align: center;
  }
}

  


/* UL
======================================================================= */

.ul {
  background-color: #f2efe6;
  padding: 1.5em 2em;
  padding-left: 3em;
}

.ul li::before {
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
  color: #369;
  content: "\f111";
  font-family: FontAwesome;
}

@media(max-width: 599px) {
  .ul {
    font-size: 1em;
  }
}



/* =======================================================================
  チェックリスト
======================================================================= */

ul.checklist {
  margin: 30px 0;
  padding: 30px;
  background-color: #f2efe6;
  list-style-type: none;
}

ul.checklist > li {
  position: relative;
  margin: 0;
  padding: .5em;
  padding-left: 1.75em;
  
  line-height: 1.5;
}



ul.checklist > li::before {
  position: absolute;
  top: .25em; /* (line-height1.5 - 1) ÷ 2 */
  left: 0;

  color: #48b2ec;
  content: '\f14a';
  font-family: FontAwesome;
  font-size: 1.2em;
}

ul.checklist > li.caption {
  padding-left: 1.5em;
  text-indent: -1em;
  font-weight: normal;
  font-size: 17px;
  line-height: 1.618em;
}
ul.checklist > li.caption::before {
  content: none;
}

@media(max-width: 599px) {
  ul.checklist {
    margin: 24px 0;
    padding: 24px;
  }
}



/* =======================================================================
  このページの先頭へ戻る
======================================================================= */

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  clear: both;
  text-align: right;
}

.back-to-top a {
  display: block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAMAAAC5zwKfAAABhlBMVEUAAADMzMzd3d2AgIDd3d3d3d3c3Nzb29vc3NzV1dXc3Nzc3Nzd3d3d3d3c3Nzb29vc3Nzc3Nze3t7c3NzW1tbb29vd3d3d3d3d3d3c3Nzc3Nzf39/d3d3d3d3b29va2trc3NzGxsbb29vc3Nzd3d3d3d3c3Nzc3Ny/v7/c3Nzd3d3c3NzR0dHY2Njc3Nzc3Nzc3Nzc3Nzc3Nzb29vY2Nja2trc3Nzc3NzZ2dnc3Nze3t7d3d3c3Nzc3Nzc3NzX19fc3Nzc3Nzc3Nzd3d3b29vc3Nzc3Nzb29vV1dXd3d3c3NzV1dXd3d3c3Nzc3Nzd3d3c3Nzc3Nzd3d3d3d3c3Nzc3Nzb29vc3Nzd3d3d3d3d3d3c3Nzd3d3d3d3////o6Oj9/f329vbm5ub8/Pz5+fn4+Pj+/v7w8PDj4+Py8vLx8fHv7+/i4uL4+fnk5OTs7Ozd3d339/ekpqrt7e3u7u6doKS3ubzLzM6+wMLr6+vf39/6+vrl5uexs7bR09WqrbDr7O3e3+Ej3aiqAAAAXnRSTlMACuEC35y4FXYMFunx9NtH60j0px9NeHCUUCT+WchcKewJB2y70VjzCKjX2gsh1m2Yk9yPDUXV5RTG79DjkL0g+eTinV3FHUYS3r8G7d2+b/KZ4NK3dZ5RSlJ3SVq5/bnMpQAAAw1JREFUeF6t2WVz4lAUgOGDU6SFFipABaruLluVdXe58eBWddl/vjPMMGXTJpwk9/0Bz6ebKydQp6X53va+Ce9gafP1m/6+9t75JTCeJTy7GuUvkpwosERmr0QuecFHV2fDFiOaranFzydF8igxyftbmmw6uYY2eyojEJWETMHe1gD44l8CTJloVmYC7jjWG7AyIqmbyFgHUFzoc4ojqLiUM1Tf6/IdywSZfOzrAu2GdnIS0ZGU+zqk5XmWGZboimWWPere+EyR6K44M67mdS9miYGyi91Pe5G1NDFUei3ylOdqTBKDZRpdj71XnUfEcEedCVDmYIiJGIfS68qxZkA2p1jhIZ9ETCX5QlCb85iYLOus9QZSsllQTsUePIuVI6bjrBao5mYIhRh31WsIiDRAsad6KkwyhErMJFSyvZDogJLdVgGbUoRShWAFbMnQAjPDlTXTLNACheYxAOjgCbX4DgCYStIDk1MAMCoigPztXwwojgJ4LhHe9eHJyV0eIV56IMjjPJzI/4LWIspDisVWcGQwHlZMO+AZh/DQIvcWRq4QHlq8GgGvgPDQouCF9yzKuztEiewglHBe/honlmAT5/2Ha4I9LM7Diewg2AU1774K3FQAlCh44ZPqsjmt8RTirfqy0VjYhw+eUjxXA7mX4EirgWcPnlK8Vv/0NDaH/GnVU4pnWptDkNfYVW/O8kTR/fmpxl7Lf0dtsPguPQCNIg7AHgHwgfIhRf8YHaN90MMw5asIBAuUL0s2O63r3Ecb5Qvnu+qVuIfulZj+pR0s1rJ5r1zzrIAYjYfPb6jJmTULZv9AbRvmH4+KycOu2eftLuUH+A4oS5gbEQw9NcTIUB1iAES2jI5ZtiIqg6BtY4Og7W5QaX/ByKhqYR9Ue76nf5i29xw0SkzrHfdNJ0C7bys6BpLZlR9Qt5BTx8h0AzDFsEPdGCCLuwOMpM1JTOBnHPDNtdkLdQbjcxRH982K0T02S3i9P8oX05woyITIgsili3y0fz1sAeO5Diq/P/ylkt870dfee+AC7f4Bnw1DMsoy0tsAAAAASUVORK5CYII=") no-repeat center center;
  background-size: contain;
  line-height: 100px;
}

.back-to-top a:active {
  outline: 0 none black;
}






/* =======================================================================
  アクセント
======================================================================= */

.a-bold,
p.a-bold {
  font-weight: 700;
}

.a-big,
p.a-big {
  font-size: 21px;
}

.a-big1,
p.a-big1 {
  font-size: 24px;
}

.a-big2,
p.a-big2 {
  font-size: 27px;
}

.a-big3,
p.a-big3 {
  font-size: 30px;
}

@media(max-width: 599px) {
  .a-big,
  p.a-big {
    font-size: 17px;
  }

  .a-big1,
  p.a-big1 {
    font-size: 19px;
  }

  .a-big2,
  p.a-big2 {
    font-size: 21px;
  }

  .a-big3,
  p.a-big3 {
    font-size: 23px;
  }
}

.a-center,
p.a-center {
  text-align: center;
}

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #ffea00;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #ffee33;
}

.a-underline,
p.a-underline {
  text-decoration: underline;
}

/* 点滅 */

.a-blink {
	animation: blink .8s ease-in-out infinite alternate;
}

@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* フワフワ */

.a-fuwafuwa {
  animation: 2s fuwafuwa infinite;
}

@keyframes fuwafuwa {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(15px); }
}


/* =======================================================================
  プライバシーポリシー
======================================================================= */

.privacy {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.privacy h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.privacy h2 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.privacy p {
  margin: 10px 0;
}

.privacy ul {
  list-style-type: disc;
  padding-left: 20px;
}

.privacy li {
  margin-bottom: 5px;
}

.privacy address {
  font-style: normal;
  margin: 10px 0;
}

.privacy address a {
  color: #007BFF;
  text-decoration: none;
}

.privacy address a:hover {
  text-decoration: underline;
}

@media (max-width: 599px) {
  .privacy h2 {
    font-size: 18px;
  }
}




/* 

vwの値 = (目標のサイズ(px) / ビューポート幅(px)) × 100
（例）5.6vw = (21px ÷ 375px) × 100

ビューポート375pxの場合

18px = 4.80vw
19px = 5.07vw
24px = 5.33vw
21px = 5.60vw
22px = 5.87vw
23px = 6.13vw
24px = 6.40vw
25px = 6.67vw
26px = 6.93vw
27px = 7.20vw
28px = 7.47vw
29px = 7.73vw
30px = 8.00vw
31px = 8.27vw
32px = 8.53vw
33px = 8.80vw
34px = 9.07vw
35px = 9.33vw
36px = 9.60vw
37px = 9.87vw
38px = 10.13vw
39px = 10.40vw
40px = 10.67vw

*/

/* 
 * LP Template
 * © Motokazu Yoshida Design
 */