@charset "utf-8";



/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300&display=swap');

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #111111;	/*全体の文字色*/
	font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;		/*文字サイズ*/
	line-height: 1.7;		/*行間*/
	background: #f7f4f0;	/*背景色*/
	-webkit-text-size-adjust: none;
line-break: strict;
overflow-wrap: break-word;
word-wrap: break-word;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}

iframe {
	display: block;
	width: 80%;
	margin: 0 auto 30px;
}
@media (max-width: 700px) {
iframe {
	width: 90%;
	height: 300px;
}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #545454;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #ffbbbb;			/*マウスオン時の文字色*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	text-align: center;
	padding: 20px;
}
/*トップページのヘッダーブロックへの追加指定*/
.home header {
	padding: 0;
	position: relative;
}
/*ロゴ画像*/
header #logo img {
	width: 25%;		/*画像の幅*/
}
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	position: absolute;
	z-index: 1;
	width: 22%;	/*画像の幅*/
	left: 13%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 20px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	line-height: 2;
	text-align: center;
	font-size: 17px;	/*文字サイズ*/	
	background: #f7f4f0;	/*背景色*/
	padding: 19px;
}

.nav-fixed {
position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 0;
 z-index: 999;/*最前面へ*/
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;	/*横並びにする指定*/
	margin: 0px 5px;			/*上下、左右へのメニューの外側にとる余白*/
}
#menubar li a {
	text-decoration: none;display: block;
	padding: 0px 20px;	/*上下、左右へのメニューの内側にとる余白*/
}
/*現在表示中(current)と、マウスオン時の指定*/
#menubar li.current a, #menubar li a:hover {
	background: #ffbbbb;	/*背景色*/
	color: #fff;			/*文字色*/
	border-radius: 100px;	/*角丸のサイズ。大きめであれば適当で構いません。この１行を削除すると、長方形になります。*/
}

/*スマホ用メニューバー*/

@media screen and (min-width:1200px) {
.w1000 {
	display: none;
}
}
@media screen and (max-width:1199px) {
#menubar {
	display: none;
}
}
/*ハンバーガーメニュー下準備*/
#menubtn {
    position: fixed;
    top: 10px;
    right: 15px;
    display: flex;
    height: 35px;
    width: 35px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #8EC21E;
    border-radius: 23px;
}
#menubtn span,
#menubtn span:before,
#menubtn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
#menubtn span:before {
    bottom: 6px;
}
#menubtn span:after {
    top: 6px;
}

.w1000{
    max-width:1000px;
    margin: 0 auto;
}
nav.sp{
    background-color:#f7f4f0;
    padding:20px 3%;
    display: none;/*追加*/
    z-index: 999999;
}
.sp ul li {
    border-bottom: solid 1px #fff;
    list-style: none;
	padding-right: 50px;
	font-size: 13px;
	font-weight: bold;
    box-sizing: border-box;
	text-align: right;
	line-height: 2.5em;
	letter-spacing: 5px;
}
.sp ul li a{
text-decoration: none;
    padding: 9px 15px 10px 0;
	color: #fe6767;
}

#nav-input:checked ~ nav {/*チェック入ってるとき ~ メニューが*/
    display: block;/*追加*/
    animation: 1s fadeIn;/*追加*/
}
@keyframes fadeIn {
    from { opacity: 0; }/*追加*/
    to { opacity: 1; }/*追加*/
  }
.nav-hidden{
    display:none;
}



/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 10px 3% 50px;	/*上下、左右へのブロック内の余白*/
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	clear: both;
	margin-bottom: 30px;
	font-size: 24px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
}
#contents h2 span {
	display: inline-block;
	background: url(../images/line1.png) repeat-x center bottom / auto 2px;	/*下線画像の読み込み。2pxは画像の高さの指定。*/
	padding: 0px 30px;	/*上下、左右への余白。文字の両サイドをここで空ける分だけ、下線が見えます。*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	clear: both;
	margin-bottom: 30px;
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

.hour h4 {
  position: relative;
	text-align: center;
	line-height: 2em;
	margin-bottom: 10px;
}

/*p文章少し大きく、センターよりに*/
@media (min-width: 1024px){
.pala {
	margin-left: 50px;
	margin-bottom: 20px;
	font-size: 1.08em;
}
}

.hour h4 span {
  position: absolute;
  top: 0;
  left: 29%;
  padding: 0 1.5rem;
  color: #fff;
  border-radius: 10px;
  background: #5bc8ac;
}

