@charset "utf-8";

body{
    color: #020202;
    background-color: #ffffff;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

header {
    width: 100vw;
    background-color: #fff;
  }

  nav {
    width: 100vw;
  }


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

mark {
    background: none;
}

a {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    text-decoration: none;
}

a:hover{
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
}

small {
  font-size: 0.8rem;
}

@media only screen and (min-width: 993px){ 
    .pc {display: inline-block;}    
    .sp {display: none;} 
}   
@media only screen and (max-width: 992px){  
    .pc {display: none;}   
    .sp {display: inline-block;} 
}  


/*Header
 -------------------------------*/
#header{
  height: 120px;/*高さ指定*/
  width:100%;/*横幅指定*/
  /*以下はレイアウトのためのCSS*/
  background-color: #fff;
  padding: 8px 8px 0 8px;	
}

@media only screen and (max-width: 768px) { 
	#header{
		  height: 60px;/*高さ指定*/ 
		  padding: 8px 2px 0 2px;
		}
}

#header.fixed{
    position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
}

  
.header-logo img {
	width: 100%;
	height: auto;
  max-width: 300px;
	padding: 20px 10px;
}

@media only screen and (max-width: 768px) { 
	.header-logo img { 
		width: 140px;
		padding: 0;
   }
}
.header-mail {
	width: 100%;
	height: auto;
    max-width: 380px;
	padding: 40px 10px;
}

.header-mail-sp  {
	width: 30px; 
	padding: 0 0 0 0;
	margin-right: 0;
}

.tel-img  {
	width: 100%;
	height: auto;
    max-width: 380px;
	padding: 40px 10px;
}

.tel-img-sp {
	width: 30px; 
	padding: 0 0 0 0;
	margin-right: 0;
}


/*ナビゲーション　＆　ハンバーガーメニュー
 -------------------------------*/
#g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 888;
    /*ナビのスタート位置と形状*/
  	top:-120%;
    left:0;
  	width:100%;
    height: 100vh;/*ナビの高さ*/
 	background:#fff;
    /*動き*/
  	transition: all 0.6s;
	opacity: 0.9;
	padding-top: 40px;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 888; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 888;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%); 
}

@media only screen and (max-width: 992px){ 
	#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 888;
    top:30%;
    left:30%;
    transform: translate(-30%,-30%);
	}

}  
/*リストのレイアウト設定*/

#g-nav li {
  list-style: none;
  text-align: center; 
  border-bottom: 1px dashed #dedede;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding:9px 2px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.1rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top:150px;
  right: 20px;
  cursor: pointer;
  width: 50px;
  height:50px;
  background-color: #003f89;
  border-radius: 10%;
  border:1px solid #E9E9E9;	
}

@media only screen and (max-width: 768px){  
	.openbtn1{ 
 		top:70px;
  		right: 20px;
   
	}
} 
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }


.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/*ボタンの通常設定*/
.btn-custom {
	display: block;
	width: 100%;
	max-width: 218px; 
	margin: 9px auto;
	border-radius:6px;
	color:#fff !important ;
	}

.btn-custom  i {
    font-size: 1rem;
    padding-left: 4px;
    vertical-align: middle;
}

.btn-custom:hover {
    top: -webkit-calc(100% - 3px);
    top: calc(100% - 3px);
}

/*資料請求ボタン*/
.btn-shiryou-org {
	display: block; 
    background-color: #f17900;
    border: solid 1px #f17900;
	
}

.btn-shiryou-org b::before {
    content: "無料";
    display: inline-block;
    text-align: center;
    font-size: 0.9rem;
    background: #ffffff;
    color: #f17900;
    padding: 3px;
    margin-right: 5px;
    border-radius: 5px;
    line-height: 1.2;
  }
 
/*説明会ボタン*/
.btn-setsumei {
    font-weight: 900;
    padding-right : 5px;/*文字との隙間*/
    background-color: #6D99FF;
    border: solid 1px #5a88f3;
    color: #ffffff;
  }


/*スライド
 -------------------------------*/
 .hero-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
  text-align: center;
  color: #111;
}
.hero-bg {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 100px; left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 8%; 
   font-family: "Shippori Antique B1", sans-serif;
}
.hero-text {
  background: rgba(255,255,255,0.3);
  padding: 30px 40px;
  border-radius: 10px;
  display: inline-block; 
  max-width: 60%;
}
.hero-sub1 {
  color:#e65a00;
  font-size:2rem;
  font-weight:900;
  letter-spacing:2px;
  margin-bottom:10px;
   
  text-shadow:
    1px 0   0 #fff,
   -1px 0   0 #fff,
    0   1px 0 #fff,
    0  -1px 0 #fff,
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff, 
    3px 3px 6px rgba(0,0,0,.35);
}
.hero-sub2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.5;
   
  text-shadow:
    1px 0   0 #fff,
   -1px 0   0 #fff,
    0   1px 0 #fff,
    0  -1px 0 #fff,
    1px 1px 0 #fff,
   -1px 1px 0 #fff,
    1px -1px 0 #fff,
   -1px -1px 0 #fff, 
    3px 3px 6px rgba(0,0,0,.35);
}
.hero-sub2 .highlight {
  color: #e65a00;
  font-weight: 700;
  font-size: 2rem;
}
.hero-main {
   margin: 10px 0 5px;
  text-align: center;
  
}
.hero-title-img {
  display: block;
  width: 420px;       /* 桌機寬度，可依實際圖片調整 */
  max-width: 90%;     /* 手機時自動縮放 */
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.3)); /* 陰影效果 */
}

