@charset "UTF-8";
.t1 {
	font-size:2em;
	line-height:normal;
}
.t2 {
	font-size:1.5em;
	line-height:normal;
}
.t3 {
	font-size:2em;
	line-height:110%;
}
.t4 {
	font-size:1em;
	line-height:1.2em;
}
@media screen and (max-width: 800px) {
.t1 {
	font-size:1.5em;
	line-height:normal;
}
.t2 {
	font-size:1.2em;
	line-height:normal;
}
.t3 {
	font-size:1.5em;
}
}
@media screen and (max-width: 500px) {
.t1 {
	font-size:1em;
	line-height:2em;
}
.t2 {
	font-size:1em;
	line-height:normal;
}
.t3 {
	font-size:1.5em;
}
}


/*文字の影----------------*/
.shadow {
    text-shadow:2px 2px 2px rgba(0,0,0,0.3);
}


.title {
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 100vh;
  background-image: -webkit-gradient(linear, right top, left top, from(#9be15d), to(#00e3ae));
  background-image: -webkit-linear-gradient(right, #9be15d 0%, #00e3ae 100%);
  background-image: linear-gradient(to left, #9be15d 0%, #00e3ae 100%);
}
.border-gradation {
    border-bottom: 6px solid;
    border-image: linear-gradient(to right, #9be15d 0%, #00e3ae 100%);
    border-image-slice: 1;
}


/*box*/
.box1 {
	max-width: 800px;
	margin: 0 auto;
	text-align: left;
}
@media screen and (max-width: 800px) {
.box1 {
	max-width: 500px;
}
}
@media screen and (max-width: 500px) {
.box1 {
	max-width: 100%;
}
}

#kyoju4 table th, .sodancenter table th,
#kyoju4 table td, .sodancenter table td{
	font-size: 1em;
}
#kyoju4 table, .sodancenter table{
  box-sizing: border-box;
  border-collapse:collapse;
  margin: 0 auto;
  text-align: left;
  width: 100%;
}
#kyoju4 table th, .sodancenter table th,
#kyoju4 table td, .sodancenter table td{
  border: 1px solid #999;
  padding: .5em 1em;
	font-size: 1.5em;
}
#kyoju4 a, .sodancenter a{
	font-size: 1em;
}
#kyoju4 table th,  .sodancenter table th{
  background: #eee;
	vertical-align: middle;
}
@media (max-width: 800px) {
    #kyoju4 table, .sodancenter table{
      width: 100%;
		text-align: center;
    }
    #kyoju4 table th, .sodancenter table th,
    #kyoju4 table td, .sodancenter table td{
      display: block;
		font-size: 1.2em;
    }
	#kyoju4 a,  .sodancenter a{
	font-size: 1.2em;
}
    #kyoju4 table th, .sodancenter table th,
    #kyoju4 table td, .sodancenter table td{
      border-top: none;    
    }
    #kyoju4 table tr:first-child th, .sodancenter table tr:first-child th{
      border-top: 1px solid #999;
    }
  }
@media (max-width: 400px) {
    #kyoju4 table th, .sodancenter table th,
    #kyoju4 table td, .sodancenter table td{
		font-size: 1em;
    }
	#kyoju4 a, .sodancenter a{
	font-size: 1em;
}
  }
/*「障がい者･児 相談支援事業所 ほなみ」の文字リンクホバー時、文字縮小する対処*/
#shogaisodanshien a {
	font-size: 1em;
}


/* olのスタイル */
section ol {
  margin: 0;
  padding: 0;
  list-style: none; /* デフォルトの数字を非表示に */
  counter-reset: li;
}

/* ol内のliのスタイル */
section ol li {
  position: relative;
  font-size: 1.1em;
  padding-left: 1.5em;
  line-height: 1.1;
}

/* 2つ目以降のliにmargin-topを指定 */
section ol li:not(:first-child) {
  margin-top: 0.5em;
}

/* 数字のスタイル */
section ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px; /* 数字のY軸線上の位置を調整 */
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: #00e3ae;
  font-size: 1em;
  color: #fff;
  line-height: 1em;
  text-align: center;
}
@media screen and (max-width: 800px) {
section ol li {
  font-size: 1.2em;
}
section ol li::before {
  font-size: 1em;
}
}
@media screen and (max-width: 500px) {
section ol li {
  font-size: 1em;
}
section ol li::before {
  font-size: 1em;
}
}


/*吹き出し*/
.角丸枠 {
    padding: 0.5em 1em;
    /*margin: 2em 0;*/
    font-weight: bold;
    color: #09F;/*文字色*/
    background: #E8F8FF;
    border: solid 2px #6091d3;/*線*/
    border-radius: 10px;/*角丸*/
}
.角丸枠 p {
    margin: 0; 
    padding: 0;
}