.hour h4 span:after {
  position: absolute;
  top: calc(50% - 7px);
  right: -11px;
  width: 0;
  height: 0;
  content: '';
  border-width: 7px 0 7px 12px;
  border-style: solid;
  border-color: transparent transparent transparent #5bc8ac;
}

@media (max-width: 768px) {
.hour h4 {
	margin-left:70px;
}
.hour h4 span {
  left: 14%;
}
}
@media (max-width: 700px) {
.hour h4 {
	text-align: left;
	margin: 0 0 3px 100px;

}
.hour h4 span {
  left: -100px;
}
}

/*  イラストふきだし
-----------------------------　　*/
.balloon {
  width: 100%;
  margin: 1.5em auto;
  overflow: hidden;
}
.balloon .balloon_img {
  float: left;
  margin-left: 90px;
  width: 180px;
}
.balloon .balloon_img_right {
  float: right;
  margin-right: 90px;
  width: 180px;
}
.balloon4, .balloon5{
  position: relative;
  margin: 2em 10em 2em 20em;
  padding: 15px 15px 5px;
  background: #fff0c6;
  border-radius: 30px;
}
.balloon5 {
  background: #d7ebfe!important;
}
.balloon5:after {
content: "";
  position: absolute;
  top: 35px; 
  left: -35px;
  border: 18px solid transparent;
  border-right: 18px solid #d7ebfe;
}
.balloon6{
  position: relative;
  margin: 2em 20em 2em 10em;
  padding: 15px 15px 5px;
  background: #d7ebfe;
  border-radius: 30px;
}
.balloon6:after {
content: "";
  position: absolute;
  top: 35px; 
  right: -30px;
  border: 18px solid transparent;
  border-left: 18px solid #d7ebfe;
}

.balloon4:before {  
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #fff0c6;
  border-radius: 50%;
}
.balloon4:after {
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #fff0c6;
  border-radius: 50%;
}
.balloon4 p, .balloon5 p, .balloon6 p {
  margin: 10px 0 0 0; 
  padding: 0;
	font-size: 1.3em;
}
.balloon .text{
	margin-left: 10em;
}
@media (max-width:1024px){
.balloon .balloon_img {
  margin-left: 10px;
  width: 140px;
}
.balloon .balloon_img_right {
  margin-right: 50px;
  width: 140px;
}
.balloon .text{
	margin-left: 5em;
}
.balloon4, .balloon5 {
  margin: 2em 0 2em 13em;
  padding: 10px 10px 0;
}
.balloon6 {
  margin: 2em 13em 2em 0;
  padding: 10px 10px 0;
}
}
@media (max-width:768px){
.balloon .balloon_img_right {
  margin-right: 10px;
}
.balloon .text{
	margin-left: 0px;
}
.balloon5 {
  margin: 0 0 1em 13em;
}
}
@media (max-width:600px){
.balloon .balloon_img {
	margin-top: 20px;
  width: 80px;
}
.balloon4 {
  margin: 0 0 1em 7em;
}
.balloon5 {
  margin: 0 0 1em 8em;
}
.balloon6 {
  margin: 0 8em 1em 0;
}
.balloon4 p{
  font-size: 1.2em;
}
.balloon5 p, .balloon6 p {
  font-size: 1.1em;
}
.balloon .balloon_img_right {
  margin-right: 0;
  width: 80px;
}
}
.flexbox {
	display: flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
	width: 75%;
	margin:10px auto;
}
.flexitem {
	margin: 0 30px 10px;
}
.rectangle{
position: relative;
  display: inline-block;
  width: 200px;
  height: 100px;
  border-radius: 10px 30px;
}
.rectangle_color1 {
	border: 3px solid #fd95c8;
}
.rectangle_color2 {
	border: 3px solid #85e0e0;
}

.rectangle span{
position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :180px;
	text-align: center;
  padding-left: 10px;
	font-weight: bold;
}
@media (max-width:1024px){
.flexbox {
	width: 100%;
}
}
@media (max-width:600px){
.flexitem {
	margin: 0 5px 10px;
}
.rectangle{
	width: 140px;
	height: 130px;
}
.rectangle span{
	width :120px;
	font-size: 0.9em;
}
}