.btn-cta {
  position: absolute;
  left: 50%;
  bottom: 5%;               /* ← 按鈕距離底部的距離，可自行調整 */
  z-index: 10;
  transform: translateX(-50%);
  width:360px;
  height: auto;
  background: #ff6b35;
  color: #fff !important;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.btn-cta:hover {
  background: #ff824f;
  transform: translateX(-50%);
}
.btn-cta .label-free {
  background: #fff;
  color: #ff6b35;
  font-weight: 700;
  padding: 4px 6px;
  border-radius: 4px;
  margin-right: 8px;
}
.btn-cta .label-text {
  text-align: left;
  line-height: 1.2;
  font-size: 1.5rem;
}
.btn-cta i {
  margin-left: 8px;
}

/* スライド --スマホRWD */
@media (max-width: 767px){
  .hero-overlay {
    top: 0px;
    justify-content: flex-end; /* SP */
    align-items: center; 
    padding-left: 0;
   
  }
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90vw;  
    height: 100vw;
    max-width: 330px;
    background: rgba(255,255,255,0.4);
    border-radius: 14px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:space-evenly;
    text-align: center;
    padding: 10px; 
  }
  
  .hero-sub1 { font-size: 1.5rem; margin-bottom: 8px;letter-spacing: 0; }
  .hero-sub2 { font-size: 1.3rem; line-height: 1.4; }
  .hero-main { margin-bottom: 8px; } 
  .hero-title-img {
    max-width: 320px;
  }
   .btn-cta {
    bottom: 3%;
    padding: 10px 18px;
    font-size: 0.9rem;
    width: 90%;
  }
}

/* 💻 iPad / Tablet（768px～1024px） */
@media (min-width: 768px) and (max-width: 1024px){
  .hero-overlay {
    justify-content: flex-start;
    padding-left: 5%; /* 比PC略窄，避免壓到主圖 */
  }
  .hero-text {
    background: rgba(255,255,255,0.6);
    padding: 25px 30px;
    border-radius: 10px;
    max-width: 65%;  /* 比PC稍寬 */
  }
  .hero-sub1 { font-size: 1.6rem; }
  .hero-sub2 { font-size: 1.2rem; line-height: 1.5; }
  .hero-sub2 .highlight { font-size: 1.6rem; }
  .hero-title-img {
    width: 340px;
    max-width: 80%;
  }
}
/*CTA BTN*/
.slide-shiryo-btn-area {
  position: relative;
  left: 50%;
  bottom: 5%;               /* ← 按鈕距離底部的距離，可自行調整 */
  transform: translateX(-50%);
  z-index: 10;
  
  display: inline;
  white-space: nowrap;
  width: 100%; 	
  max-width: 500px;	
  margin: auto 0;
  text-align: center;
  color: #fff !important;
}


.slide-shiryo-btn-area a, .btn-after::after {
  color: #fff !important;
}


.slide-shiryo-btn-area a:hover,
.slide-shiryo-btn-area a:hover .btn-after::after {
  border-color: #fff !important;
}

.slide-shiryo-btn {
  display: inline-block;
  padding: var(--btn-padding);
  margin: auto 0;
  border-radius: var(--btn-radius);
  border: #ffffff;
  text-decoration: none;
  font-weight: 700;
  color: #ffffff;
  background-image: var(--btn-main-bg);
  transform: translateY(0);
  transition: 0.4s;
  background-color: #ff6b35;
}

.slide-shiryo-btn:hover {
  transform: translateY(3px);
}

.btn-before {
  display: flex;
  text-align: left;
}

.btn-before::before {
  content: "無料";
  display: inline-block;
  text-align: center;
  font-size: var(--font-lg);
  background: #fff;
  color: var(--btn-sub-color);
  padding: 16px;
  margin-right: 5px;
  border-radius: 5px;
  line-height: 2;
}
.slide-shiryo-btn .btn-after::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  pointer-events: none;
}


.btn-text {
  padding-left: 8px;
  font-size: var(--font-lg);
  color: #ffffff;
}

.btn-text-sub {
  display: block;
  font-size: var(--font-md);
}

