@charset "utf-8";
/*-----------------------------------------------------
	style-harassment.css
	独自のスタイル
------------------------------------------------------*/
main {
	margin-top: 100px;
}
section {
	margin-bottom: 70px;
}
a {
	color: #15A4E7;
}
.fcOrg {
  color: #ff8f00;
}
.bdY {
  background: linear-gradient(transparent 70%, #ffcd00 30%);
}
.fs20 {
	font-size: 2rem;
}
.fs18 {
	font-size: 1.8rem;
}

.h2Lp {
  display: table;
	text-align: center;
	font-weight: bold;
	font-size: 2.7rem;
	margin: 0 auto 40px;
  padding: 0 70px 7px;
  border-bottom: 1px solid #ff7500;
	color: #ff7500;
}
.h3Lp {
	font-weight: bold;
	font-size: 2.7rem;
	margin: 0 auto 90px;
  padding: 10px 70px;
  display: table;
  background: #ffcd00;
  box-shadow: 10px 10px 0px 0px rgba(178, 158, 75, 1);
}

p { line-height: 1.8;}
.forSp {display: none;}

/*メインビジュアル*/
section#secMainvisual div.mainvisual {
	width: 100%;
}

/*概要*/
section#secOutline p.case {
  width: 100%;
  min-height: 100px;
  margin: 15px 0 20px;
  padding: 10px;
  background: #fff0b3;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*特徴*/
section#secFeature {
  padding: 60px 0;
	background: #fffbe9;
}
section#secFeature dl.feature dt {
  position: relative;
  max-width: 380px;
  padding: 10px 0;
  margin: 0 auto 10px;
  text-align: center;
  font-weight: bold;
  font-size:2.4rem; 
  border-top: 2px solid #ffc100;
  border-bottom: 2px solid #ffc100;
  z-index: 1;
}
section#secFeature dl.feature dt > span {
  display: block;
  color: #ffc100;
  font-size: 3.5rem;
  position: absolute;
  top:-30px;
  left: 0;
  background: #fffbe9;
  padding: 0 10px 0 0;
  z-index: -1;
}
section#secFeature dl.feature dd {
  margin: 0 auto;
  max-width: 380px;
}
section#secFeature dl.feature dd p {
  margin-top: 10px;
}

/*教材詳細*/
section#secMaterial div.materialImg {
  background: #fffbe9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
}
section#secMaterial dl.materialInfo {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
section#secMaterial dl.materialInfo dt {
  width: 116px;
  height: 36px;
  background: #ffcd00;
  text-align: center;
  margin-bottom: 15px;
  padding: 5px 0;
  font-weight: bold;  
}
section#secMaterial dl.materialInfo dd {
  width: calc( 100% - 116px );
  padding: 5px 10px 5px 20px;
}
section#secMaterial dl.materialInfo dd ul {
  padding-inline-start: 20px;
}

/*体験会*/
section#secTrial .container {
}
section#secTrial dl.trial {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
section#secTrial dl.trial dt {
	width: 116px;
  height: 36px;
  background: #ffcd00;
  text-align: center;
  margin-bottom: 15px;
  padding: 5px 0;
  font-weight: bold;
}
section#secTrial dl.trial dd {
	width: calc( 100% - 116px );
  padding: 5px 10px 5px 20px;
}
section#secTrial dl.trial dd > p {
  margin: 0 0 10px;
  padding: 0;
  line-height: 1.4;
}


/*推奨環境*/
div.environment {
	background: #fff;
	padding: 20px;
	border: 1px solid #B78F63;
}
/*お問い合わせ*/
div.btn2wrap {
	display: flex;
	justify-content:center;
  gap:100px;
}
div.btn2wrap div.btnContact {
  width: 100%;
  max-width: 440px;
  margin: 0 0 0 auto;
}
div.btn2wrap div.btnEntry {
  width: 100%;
  max-width: 440px;
  margin: 0 auto 0 0;
}
div.btnContact a {
	width: 100%;
	max-width: 440px;
	min-width: 300px;
	margin: 30px auto;
	padding: 15px 30px;
	display: block;
	background: #ff7500;
	border: 2px solid #ff7500;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;		
	font-size: 2rem;
	border-radius: 8px;
}
div.btnEntry a {
	width: 100%;
	max-width: 440px;
	min-width: 300px;
	margin: 30px auto;
	padding: 15px 30px;
	display: block;
	background: #ff7500;
	border: 2px solid #ff7500;
	text-align: center;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;		
	font-size: 2rem;
	border-radius: 8px;
}

div.btnContact a:hover,
div.btnEntry a:hover {
	background: #FFF;
	border: 2px solid #ff7500;
	color: #000;
	opacity: 1;
	transition: .2s;
}


/*PC画面調整*/
@media (max-width: 1221px) {
  .forPc {
    display: none;
  }
  section#secFeature dl.feature dt {
    font-size: 2rem;
  }

}


/*-----------------------------------------------------
	for Tablet
------------------------------------------------------*/
@media (max-width: 768px) {
	section#secMainvisual div.container {
		padding: 0;
	}
  .h2Lp {
    font-size: 2.4rem;
    padding: 0 50px 7px;
  }
  .h3Lp {
    font-size: 2.0rem;
    padding: 10px 50px;
  }
  section#secMaterial div.materialImg {
    padding: 30px 0;
  }
  div.btn2wrap {
    gap:50px;
  }
}
/*-----------------------------------------------------
	for SP
------------------------------------------------------*/
@media (max-width: 428px) {
  .forSp {display: block}
  .h2Lp {
    padding: 0 30px 7px;
  }
	section {
		margin-bottom: 50px;
	}
  section#secOutline p.case {
    min-height: auto;
  }
  section#secOutline img.caseImg {
    width: 60%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  section#secFeature dl.feature {
    margin-bottom: 20px;
  }
  section#secFeature dl.feature dt {
    font-size: 2rem;
  }
  section#secFeature dl.feature dt > span {
    font-size: 3.2rem;
    top:-22px;
  }
	div.btn2wrap {
		display: block;
	}
	div.btnEntry,div.btnContact { 
		width: 80%;
		margin: 0 auto;
	}
  section#secMaterial dl.materialInfo dt {
    width: 110px;
  }
  section#secMaterial dl.materialInfo dd {
    width: calc( 100% - 110px );
    padding: 5px 10px;
  }
  section#secTrial dl.trial dt {
    width: 100px;
  }
  section#secTrial dl.trial dd {
    width: calc( 100% - 100px );
    padding: 5px 10px;
  }
}





/*-----------------------------------------------------
	ページ名/部品名
------------------------------------------------------*/
/*　section名　*/