/*療育についてブロック
---------------------------------------------------------------------------*/
.double h3 {
	margin: 0!important;
	padding: 0!important;
}
.double{
	border: 5px double #d7ebfe;
	margin: 0 10em;
}
@media (max-width:768px){
.double{
	margin: 0 2em;
}
}
.triangle{
  width: 0px;
  height: 0px;
  border: 30px solid;
  border-color: #d7ebfe transparent transparent transparent;
	margin: 0 auto;
}

/*カリキュラム
---------------------------------------------------------------------------*/
.maru {
	margin-left: 80px;
 height:30px;
 width:30px;
 border-radius:50%;
 line-height:30px;
 text-align:center;
background:pink;
}
.maru span{
	color: #fff;
}
.curbox {
	width: 80%;
	margin: 0 auto;
}
.curbox-left {
	width: 75%;
	float: left;
	font-size: 1..5em;
}
.curbox-left dt, .curbox2 dt{
	font-weight: bold;
	color: #5bc8ac;
	margin-top: 20px;
	font-size: 1.05em;
}
.curbox-right {
	float: right;
	margin-bottom: 20px;
	margin-top: 20px;
}
.curbox2 dt{
	width: 60%;
	float: left;
}
.curbox2 dd{
	margin-left: 46em;
}
.curbox2 dd img{
	margin-bottom: 10px;
}
@media (max-width: 1024px) {
.maru {
	margin-left: 50px;
}
.curbox {
	width: 95%;
}
}
@media (max-width: 768px) {
.curbox-left {
	width: 60%;
}
.curbox2 dd{
	margin-left: 27em;
}
}
@media (max-width: 600px) {
.curbox-left, .curbox2 dt {
	float: none;
	width: 100%
}
.curbox-right {
	float: none;
	text-align: center;
}
.curbox2 dd{
	margin: 10px 0 0 30px;
}
}
.img-shadow{
	padding: 5px;
    background-color: #FFFFFF;
  filter: drop-shadow(6px 6px 6px rgba(0,0,0,0.4));
}
.rotate01 {
      -moz-transform:rotate(-5deg);
      -webkit-transform:rotate(-5deg);
      -ms-transform:rotate(-5deg);
      transform:rotate(-5deg);
    }
.rotate02 {
      -moz-transform:rotate(2deg);
      -webkit-transform:rotate(2deg);
      -ms-transform:rotate(1deg);
      transform:rotate(2deg);
    }

/*施設紹介　理念
---------------------------------------------------------------------------*/

.punch-box-b {
 position: relative;
 margin: 2em auto;
 padding: 40px 30px 5px;
 width: 80%; /* ボックス幅 */
 background: #FFFAF0; /* ボックス背景色 */
 color: #666; /* 文章色 */
 border: 2px solid #FFDEAD; /* ボックス枠線 */
 border-radius: 5px;
 box-shadow: 0 0 3px #ccc; /* 影 */
	font-size: 1.1em;
}
.punch-box-b::before, 
.punch-box-b::after {
 position: absolute;
 content: '';
 top: 10px;
 width: 18px;
 height : 18px;
 background: #fff; /*穴背景色*/
 box-shadow: 0 0 8px #cccccc inset;
 border: 1px solid #FFDEAD; /*パンチ穴枠*/
 border-radius: 50%;
}
.punch-box-b::before { left: 80px;}
.punch-box-b::after { right: 80px;}




/*listブロック
---------------------------------------------------------------------------*/
/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	/*font-size: 90%;*/		/*文字サイズ*/
	margin-bottom: 30px;	/*ブロックの下に空けるスペース*/
}
/*各ブロックごとの設定（サムネイルタイプへの追加指定）*/
.list.thumb {
	width: 23%;			/*画像幅*/
	margin: 0 1% 30px;
	padding-top: 1%;
	float: left;		/*画像を左に回り込み*/
	text-align: center;
}
.list.thumb a {
	text-decoration: none;
}
@media screen and (max-width: 768px) {

.list.thumb {
	width: 49%;			/*画像幅*/
	margin: 0 auto 30px;
}
}

/*画像の設定*/
.list img {
	border-radius: 50%;	/*円形にする指定*/
	width: 20%;			/*画像の幅*/
	float: left;		/*画像を左に回り込み*/
	margin-right: 3%;	/*画像の右に空けるスペース*/
}
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	margin: 0;
	float: none;
	width: 60%;		/*画像の幅*/
}