/* Responsive 
@media (max-width: 992px) {
  .slide-wrap {
    background-image: url(../images/slide-991.png.webp);
  }
  .slide-wrap-body {
    top: 200px;
    left: 18px;
  }
  .btn-before::before {
    font-size: var(--font-md);
    padding: 8px;
    margin-right: 2px;
  }
  .btn-text {
    font-size: 1.6rem;
    padding-left: 4px;
  }
  .btn-text-sub {
    font-size: var(--font-sm);
  }
}
*/
/*
@media (max-width: 576px) {
  .slide-wrap {
    min-height: 600px;
    background-image: url(../images/slide-576.png.webp);
    background-position: 70% top; 
  }
  .slide-wrap-body {
    top: 90px;
    left: 5px;
  }
  .slide-title {
    max-width: 95%;
    padding: 12px;
    margin-top: 30px;
  }
  .slide-title img {
    max-width: 100%;
    height: auto;
  }
  .slide-shiryo-btn-area {
    width: 100%;
    padding: 16px;
    display: flex;
    justify-content: center;
  }
  .slide-shiryo-btn {
    width: 100%;
    max-width: 360px;
    padding: 10px 40px 10px 12px;
    margin-top: 130px;
    border-radius: 12px;
    font-size: 1.6rem;
  }
 
  .btn-before::before {
    font-size: var(--font-sm);
    line-height: 3.5;
    width: 45px;
  }
  .btn-text {
    font-size: 1.4rem;
    padding-left: 4px;
  }
  .btn-text-sub {
    font-size: 0.9rem;
  }
  .btn-after::after {
    top: 50%;
    right: 16px;
    width: 10px;
    height: 10px;
  }
}
   */
/*main
 -------------------------------*/
/*通用*/
.balloon-blue {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    background: #003f8a;
    border-radius: 18px;
}
.balloon-blue::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #003f8a;
}
.balloon-blue p {
    margin: 0;
    padding: 0;
}
.title-blue {
    font-weight: 700;
    color: #003f8a;
}
.title-pink {
    font-weight: 900;
    color: #e73279;
}
.text-pink {
    font-weight: 500;
    color: #e73279;
}
.text-pink-900 {
    font-weight: 900;
    color: #e73279;
}
.bg-light-blue {
    background-color: #dbf2ff;
}
/*兩端スラッシュで囲む*/
.two_slash {
	display: block;
	margin: 28px auto;
	text-align: center;
	position: relative;
  	display: inline-block;
  	padding: 12px 28px; 
	letter-spacing: 1px;
	font-weight: 700;
	color:  #003f8a;
}
@media screen and (max-width: 768px) {
	.two_slash {
	 font-size: 1.2rem;	
	}
}
.two_slash:before, .two_slash:after {
  content: ''; 
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 38px;
  height: 2px;
  background-color:#003f8a;
}
.two_slash:before {
	left:0;
	 -webkit-transform: rotate(60deg);
     transform: rotate(60deg);}