.角丸吹出 {
  position: relative;
  display: inline-block;
  /*margin: 1.5em 0;*/
  padding: 10px 20px;
  min-width: 100%;
  max-width: 100%;
  color: #FFF;
  /*font-size: 30px;
  font-family:"Meiryo UI";*/
  background: #00C70A;/*背景色*/
  border-radius: 10px;/*角丸*/
}

.角丸吹出:before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;/*▲の位置*/
  margin-left: -15px;
  border: 15px solid transparent;
  border-bottom: 15px solid #00C70A;/*▼ 背景色と同じに*/
}

.角丸吹出 p {
  margin: 0;
  padding: 0;
	font-weight: bold;
	text-align: center;
}

.角丸吹出センター {
  position: relative;
  display: inline-block;
  /*margin: 1.5em 0;*/
  padding: 7px 20px 10px 20px;
  min-width: 100%; /*120px*/
  max-width: 100%;
  color: #FFF;
  font-size: 20px;
  font-family:"Meiryo UI";
  background: #44B4F0;/*背景色*/
  border-radius: 10px;/*角丸*/
}

.角丸吹出センター:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;/*▼の位置*/
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #44B4F0;/*▼ 背景色と同じに*/
}

.角丸吹出センター p {
  margin: 0;
  padding: 0;
}

.角丸 {
  position: relative;
  display: inline-block;
  /*margin: 1.5em 0;*/
  padding: 7px 20px 10px 20px;
  min-width: 120px;
  max-width: 100%;
  color: #FFF;
  font-size: 20px;
  font-family:"Meiryo UI";
  background: #44B4F0;/*背景色*/
  border-radius: 10px;/*角丸*/
}

/*中央揃え*/
.paragraph {
  display: flex;
  justify-content: center;
  align-items: center;
}

#kyoju1 img, #kyoju2 img, #kyoju3 img {
	max-width: 350px;
	margin: 0 auto;
}
@media screen and (max-width: 550px) {
#kyoju1 img, #kyoju2 img, #kyoju3 img {
	max-width: 250px;
}
}



/*文字の影----------------*/
.shadow {
    text-shadow:2px 2px 2px rgba(0,0,0,0.5);
}


/*横並びBOX設定
---------------------------------------------------------------------------*/
.col_5{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_5 > div{
	width: 20%;
	margin: 0 auto;
	padding: 1em;
}
.col_5 > div > div{
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    text-align: center;
}
.col_5 img{
	max-width: 100%;
	max-height: 200px;
	margin: 0 auto;
	border: thin solid #999;
}
@media screen and (max-width: 960px) {
	.col_5 > div{
		width: 25%;
		padding: 10px;
	}
}
@media screen and (max-width: 540px) {
	.col_5 > div{
		width: 50%;
	}
.col_5 img{
	max-height: 150px;
}
}
@media screen and (max-width: 300px) {
	.col_5 > div{
		width: 100%;
	}
}

.col_4{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_4 > div{
	width: 25%;
	padding: 10px;
}
.col_4 > div > div{
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 960px) {
	.col_4 > div{
		width: 33.33333%;
	}
}
@media screen and (max-width: 480px) {
	.col_4 > div{
		width: 50%;
	}
}

.col_3{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_3 > div{
	width: 33.33333%;
	padding: 10px;
}
.col_3 > div > div{
	position: relative;
	overflow: hidden;
}
@media screen and (max-width: 960px) {
	.col_3 > div{
		width: 50%;
	}
}
@media screen and (max-width: 480px) {
	.col_3 > div{
		width: 100%;
	}
}

.col_2{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_2 > div{
	width: 50%;
	padding: 1em;
	margin: 0 auto;

}
.col_2 > div > div{
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
@media screen and (max-width: 1200px) {
.col_2 > div{
	width: 50%;
	padding: 20px;
}

.col_2 > div > div{
	position: relative;
	overflow: hidden;
}
}
@media screen and (max-width: 480px) {
.col_2 > div{
	width: 100%;
	padding: 10px;
}
}

.col_1{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.col_1 > div{
	width: 100%;
	padding: 0 0 10px 0;
	margin: 0 auto;
}
.col_1 > div > div{
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
@media screen and (max-width: 960px) {
	.col_1 > div{
		width: 100%;
	}

.col_1 > div > div{
	position: relative;
	overflow: hidden;
}
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: inline-block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 400px) {
.pc { display: none !important; }
.sp { display: inline-block !important; }
}