/*マウスオン事*/
.list a:hover img {
	transition: 0.5s;
	opacity: 0.7;	/*透明度。70%色が出た状態。*/
}
/*マウスオン事（サムネイルタイプへの追加指定）*/
.list.thumb a:hover img {
	transform: scale(1.05);	/*ほんの少し画像を大きくする指定*/
}
/*h4タグ*/
.list h4 {
	color: #ffbbbb;			/*マウスオン時の文字色*/
	font-size: 140%;	/*文字サイズ*/
}
@media (min-width: 1024px) {
.list h4 {
	margin: 20px 0;
}
}
/*h4タグ（サムネイルタイプへの追加指定）*/
.list.thumb h4 {
	font-size: 90%;	/*文字サイズ*/
}
/*p(段落)タグ*/
.list p {
	padding: 0 !important;
	line-height: 1.8;
	overflow: hidden;
}


/*option1（productページのブロックの右上に斜めに配置している帯）
---------------------------------------------------------------------------*/
.option1 {
	text-align: center;display: block;
	width: 300px;		/*幅*/
	position: absolute;
	right: 0px;	/*ボックスに対して右から0pxの場所に配置*/
	top: 0px;	/*ボックスに対して上から0pxの場所に配置*/
	transform: rotate(45deg) translate(93px,-45px);	/*45度回転。右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
	background: #f38080;	/*背景色*/
	color: #fff;			/*文字色*/
	letter-spacing: 0.1em;	/*文字間隔をほんの少し広くとる*/
	box-shadow: -3px 3px 10px rgba(0,0,0,0.15);	/*ボックスの影。右へ、下へ、ぼかし幅、0.15は色が15%出た状態の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding: 10px;
	font-size: 90%;
}
footer a {text-decoration: none;}
footer a:hover {color: #545454;}
footer .pr {display: block;}
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl {
	height: 100px;	/*高さ。内様がこれを超えるとスクロールバーが出ます。*/
	overflow: auto;
	margin-bottom: 20px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
	font-size: 0.9em;
}
/*記事設定*/
#new dd {
	padding-left: 9em;
}
@media (max-width: 768px){
#new dt {
	width: 7em;
}
/*記事設定*/
#new dd {
	padding-left: 7em;
	padding-right: 5px;
}
}
/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	overflow: hidden;position: relative;
	padding: 20px 40px;		/*上下、左右へのボックス内の余白*/
	border-radius: 30px;	/*角丸のサイズ。この１行を削除すると、通常の長方形になります。*/
	margin-bottom: 30px;	/*下に空けるスペース*/
	background: #fff;		/*背景色*/
}
/*bg1タイプの背景色*/
.bg1 {
	background: #ede9e2;	/*背景色*/
}
/*bg2タイプの背景色*/
.bg2 {
	background: transparent;	/*背景を透明にする*/
	border: 2px dashed #545454;	/*枠線の幅、線種、色*/
}

/*
お問い合わせ枠
-------------------------------------------*/
.contact {
	text-align: center;
	background-color: #F9F9F9;
	border: 2px solid #FFF;
	margin: 10px 50px 50px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
}
.contact  h2 {
	background-color: #F6F6F6;
	padding-top: 10px;
	margin: 0 80px;
	border-radius: 10px 10px 0 0 / 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #8EC21E;
	font-size: 26px;
}
.contact .tel a {
	font-size: 26px;
	color: #0c0300;
	text-decoration: none;
	line-height: 0.5em;
}
.contact p {
	margin: 0 auto; 
	line-height: 0.5em;
	font-size: 85%;
}
.contact .tel a i {
	padding-right: 9px;
}
.contact .tel a strong {
	font-size: larger;
	font-weight: normal;
}

.btn_contact a {
	display: block;
	padding-top: 10px;
	padding-bottom: 8px;
	background-color: #8EC21E;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	font-size: 18px;
	line-height: 32px;
	color: #FFF;
	text-decoration: none;
	width: 50%;
	margin: 20px auto;
	border: 1px solid #FFF;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
	-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px;
}
.btn_contact a:hover {
	background-color: #FFF;
	color: #ffbbbb;
	border: 1px solid #ffbbbb;
}
.btn_contact a i {
	padding-right: 10px;
}
@media screen and (max-width: 600px) {
.contact {
	margin: 10px 0 20px;
  }
.contact  h2 {
	margin: 0 20px;
}
.btn_contact a {
	width: 80%;
}
}