.two_slash:after {
	right:0;
	-webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

/*白い兩端スラッシュで囲む*/
.two_slash_white {
	display: block;
	margin: 0 auto;
	text-align: center;
	position: relative;
  display: inline-block;
  padding: 12px 28px; 
	letter-spacing: 1px;
	font-weight: 700;
	color:  #fff;
}
@media screen and (max-width: 768px) {
	.two_slash_white {
	 font-size: 1.1rem;	
	}
}
.two_slash_white:before, .two_slash_white:after {
  content: ''; 
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 30px;
  height: 2px;
  background-color:#fff;
}
.two_slash_white:before {
	left:0;
	 -webkit-transform: rotate(60deg);
     transform: rotate(60deg);}
.two_slash_white:after {
	right:0;
	-webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}
/*ナミ線のアンダーライン*/
.nami_line {
    text-decoration:underline wavy #e63279;
}
/*ブルーのアンダーライン*/
.blue_line {
    background: linear-gradient(transparent 60%, #0091ff52 40% 90%, transparent 60%);
}
/*三角形の背景*/
.triangle {
    position: relative; 
  }
  
  .triangle:after {
    content: "";
    position: absolute;
    top: 100%;
    box-sizing: border-box;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 250px solid #003f8a;
  }
  .triangle-catch {
    display: block;
    width: 100%;
    position: absolute;
    top: 5vh;
    z-index: 1;
    color: #fff;
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .triangle-catch {
        font-size: 2.8rem;
    }
  }
  @media screen and (max-width: 393px) {
    .triangle-catch {
      top: 2.5vh;
  }
    .triangle:after { 
      top: 100%; 
      border-right: 50vw solid transparent;
      border-left: 50vw solid transparent;
      border-top: 180px solid #003f8a;
    }
  }
 /*center-catch*/ 
 .center-catch {
     display: block;
     text-align: center;
     padding:45vh 0  10vh 0;
 }
 @media screen and (max-width: 768px) {
	.center-catch {
        display: block;
        text-align: center;
        padding:35vh 0  5vh 0;
    }
}

/*完全合格コースの流れ
------------------------------------------*/
/*なぜJ -WebSCHOOL*/  
.why-jwb-bg {
    display: block; 
    width: 100%;
    margin: 0 auto; 
    background-image: url(../images/main-bg-001.svg) ;
    background-repeat:  no-repeat; 
    background-position: center;   
    background-size: 106px;
    text-align: center;
}
.why-jwb-bg h1 {
    display: block;
    padding: 9vh 0 10vh 0;
    color: #003f89;
    font-weight: 700;
    font-size: 2.5rem;
}
.because-jweb { 
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2;
}

.small-red-text {
  font-size: 13px !important;
  color: red;
  text-align: center;
}

 @media screen and (max-width: 992px) { 
  .why-jwb-bg {
      width: 508px;
      }
}
@media screen and (max-width: 768px) { 
    .why-jwb-bg {
      width: 100%;
        }
        .why-jwb-bg h1 {
			padding: 5vh 0 5vh 0;
            font-size: 2rem;
        }
}
@media screen and (max-width: 393px) { 
  .why-jwb-bg { 
    width: 100%;
    margin-top: 0;
	margin-bottom: 18px;
    }
   .why-jwb-bg h1 {
			padding: 5vh 0 5vh 0;
            font-size: 2rem;
        }
	
	.because-jweb {  
    font-size: 1.2rem; 
    }

 }

/*ステップ*/
.step {
    display: flex;
    max-width: 576px;
    margin:  0 auto;
    flex-direction: row;
    align-items: flex-start;
    align-content: center;
}


.step-badge {
	position: relative;
 	display: inline-block;
    width: 150px;
    height: auto;
    padding: 0.35em 0.65em;
    margin-top: 15px;
    font-size: 1.75em;
    font-weight: 700;
    color: #fff;
    background-color: #003f8a;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 22px;
}
.step-badge:before {
		content: "";
  		position: absolute;
  		top: 50%;
  		right: -24px;
  		margin-top: -12px;
  		border: 15px solid transparent;
  		border-left: 15px solid #003f8a;
	}

.step-badge p {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
    .step {
        width: 100%;
        flex-direction: column;
        justify-content:center;
        align-items: center;
        flex-wrap: wrap;
    }
	.step-badge {
		position: relative;
  		display: inline-block;
  		margin: 15px 0;
  		padding: 7px 10px;
  		min-width: 120px;
  		max-width: 100%;
		height: 60px;
}
	.step-badge:before {
		content: "";
  		position: absolute;
 		 top: 25px;
 		 left: 50%;
		transform: translateX(-50%);
 		 margin-left: -1px;
  		border: 60px solid transparent;
  		border-top: 60px solid #003f8a;
		z-index: 1;
	}
	.step-badge p {
		position: absolute;
		z-index: 2;  
		left: 50%;
		transform: translateX(-50%);
	}
}
.step-body {
    display: block;
    padding: 1rem 1rem;
    margin: 15px 30px;
    background: #fff;
    border-radius: 16px;
}
.step-text {
    display: block;
	width: 100%;
	max-width: 380px;
    font-weight: 500;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-size: 1.3rem;
}
/*よく聞くお悩み*/
.best3-relative {
  position: relative;
	margin: 40px auto;
	border: none;
	background-color:none;
}
.best3-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block; 
    width: 89px;
    height: 35px;
    padding: 0.35em 0.65em;
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #003f8a;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border-radius: 22px;
}
.best3-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.best3-content img {
    margin: 0 auto;
    max-width:293px ;
}
.best3-content p {
    display: block;
    margin: 0 auto;
    width: 293px;
    font-weight: 600; 
    font-size: 1.3rem;
    padding: 25px 1.1rem 25px 1.1rem;
}
@media screen and (max-width: 393px) {
  .best3-content p { 
    width: 100%;
  }
}
 /*メリット*/ 
 .merit-item { 
	 max-width:320px;
    padding: 10px 15px;
    margin: 10px 1% 50px 1%;
    background-color: #fff;
    border: 2px solid #003f89;
    border-radius: 10px;
    overflow: hidden;
 }
 @media screen and (max-width: 767px) {
  .merit-item { 
    width: 82%;
  }
 } 
 .merit-title {
     width: 100%;
     height: auto;
     display: flex;
     flex-direction: row;
     justify-content: flex-start;
     margin-bottom: 20px;
 }
 .merit-title span {
  width: 45px;
  height: 45px;
  padding: 6px 12px;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
  background-color: #003f8a;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
}

.merit-title h4 {
  padding-left: 6px;
  font-weight: 600;
  font-size: 1.3rem;
  color: #003f8a;
}
.merit-img {
    margin: 0 auto;
	max-width: 320px;
}
/*J-Webで確実合格*/
.jweb-is-good { 
    margin-top: 200px;
    padding-bottom: 110px;
    /*background: url(../images/feature_pc_bg.png) 50% 100%/cover no-repeat;
    background-position:center;
    background-size:100%; +/
    /*padding-top: 38vh;*/
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 22%, #dbf2ff 22%);
    background: -webkit-linear-gradient(top, #ffffff 22%, #dbf2ff 22%);
    background: linear-gradient(to bottom, #ffffff 22%, #dbf2ff 22%);
  }
  @media screen and (max-width: 992px) {
    .jweb-is-good {
      margin-top: 199px;
      /*background: url(../images/feature_pc_bg.png) 50% 0/cover no-repeat;
      background-position: top left;
      background-size: 100%; 
      padding-top: 18vh;*/
      background: -moz-linear-gradient(top, #ffffff 10%, #dbf2ff 10%);
      background: -webkit-linear-gradient(top, #ffffff 10%, #dbf2ff 10%);
      background: linear-gradient(top bottom, #ffffff 10%, #dbf2ff 10%);
      }
  }
  .jweb-pc {
    max-width: 360px;
    margin: 0 auto;
  }
 .jweb-pc-logo  {
    max-width: 600px;
 }
  .good-flow { 
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    margin-top: 50px;
}
  .good-flow-circle {
    position: relative;
    margin: 0 40px;
    padding: 8px;
    background: #fff;
    width: 100%;
    max-width: 220px;
    height: auto;
    border-radius: 12px;
    border: solid 5px #0084e7;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    flex-wrap: wrap-reverse;
    align-content: center;
  }
  .plus::after {
    content: "+";
    position: absolute;
    top: 50px;
    right: -100px;
    width: 80px;
    height: 80px;
    color: #0084e7;
    font-size: 5rem;
    font-weight: 900;
  }

  .good-flow-circle h3 {
    width: 100%;
    font-weight: 900;
    font-size: 2rem;
    color: #0084e7;
    text-align: center;
  }
  .good-flow-circle p {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 28px;
  }
  .jweb-flow-circle {
    display: block;
    margin: 0 auto;
    padding: 20px 12px;
    background: #DAF1FF;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    text-align: center;
  }
  @media screen and (max-width: 768px) {
    .jweb-pc {
      margin-bottom: 30px;
    }
    .jweb-pc-logo {
      margin:0 auto;
      max-width: 270px;
    }
    .good-flow {
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 10px auto 40px;
    }
    .good-flow-circle {
      margin: 40px auto;
      width: 220px;
      height: 320px;
    }
    .plus::after {
      content: "+";
      position: absolute;
      top: 105%;
      left: 55%;
      transform: translate(-50%, -50%);
      width: 88px;
      height: 88px;
      color: #0084e7;
      font-size: 5rem;
    }
  }
@media screen and (max-width: 576px) {
	 .good-flow-circle {
      margin: 40px auto;
      width: 220px;
      height: 340px;
    }
}

/*教材もサポート  いつでもどこでも何度でも*/
.card-gray-border { 
    margin: 35px auto;
}
.support-img {
  max-width: 290px;
  margin:12px auto;
}
.support-title {
  margin-top: 50px;
  display: block;
	 /*background: url(../images/blue-bg.svg) center center /contain no-repeat;
  background-size: 100%;*/
  background-color: #DAF1FF; 
  padding: 25px 8px;	
  width: 100%; 
  height:125px;	
}

@media screen and (max-width: 768px) { 
	.support-title { 
  		padding: 25px 8px;	
 		 width: 100%; 
 		 height:250px;	
	}
}
.support-title h3 { 
  color: #003F89;
  font-size: 2.2rem;
  font-weight: 900;
  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;        /* 文字の影 */
}
.support-content {
  font-size: 1.1rem;
  line-height: 36px;
}
/*mainの資料請求
 -------------------------------*/
 /*真中の資料請求*/
 .shiryo-block {
     padding: 1.25rem 1.5rem;
     margin-bottom: 50px;
	   background: #0084e7; /* Old browsers */
     background: -moz-linear-gradient(-45deg,  #0084e7 1%, #0a40bf 100%); /* FF3.6-15 */
     background: -webkit-linear-gradient(-45deg,  #0084e7 1%,#0a40bf 100%); /* Chrome10-25,Safari5.1-6 */
     background: linear-gradient(135deg,  #0084e7 1%,#0a40bf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
     filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0084e7', endColorstr='#0a40bf',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

 }
 .shiryo-img {
     max-width: 992px;
     margin: 0 auto;
 }
 .contact-block {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.contact-shiryo-btn-area { 
  width:600px;
  margin-top: 25px;
}
 .contact-btn-text {
  padding-left: 8px;
  font-size: 1.6rem;
  line-height: 100px;
}
 
.contact-shiryo-btn-area a {
  color: #fff;
}

.contact-shiryo-btn-area a:hover {
  color: #fff;
} 

.contact-btn-before {
  display: flex;
  text-align: left;
}

.contact-btn-before::before {
  content: "無料";
  display: inline-block;
  text-align: center;
  font-size: 1.8rem;
  background: #ffffff;
  color: #f17900;
  padding: 16px;
  margin-right: 5px;
  border-radius: 5px;
  line-height: 2;
}

.contact-btn-after::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.shiryo-tel { 
     display: block;
     padding: 12px 20px;
     color: #fff;
    /* border:2px solid #fff;
     border-radius: 25px; */
 }
.shiryo-tel-img {  
    max-width: 435px;
    margin: 0 auto;
}


@media screen and (max-width: 992px) {
  .contact-block { 
    flex-direction: column;
  }
  
  .shiryo-tel {  
    padding: 12px 10px;  
    border-radius: 18px; 
    }
    .shiryo-tel-img { 
      max-width: 415px;
  }
 }
 @media screen and (max-width: 768px) { 
  .contact-shiryo-btn-area { 
}

  .shiryo-tel {  
    padding: 12px 1rem;   
    }
    .shiryo-tel-img {  
      max-width: 410px;
  }
 }
 @media screen and (max-width: 576px) { 
  .contact-shiryo-btn-area { 
    width:310px; 
  }
.contact-btn-text {
  padding-left: 8px;
  font-size: 1rem;
  line-height: 66px;
  }

.contact-btn-before::before {
  font-size: 1.1rem;
  padding: 8px;
  margin-right: 5px;
  border-radius: 5px;
  height: 60px;
}
.contact-btn-after::after {
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
}
.shiryo-tel {  
  padding: 12px 9px; 
  border:2px solid #fff;
  border-radius: 15px; 
}
  .shiryo-tel-img { 
   max-width: 310px;
 }
}
 /*------------最後の資料請求------------*/
/*フローチャート*/
.stepbar {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.stepbar li.active {
    color: #e63279;
	font-weight: bold;
}

.stepbar li {
    position: relative;
    list-style: none;
    text-align: center;
    color: #0854a1;
    font-weight: bold;
    width: 33%;
	z-index: 2;
}


.stepbar li.active:before {
  background-color: #e63279;
  border: 1px solid #e63279;
}

.stepbar li:before {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0.5em auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #0854a1;
  border: 1px solid #0854a1; 
}

.stepbar li:after {
  position: absolute;
  z-index: -1;
  top: 1em;
  left: -47%;
  width: 99%;
  height: 1px;
  content: "";
  background-color:#0854a1;
}

.stepbar li:first-child:after {
  content: none;
}

@media screen and (max-width: 575px) { 
  .stepbar li:after {   
  left: -40%;
  width: 90%;
 }
 
}

/*フォーム*/
label {
  display: flex;
  flex-direction: row;
  align-self: center;
}


label:not(:last-child) {
  margin-bottom: 20px;
}

.form-label {
    margin-bottom: 0.5rem;
    width: 92%;
    margin: 0 auto;
}

.title {
  color: #fff;
  display: flex;
  justify-content:space-between;
  width: 220px;
  font-weight: 700;
}

.form-control {
	padding: 1rem 0.75rem;
	margin-bottom: 1.375rem;
}


@media screen and (max-width: 768px) {
  label {
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      flex-wrap: wrap;
  }
  .title {
    justify-content:flex-start;
    align-self:flex-start;
    padding-right: 5px;
    font-weight: 700;
    margin-bottom: 8px;
  }
}

.title-textarea {
  display: flex;
  justify-content: space-between;
  align-self: flex-start;
  padding-top: 20px;
  padding-right: 20px;
  width: 220px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.required {
  display: block;
  height: 30px;
  width: 48px;
  color: #fff;
  padding: 8px 10px;
  margin:0 18px;
  font-size: 12px;
  line-height: 1;
  background-color: #e63279;
  border-radius: 10px;
}

input,
textarea {
  display: block;
  padding: 20px 0;
  flex: 1;
  background-color: #f1f1f1;
  border: 2px solid #101636;
  border-radius: 10px;
}

textarea {
  height: 200px;
}

.input-group, .input-adress {
      width: 65%;
    }
 
/* 1200pxから991pxの間の画面幅 */
@media (max-width:1200px) and (min-width: 766px) {
    .input-group, .input-adress {
      width: 65%;
    }
  }

  /* 小於576px的螢幕寬度 */
@media (max-width: 575px) {
    .input-group, .input-adress {
      width: 100%;
    }
  }


/*特徴*/
.feature {
    border: 3px solid #daf1ff; 
    padding: 12px 8px;　
    margin: 18px auto;
    position: relative;
    z-index: 0;
}
.feature h3 {
  position: absolute;
  z-index: 20;
}
.feature-text-3 {
    font-size: 3rem;
    font-style: italic;
}
.feature h4 {
  margin-top: 70px;
  height: auto;
}
.feature-img {
  margin: 0 auto;
}
.feature-h {
  height: auto;
  margin-bottom: 35px;
  display: flex;
  flex-direction: row;
}
.arrow-right-bg {
    display: block;
    width: 28px;
    height: 28px;
    margin-right: 5px;
    background-image: url(../images/arrow-right-pink.svg);
	background-repeat: no-repeat;
    background-position:top;
    background-size: contain;
}
.sankaku {
    position: relative;
    z-index: 10;
}
.sankaku::before {
  content: '';
  position: absolute;
  width: 0px;
  height: 0px;
  top: 0;
  left:0;
  border-top: 30px solid #daf1ff;
  border-right:  30px solid rgba(0 0 0 / 0);
  border-bottom:30px solid rgba(0 0 0 / 0);
  border-left: 30px solid #daf1ff;
}

/*流れ*/
.timeline {
	position: relative;
	margin: 0 auto;
  padding-bottom: 15px;
  overflow: hidden;
}
.timeline:before {
	position: absolute;
	top: 0;
	width: 4px;
	height: 94%;
	content: '';
	background-color: #0084e7;
	left: 50px;
}
.timeline .timeline_group {
	position: relative;
	padding-top: 55px;
}
.timeline .timeline_group:not(:first-of-type) {
	margin-top: 4rem;
}
.timeline .time_year {
	position: absolute;
	top: 0;
	left: 0;
	padding: 0.5rem 1.5rem;
	color: #fff;
	background-color: #0084e7;
	width: 100%;
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
  font-size: 1.5rem;
  font-weight: 700;
}
.timeline .timeline_item {
	margin-bottom: 1em;
	position: relative;
	padding-left: 80px;
}
.timeline .timeline_item:not(:last-of-type) {
	margin-bottom: 2em;
}
.timeline .timeline_item:before {
	position: absolute;
	z-index: -1;
	left: 0;
	width: 100%;
	height: 3px;
	content: '';
	background-color: #0084e7;
	top: 50%;
	-webkit-transform: translateY(-50%);
					transform: translateY(-50%);
}
.timeline .time {
	position: absolute;
	left: 0;
	box-sizing: border-box;
	min-width: 95px;
	min-height: 95px;
	padding: 0.5rem 0.5rem;
 	margin-top: -55px;
	text-align: center;
	color: #fff;
	background-color: #0084e7;
	top: 50%;
  	border: 2px #0084e7 solid;
	border-radius: 50%;
}

.timeline .time-b {
	position: absolute;
	left: 0;
	box-sizing: border-box;
	min-width: 115px;
	min-height: 115px;
	padding: 0.5rem 0.5rem;
 	 margin-top: -55px;
	text-align: center;
  	vertical-align: middle;
	color: #fff;
	background-color: #0084e7;
	top: 50%;
  	border: 2px #0084e7 solid;
	border-radius: 50%;
}
.timeline .time_day {
 	margin-top: 20px;
	font-size: 1.4rem;
	font-weight: 700;
	display: block;
} 
.timeline .desc {
 	margin-left: 50px;
 	margin-top: 66px;
	padding: 1.5em  0.5em;
	border-radius: 2px;
	background-color: #fff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
	font-size: 1.1rem;
	text-align: justify;
}
.timeline .desc .flag {
	font-size: 1.5rem;
	font-weight: bold;
	margin: 0;
	padding: 0;
	padding-bottom: 0.3em;
}

@media only screen and (max-width: 767px) {
	.timeline:before {
		left: 0;
	}
	.timeline .timeline_group {
		padding-top: 40px;
	}
	.timeline .timeline_item {
		padding-top: 60px;
		padding-left: 20px;
	}
	.timeline .timeline_item:before {
		top: 90px;
	}
	.timeline .time {
		top: 77px;
		min-width: 70px;
		min-height: 40px;
		padding: 0 0.6rem;
		border: none;
		border-radius: 0 20px 20px 0;
    	margin-top: -30px;
	}
  .timeline .time-b {
		top: 50px;
		border-radius: 0 20px 20px 0;
    	vertical-align: middle;
	}
	.timeline .time_day { 
		font-size: 1.6rem;
		font-weight: 900;
	}
	.timeline .desc {
		font-size: 1.1rem;
    	width:100%; 
	}
  .timeline .desc p {
    	width: 88%;
    	padding-right: 18px;
	}
}

.step-flow-img {
    box-shadow: 15px 15px 0 #0084e7;
}

 /*  受講生のメッセージ
 -------------------------------*/
 .swiper-wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 420px !important;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  border: 6px solid #dbf2ff;
  color: #003F89;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content:flex-start;
  align-items: center;
  padding: 18px 20px 38px 20px;
}

.swiper-slide:nth-child(3n + 1) {
  background-color: #ffffff;
}

.swiper-slide:nth-child(3n + 2) {
  background-color: #ffffff;
}

.swiper-slide:nth-child(3n + 3) {
  background-color: #ffffff;
}

.swiper-pagination-bullets {
  width: 100px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 10px !important;
  background: #fff;
}

.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.card-user {
  width: 100%;	
  display: flex;
  flex-direction: row;
  justify-content:flex-start;
  align-items: flex-start;
  flex-wrap: wrap; 
  margin-bottom: 35px;
}
.card-user-img { 
  width: 30%;
  max-width: 98px;
}

.card-title {
  width: 70%;
	color: #007bff;
	text-align: right;
  float: right;
	font-weight: 700;
  font-size: 0.9rem;
}

 .card-text{ 
   display: block;
   width: 100%;
   color: #5577B4;
 }


.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset,10px);
    right: auto;
}
.swiper-button-next, .swiper-button-prev { 
    width: calc(var(--swiper-navigation-size)/ 44 * 2.5);
    height: var(--swiper-navigation-size);
}
/*  Q　アンド　A
  -------------------------------*/
.question {
	padding: 72px;
	background-image: url(../images/feature-4-content_q.png);
	background-repeat: no-repeat;
  background-position: left 10px;
}
.question-h4 {
    display: block;
    padding-top: 50px;
    vertical-align: middle;
    font-weight: 700;
}
.answer {
	padding: 62px;
	background-image: url(../images/feature-4-content_a.png);
	background-repeat: no-repeat;
  background-position: right;
  margin-top: 50px;
}
/*Q&Aデザインパート*/
.badge-q {
  color: #fff;
  font-weight: 900;
  text-align: center;
  background-color: #003F89;
  display: block; 
  width: 40px;
  height: 40px;
  padding: 4px 12px;
  margin-right: 10px;
  border-radius: 50%; 
}
.collapse-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.collapse-title h5 {
  width: 100%;
}

.collapse_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.collapse_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.collapse_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #cccccc;
}
.collapse_qa label {
	font-size: 1.2em;
	position: relative;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
	
}

.collapse_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.collapse_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.collapse_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.collapse_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.collapse_qa .cp_actab input[type=checkbox] {
  display: none;
}

/*フッター
 -------------------------------*/
 footer {
    margin-top: 30px;
    padding: 4rem 0.5rem;
    background: #183661;
    font-size: 0.8rem;
    color: #fff; 
}

footer a {
    color: #fff;
    text-decoration: none; 
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
   }
.footer-logo {
    max-width: 221px;
    padding-bottom: 30px;
}
.footer-heading {
      font-size: 0.9rem;
      position: relative;
      display: inline-block;
      margin-bottom: 30px; 
    }
    .footer-heading::before {
        content: '';
        position: absolute;
        bottom: -15px;
        display: inline-block;
        width: 60px;
        height: 2px;
        left: 28%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: white;
        border-radius: 2px;
      }
.footer-phone {
    max-width: 338px;
    padding-top: 30px;
}
 .footer-time { 
     display: inline-flex;
     flex-direction: row;
     justify-content: flex-start;
     align-items: flex-start;
     margin: 15px auto; 
    }
    @media screen and (max-width: 1411px) {
      .footer-time {  
        flex-direction: column;
        justify-content: flex-start; 
       }
    }
.copyright {
        color: #fff;
        padding-top: 1.2rem;
        text-align: center;
        border-top: 1px solid #fff;
       }
       
/*トップに戻る*/
.back-to-top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  background: #002B5E;
  opacity: 0.6;
  text-decoration: none;
  z-index: 10;
  border-radius: 50%;
}

.back-to-top:hover {
  background-color: #0014A3;
}

.back-to-top span{ 
  display: block;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 35px;
  text-decoration: none;
  margin:0 auto;
  text-align: center; 
  padding-top: 5px;	
}

/*サンクスページ*/
.thanks-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  background-color: #DAF1FF;
  padding: 1.8rem 1.3rem;
  margin: 12px auto;
  min-height: 250px;
}

.thanks-block p {
  width: 100%;
  font-size: 1.2rem;
  text-align: center;
}

.thanks-block img {
  width: 100%;
  max-width: 192px;
  margin: 0 auto;
}
/*J-WebSchool誘導ボタン*/
.j-web-btn {
  position: relative;
  display: block;
  padding: 18px 68px 18px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  color: #003F89;
  border: 2px  #003F89 solid;
  background-color: #fff;
  /*background-image: linear-gradient(45deg, #003F89 0%, #0056BA 100%);*/
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  transition: 0.4s;
  text-align: left;
  line-height: 48px;
}

.j-web-btn:hover {
  color: #003F8;
   -webkit-transform: translateY(3px);
  transform: translateY(3px);
}

.j-web-btn, .btn-after::after {
  border-top: 2px solid #003F89;
  border-right: 2px solid #003F89;
	
}


.btn-jweb-text {
  font-size: 1.2rem;
}

.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:flex-start;
}

.social li {
  text-align: center;
  margin-right: 5px;
}

.social a {
  margin:0 12px;
}

.social small {
  font-size: 0.5rem;
}

.social a i {
  display: inline-block;
	width: 40px;
  line-height: 40px;
  text-align: center;
	color: #fff;
    -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
	text-align: center;
	font-size: 22px;
	border-radius: 50%;
	padding:0;
}


.social-facebook a i{background: #3873ae;}
.social-youtube a i{background: #FF0000;}
.social-twitter a i{background: #62c6f8;}
.social-instagram a i{ background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
                                       background: linear-gradient( 135deg, #427eff 0%, #f13f79 70%)} 

.social-facebook a:hover i {background: #4893ce;}
.social-youtube a:hover i {background: #FF6464;}
.social-twitter a:hover i {background: #82e6ff;}