/* 施設概要写真*/

.circle-1,
.circle-2,
.circle-3 {
  color: #fff;
  padding: 5%;
  width: 250px;
  height: 200px;
  margin: 0 -15px;
  mix-blend-mode: multiply;
}
.circle-1 {
  background: #f66;
  border-radius: 50% 50% 50% 70%/50% 50% 70% 60%;
}
.circle-2 {
  background: #f92;
  border-radius: 80% 30% 50% 50%/50%;
}
.circle-3 {
  background: #fc2;
  border-radius: 40% 40% 50% 40%/30% 50% 50% 50%;
}

.circle {
  display: flex;
  justify-content: center;
  padding: 20px;
	margin-bottom: 10px;
}

@media (max-width: 600px) {
  .circle {
    flex-direction: column;
	margin: 0 auto;
	text-align: center;
  }
}


/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid #545454;	/*下の線の幅、線種、色*/
	text-align: center;		/*文字をセンタリング*/
	padding: 10px;			/*ボックス内の余白*/
	background: rgba(0,0,0,0.03);	/*背景色。0,0,0は黒の事で0.03は色が3%出た状態の事。*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	border-top: 1px solid #545454;		/*上の線の幅、線種、色*/
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border-bottom: 1px solid #545454;	/*各行の下線の幅、線種、色*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
	width: 25%;			/*幅*/
}
.access img {
	width: 35%;
	margin: 10px;
}
.sns img {
	margin: 0 20px;
}
.sns a:hover{
	opacity: 0.7;
}
@media (max-width: 700px) {
.access img {
	width: 90%;
	margin: 5px auto;
}
}

/*入園の流れ*/
.Inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.Inner p{
  margin: 0;
  padding: 0;
}
.Inner li{
  list-style: none;
}

.List-Item {
  border-top: 1px solid #ddd;
  width: 100%;
}
@media screen and (max-width: 540px) {
  .List-Item {
    border-top: 0;
  }
}
.List-Item:nth-of-type(1) {
  border-top: 0;
}
.List-Item-Content {
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 1000px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  .List-Item-Content {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
}
.List-Item-Content.one {
  padding-top: 0;
}
.List-Item-Content-Number {
  position: relative;
  margin-right: 40px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background: #5bc8ac;
  color: #fff;
  font-size: 36px;
}
@media screen and (max-width: 1024px) {
.List-Item-Content-Number {
  margin-right: 20px;
}
}
@media screen and (max-width: 540px) {
  .List-Item-Content-Number {
    margin-right: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
  }
}
.List-Item-Content-Number-Line {
  position: absolute;
  top: -36%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 4px;
  height: 66px;
  background: #5bc8ac;
}
@media screen and (max-width: 540px) {
  .List-Item-Content-Number-Line {
  display: none;
  }
}
.List-Item-Content-Title {
  margin-right: 48px;
  flex-basis: 260px;
  color: #5bc8ac;
  font-size: 24px;
}
@media screen and (max-width: 1024px) {
  .List-Item-Content-Title {
  flex-basis: 170px;
}
}

@media screen and (max-width: 768px) {
  .List-Item-Content-Title {
    margin-right: 0;
    width: 140px;
    font-size: 18px;
  }
}
.List-Item-Content-Description {
	margin-top: 10px;
  line-height: 1.5;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .List-Item-Content-Description {
    width: 380px;
    font-weight: normal;
    font-size: 13px;
  }
}




/*btn
---------------------------------------------------------------------------*/
input[type="submit"].btn,
input[type="button"].btn,
input[type="reset"].btn {
	-webkit-appearance: none;
	outline: none;
	border: 1px solid #f38080;
	background: #f38080;
	color: #fff;
	padding: 10px 30px;
	border-radius: 100px;
	font-size: 16px;
}
input[type="submit"].btn:hover,
input[type="button"].btn:hover,
input[type="reset"].btn:hover {
	background: #fff;
	color: #f38080;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body .nav-fix-pos-pagetop a {
	display: none;
}
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;position: fixed;animation-name: opa1;animation-duration: 1s;animation-fill-mode: forwards;
	width: 80px;		/*ボタンの幅*/
	line-height: 80px;	/*ボタンの高さ*/
	bottom: 50px;		/*画面の下からの配置場所指定*/
	right: 3%;			/*画面の右からの配置場所指定*/
	background: rgba(255,255,255,0.5);	/*背景色*/
	border: 1px dashed #ccc;			/*枠線の幅、線種、色*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すると正方形になります。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #fff;	/*背景色*/
	border: 1px dashed #ffbbbb;			/*枠線の幅、線種、色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	font-size: 70%;
	display: inline-block;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 30px 42px;
}
ol {
	counter-reset: my-counter;
	list-style: none;
	padding: 0 20px 0 60px;
	color: #f38080;
  line-height: 27px;
}
ol li {
	padding-left: 20px;
	position: relative;
}
ol li span{
	font-weight: normal;
	color: #444;
	padding-left: 10px;
}
ol li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #f38080;
  color: #fff;
  display: block;
  float: left;
  line-height: 21px;
  margin-left: -30px;
	margin-top: 3px;
  text-align: center;
  height: 23px;
  width: 23px;
  border-radius: 50%;
}
.green li {
	list-style-type: none; /*点を非表示*/
	position: relative; /*基準位置*/
	padding-left: 2em;
	margin-left: 40px;
	font-size: 1.1em;
}
.green li:before {
    border-radius: 50%; /*丸くする*/
    width: 10px; /*点の幅*/
    height: 10px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    top: 0.6em; /*点の位置*/
    content: "";
    background: #5bc8ac; /*点の色*/
}
.green li a{   /*トップ事業所評価*/
	text-decoration: none;
	font-size: 0.9em;
	color: #007373;
}
.green li a:hover{   /*トップ事業所評価*/
	color: #ffbbbb;
}
@media screen and (max-width: 608px) {
.green li {
	padding-left: 1.5em;
	margin-left: 5px;
}
}

/*その他
---------------------------------------------------------------------------*/
.look {background: rgba(0,0,0,0.1);border: 1px solid #ccc;padding: 5px 10px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.mb30 {margin-bottom: 30px;}
.ml30 {margin-left: 30px;}
.mt30 {margin-top: 30px;}
@media screen and (min-width:1200px){
.mleft30 {margin-left: 30px;}
}
@media screen and (min-width:1024px){
.mleft100 {margin-left: 100px!important;}
}
.clear {clear: both;}
.color1, .color1 a {color: #f38080;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;}
.mini2 {font-size: 0.7em;}
.f09 {font-size: 0.9em!important;}
.f11 {font-size: 1.1em;}
.fs17 {font-size: 17px!important;}
.bold { font-weight: bold;}
.letter-1{letter-spacing: -0.1em;}
.fl{float:left;}
.fr{float:right;}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 14px;
	/*font-size: 2.93vw;*/
}

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 200px;		/*画像の幅*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	font-size: 100%;
}
#menubar li a {
	padding: 0px 5px;	/*上下、左右へのメニューの内側にとる余白*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*画像の設定（サムネイルタイプへの追加指定）*/
.list.thumb img {
	width: 90%;		/*画像の幅*/
}

/*box1指定（角丸のボックス）
---------------------------------------------------------------------------*/
.box1 {
	padding: 10px 20px;		/*上下、左右へのボックス内の余白*/
	border-radius: 20px;	/*角丸のサイズ*/
}

/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*ta1の左側ボックス*/
.ta1 th {
	width: 100px;
}

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（一番上の、ロゴやスライドショーが入っているブロック）
---------------------------------------------------------------------------*/
/*トップページのロゴ画像への追加指定*/
.home header #logo img {
	width: 30%;	/*画像の幅*/
	left: 10%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	top: 3px;	/*ロゴやメニューが入っているブロックに対して、上からの配置場所の指定。*/
}

/*コンテンツ（ヘッダーとフッター以外を囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding: 5px 3% 10px;
}
/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	font-size: 16px;		/*文字サイズ*/
}
/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;		/*文字サイズ*/
}
/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	padding: 0px 10px 30px;	/*上、左右、下への余白*/
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	width: 50px;		/*ボタンの幅*/
	line-height: 50px;	/*ボタンの高さ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 10px 20px 25px;
}
ol {
	padding: 0 10px 20px 25px;
}

/*その他
---------------------------------------------------------------------------*/
.big1 {font-size: 20px;}
.mini1 {font-size: 9px;}
.sh {display:block;}
.pc {display:none;}
.ws,.wl {width: 94%;}
.fl {float: none;}
.fr {float: none;}
.mb20 {margin-bottom: 20px!important;}
}
