@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Mukta:700");

/* CSS Document */
/*////////////////////////////////////////////////
reset
////////////////////////////////////////////////*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  scroll-behavior: smooth;
}

/*////////////////////////////////////////////////
common
////////////////////////////////////////////////*/
body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
  color: #313030;
  ;
  font-size: 100%;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-text-size-adjust: none;
  background-color: #fff;
  min-height: 100vh;
  position: relative;
  /*←相対位置*/
}

a {
  text-decoration: none;
}

a:link, a:visited {
  text-decoration: none;
  color: #5c3723;
}

a:hover img {
  opacity: .8;
  -webkit-opacity: .8;
  -moz-opacity: .8;
  filter: alpha(opacity=80);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=80)";
  /* IE 8 */
}

a.anchor {
  display: block;
  padding-top: 110px;
  margin-top: -110px;
}

ul {
  list-style: none;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.se {
  display: none !important;
}

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

  .sp {
    display: block !important;
  }

  .se {
    display: none !important;
  }

  img {
    max-width: 100%;
  }
}

/* スマートフォンのSE以下の横幅で見たときは"se"のclassがついた画像が表示される */
@media only screen and (max-width: 320px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .se {
    display: block !important;
  }

  img {
    max-width: 100%;
  }
}

/*////////////////////////////////////////////////*/

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  /* 背景カラー */
  z-index: 9999;
  /* 一番手前に */
  pointer-events: none;
  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;
  /* 初期値では非表示 */
  -webkit-transition: opacity .5s ease;
  /* アニメーション時間は 0.8秒 */
  -ms- transition: opacity .5s ease;
  -moz- transition: opacity .5s ease;
  transition: opacity .5s ease;
}

/*------フェードアウト使用時------*/

body.fadeout::after {
  opacity: 1;
}

body.fadeout article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

hr {
  display: block;
  unicode-bidi: isolate;
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
  margin-inline-start: auto;
  margin-inline-end: auto;
  overflow: hidden;
  border-style: inset;
  border-width: 1px;
  margin-top: 20px;
}

/*------区切り線------*/
.line {
  width: 100%;
  border-top: 1px solid #ccc;
  margin: 20px auto;
}

/*太さ*/
.t_bold {
  font-weight: bold;
}

/*--------見出し-----------*/
h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 2em;
  line-height: 1.5em;
}

h3 {
  text-align: center;
  line-height: 1.5em;
  font-size: 1.2em;
  margin: 15px 0;
  padding: 5px 0;
  font-weight: 400;
}

h3 span {
  display: block;
  font-size: 0.8em;
}

h4 {
  font-size: 1.1em;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

/*インデント*/
.t-indent {
  padding-left: -1em;
  text-indent: 1em;
}

/*---ボックス---*/
.box_blank {
  width: auto;
  border: none;
  line-height: 1.5em;
  margin-bottom: 30px;
}

/*ちょっとした項目*/
.box_orange {
  width: auto;
  border: none;
  line-height: 1.5em;
  border: dotted 2px #ffa500;
  border-radius: 5px;
  margin-top: 15px;
}

.attenthion_orangebox {
  width: auto;
  border: solid 2px #ffa500;
  padding: 10px;
}

/*////////////////////////////////////////////////
アニメーション
////////////////////////////////////////////////*/

/*---------スクロールイン---------*/
/* 画面外にいる状態でスクロールイン */
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 500ms;
}

/* 画面内に入ってからスクロールイン */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/*---------バウンド---------*/
.cp_keyframes {
  padding-bottom: 10px;
  -webkit-animation: keyframes 0.5s ease-in infinite alternate;
  animation: keyframes 0.5s ease-in infinite alternate;
  animation-iteration-count: infinite;
}

@-webkit-keyframes keyframes {
  0% {
    -webkit-transform: translateY(20%);
    transform: translateY(10%);
  }

  100% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
}

@keyframes keyframes {
  0% {
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }

  100% {
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

/*////////////////////////////////////////////////
装飾素材
////////////////////////////////////////////////*/
/*---ボタン---*/
/*green*/
div.btnGreen {
  display: block;
  width: 200px;
  height: 40px;
  background-color: #fff;
  color: #7CDBC8;
  border: 3px solid #4ab39e;
  margin: 0 auto;
  text-align: center;
  box-shadow: 5px 5px #7CDBC8;
}

div.btnGreen p {
  margin-top: 5px;
}

div.btnGreen p a {
  vertical-align: middle;
  color: #4ab39e !important;
  text-decoration: none !important;
}

div.btnGreen:hover {
  display: block;
  background-color: #4ab39e;
  /*マウスオーバーで背景色替え*/
  transition: all 0.5s ease 0s;
}

div.btnGreen:hover a {
  display: block;
  color: #fff !important;
  /*マウスオーバーでテキスト色替え*/
}

div.btnGreen a:after {
  color: #7CDBC8;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  font-size: 1.3em;
  margin-left: 15px;
  vertical-align: middle;
}

div.btnGreen a:hover::after {
  color: #fff;
  /*マウスオーバーでアイコン色替え*/
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  margin-left: 15px;
}

/*---吹き出し---*/
/*グリーン*/
.balloonGreen {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 200px;
  max-width: 100%;
  color: #fff;
  font-size: 16px;
  background: #7CDBC8;
  border-radius: 15px;
  text-align: center;
}

.balloonGreen:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #7CDBC8;
}

.balloonGreen p {
  margin: 0;
  padding: 0;
  color: #fff;
}


/*////////////////////////////////////////////////
top　|　index.html
////////////////////////////////////////////////*/

/*---------header---------*/
div#spheader {
  background-color: #ec9510;
  padding: 10px 5px;
  margin-bottom: 20px;
  width: 100%;
  height: 75px;
  position: fixed;
  z-index: 999;
  top: 0;
}

.snsNav {
  right: 100px;
  display: block;
  overflow: hidden;
  text-align: right;
}

.snsNav li {
  float: right;
  padding: 10px;
}

img.logo {
  width: 100%;
  max-width: 80px;
}

img.splogo {
  width: 100%;
  max-width: 100px;
  height: auto;
}

/*---------menu btn---------*/
#navi {
  transition: all .6s;
  overflow-y: auto;
  padding-top: 40px;
  width: 300px;
  height: 100vh;
  z-index: 200;
  top: 0;
  right: -320px;
  background-color: #fff;
  position: fixed;
}

.nav_btn {
  width: 44px;
  height: 44px;
  z-index: 300;
  top: 10px;
  right: 20px;
  cursor: pointer;
  position: absolute;
}

.hamburger_line {
  transition: all .6s;
  width: 34px;
  height: 2px;
  left: 5px;
  background-color: #fff;
  position: absolute;
}

.hamburger_line1 {
  top: 10px;
}

.hamburger_line2 {
  top: 21px;
}

.hamburger_line3 {
  top: 32px;
}

.nav_bg {
  opacity: 0;
  transition: all .6s;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  top: 0;
  left: 0;
  visibility: hidden;
  background-color: #ec9510;
  cursor: pointer;
  position: fixed;
}

/* 表示された時用のCSS */
.nav_open #navi {
  right: 0;
}

.nav_open .nav_bg {
  opacity: .8;
  visibility: visible;
}

.nav_open .hamburger_line1 {
  transform: rotate(45deg);
  top: 20px;
}

.nav_open .hamburger_line2 {
  width: 0;
  left: 50%;
}

.nav_open .hamburger_line3 {
  transform: rotate(-45deg);
  top: 20px;
}

/*メニュー項目部分*/
#navi li {
  padding: 15px;
  font-size: 0.9em;
  /*border-bottom: 1px solid #ec9510;*/
}

#navi li.naviA {
  border-bottom: 1px solid #ec9510;
}

#navi li.naviA:before {
  color: #ec9510;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  float: left;
  margin-right: 10px;
}

#navi li a {
  font-weight: bold;
  color: #ec9510;
  display: block;
}

/*sns icon*/
#navi .top_sns {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

#navi .top_sns img {
  width: 50px;
}

/*---------スライドショー---------*/
/*////main image Swiper////*/
.swiper-wrapper {
  width: 100%;
  height: 250px;
}

.swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  /*min-width: 400px;*/
}

/* 4の倍数＋1枚目のスライドのスタイル（1枚目、5枚目…） */
.swiper-slide:nth-child(4n+1) {
  background-color: #fff;
}

/* 4の倍数＋2枚目のスライドのスタイル（2枚目、6枚目…） */
.swiper-slide:nth-child(4n+2) {
  background-color: #fff;
}

/* 4の倍数＋3枚目のスライドのスタイル（3枚目、7枚目…） */
.swiper-slide:nth-child(4n+3) {
  background-color: #fff;
}

/* 4の倍数＋4枚目のスライドのスタイル（4枚目、8枚目…） */
.swiper-slide:nth-child(4n+4) {
  background-color: #fff;
}

/*矢印*/
.swiper-button-prev, .swiper-button-next {
  display: none;
}

/*---TOP page---*/
.top_contact {
  width: 80%;
  margin: 0 auto;
  margin-top: -20px;
  margin-bottom: 20px;
  font-size: 0.9em;
}

.top_contact li {
  line-height: 2em;
}

.top_contact img.icon {
  width: 25px;
  vertical-align: middle;
}

.top_contact img {
  width: 80%;
  margin-right: 10px;
  vertical-align: middle;
}

.top_contact span {
  vertical-align: middle;
}

/*---//TOP page//---*/


/*------------メニュー・SNSブロック------------*/
div.contentsBlock01 {
  margin: 0 auto;
  width: 100%;
}

/*メニューブロック*/
div.contentsBlock01 div.block_menu {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 80px;
}

div.block_menu ul {
  text-align: left;
}

div.block_menu ul li {
  margin: 15px 0;
}

div.block_menu ul li img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

div.block_menu ul li p {
  background-color: #ec9510;
  font-family: "M PLUS Rounded 1c";
  font-size: 0.9em;
  font-weight: 600;
  line-height: 2.2em;
  color: #fff;
  height: 30px;
  display: block;
  margin-top: -7px;
  text-align: center;
}

div.block_menu ul li p:before {
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  margin: 0.1em 0.5em 0 -1em;
}

div.block_menu ul li:hover {
  opacity: .5;
  -webkit-opacity: .5;
  -moz-opacity: .5;
  filter: alpha(opacity=50);
  /* IE lt 8 */
  -ms-filter: "alpha(opacity=50)";
  /* IE 8 */
  transition: all 0.5s ease 0s;
}
/*サイドバー共通*/
div.block_partnership h3,
div.block_twitter h3 {
  background-color: #ec9510;
  font-family: "M PLUS Rounded 1c";
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5em;
  color: #fff;
  height: 30px;
  display: block;
  margin-top: 5px;
}

/*おれんじ学童併設教室*/
div.block_partnership {
  margin: 0 auto;
  width: 100%;
  height: auto;
  text-align: center;
}

div.block_partnership ul{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 24px 0;
}

div.block_partnership ul li.ecc{
  width: 100px;
  margin-right: 24px;
}

div.block_partnership ul li.gakken{
  width: 150px;
}

div.block_partnership ul li img{
  width:100%;
}

/*SNS ブロック*/
div.block_twitter {
  margin: 0 auto;
  width: 100%;
  height: auto;
  float: right;
  text-align: center;
}

ul.sidebar_snsArea{
  width: 80%;
  margin: 0 auto ;
  margin-top: 24px;
  padding: 0 16px;
}

ul.sidebar_snsArea li{
  width: 100%;
  margin: 16px 0;
}

ul.sidebar_snsArea li a{
 display: flex;
 align-items: center;
 justify-content: flex-start;
}

ul.sidebar_snsArea li a p{
  color: #4977bc !important;
}

ul.sidebar_snsArea li a::after{
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  padding-left: 12px;
  color: #4977bc
}

ul.sidebar_snsArea li img.icon{
  width: 50px;
  margin-right: 24px;
}

ul.sidebar_snsArea li p{
  display: block;
}

.twitter-timeline {
  border: 2px #ccc solid !important;
}

div.contentsBlock01::after {
  content: "";
  display: block;
  clear: both;/*次のブロックからフロート解除*/
}


/*------インフォメーションブロック------*/
div.infomation {
  padding: 20px 0 50px;
}

div.infomation div.btnGreen {
  margin-top: 20px;
  margin-bottom: 20px;
}

div.infomation ul {
  margin: 0 auto;
}

div.infomation ul li {
  width: 90%;
  margin: 0 auto;
  margin-top: 25px;
}

div.infomation ul li div.balloonGreen {
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
  font-family: "M PLUS Rounded 1c";
  font-weight: 600;
  font-size: 100%;
}

div.infomation ul li div.block_info {
  background-color: #fff;
  border-radius: 10px;
  margin-top: 10px;
  text-align: justify;
  height: auto;
  font-size: 1em;
  line-height: 1.5em;
  padding: 10px 15px;
}

div.infomation ul li div.block_info a.textlink {
  display: block;
  width: 250px;
  color: #333;
  font-weight: 600;
  line-height: 2em;
  margin: 20px auto 0;
  /*border-bottom:solid 2px #ec9510;*/
  text-align: center;
}

div.infomation div.block_info a.textlink:hover {
  background: linear-gradient(transparent 0%, #ffffa8 0%);
  transition: all 0.5s;
}

/*////////////////////////////////////////////////
トップページお問合せ 
///////////////////////////////////////////////*/

/*///////////access///////////*/
/* グーグルマップ・レスポンシブレイアウト */
.gmap-wrap {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  /* マップの縦横比の指定 */
  overflow: hidden;
}

.gmap-wrap iframe, .gmap-wrap object, .gmap-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*外観写真*/
.gakudouImg {
  margin-top: 20px;
}

/*-----各種連絡-----*/
#contact {
  padding-bottom: 150px;
}

#access p.adress {
  font-size: 1em;
  line-height: 1.2em;
  font-weight: bold;
}

#access p.adress span {
  font-size: 0.8em;
  font-weight: bold;
}

#contact p.tel {
  font-size: 1em;
  line-height: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

#contact a {
  color: #5c3723;
}

#contact img.icon {
  width: 30px;
  margin-right: 5px;
  float: left;
}

#contact p.tel span {
  font-size: 0.9em;
  font-weight: bold;
}

/*///////////お電話でのお問い合わせ///////////*/
div#contact_tel {
  width: 100%;
  height: 170px;
  margin: 100px 0 -20px 0;
  text-align: center;
  background-image: url("../image/bg_shibafu.png");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: contain;
}

#contact_tel img {
  max-width: 1000px;
}

/*SP版のみ電話番号タップで通話*/
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*アイコン*/
.icon_otoiawase {
  background-color: #ec9510;
  float: left;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  /*角丸*/
  font-size: 1em;
  line-height: 1.8em;
  margin-right: 5px;
}

.mail img {
  width: 80%;
}

/*////////////////////////////////////////////////
コンテンツ（全ページ共通部分）
///////////////////////////////////////////////*/

/*///////////contents///////////*/
main {
  margin-top: 120px;
}

/*------ページ見出しブロック------*/
div.mainCopyBlock {
  margin-top: -10px;
  background-color: #ec9510;
  height: 100px;
  position: relative;
}

/*下部吹き出し*/
div.mainCopyBlock:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #ec9510 transparent transparent transparent;
  border-width: 60px 100px 0 100px;
  z-index: -10;
}

div.mainCopy {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  font-size: 1.5em;
  font-family: "M PLUS Rounded 1c";
  font-weight: 600;
  margin-top: 5px;
}

div.mainCopy p {
  color: #fff;
}

/*ぱんくず*/
div.pankuzu {
  padding: 15px 0 0 15px;
  font-size: 0.8em;
}

div.pankuzu a {
  color: #fff;
}

div.pankuzu a:before {
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: "\f015";
  font-weight: 900;
  float: left;
  padding-right: 5px;
}

div.pankuzu p {
  color: #fff;
}

div.pankuzu p span {
  border-bottom: dotted;
  border-color: #fff;
  border-width: 2px;
}

div.pankuzu p a:hover {
  color: #faca70;
  /*マウスオーバーでテキスト色替え*/
  transition: all 0.5s ease 0s;
}

/*------ページ内部------*/
div.contents {
  width: 95%;
  /*コンテンツ部分の基本幅*/
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
}

/*ページ中に背景を変える場合など*/
div.contents02 {
  width: 100%;
  margin-top: 50px;
}

/*------コンテンツ各ブロック------*/
.contentsBloack {
  width: 90%;
  background-color: #fff;
  margin: 0 auto;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

/*---リスト---*/
.contentsBloack ul li {
  /*font-family: "M PLUS Rounded 1c";
  font-weight: 600;
  font-size: 1.1em;*/
  line-height: 1.6em;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

/*.contentsBloack ul li:before {
  font-family: "M PLUS Rounded 1c";
  content: '●';
  color: #ec9510;
  font-weight: normal;
  float: left;
  margin-right: 25px;
  font-size: 1.2em;
}*/

/*チェックリスト用*/
.contentsBloack ul.checkList li:before {
  color: #ec9510;
  font-family: "Font Awesome 5 Free";
  content: '\f14a';
  font-weight: 900;
  float: left;
  margin-right: 20px;
  font-size: 1.2em;
}

/*------コンテンツイメージ周り------*/
.contentsBloack img {
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
  height: auto;
}

/*角丸にする*/
.contentsBloack .radius {
  border-radius: 0.5em;
}

/*枠を付ける*/
.contentsBloack .waku02 {
  border: solid 5px #fff;
  box-shadow: 0px 0px 5px #808080;
  margin-left: -1.5%;
}

/*------コンテンツtext周り------*/
.contentsBloack p {
  font-size: 1em;
  line-height: 1.5em;
  margin-bottom: 5px;
}

.contentsBloack a:link, .contentsBloack a:visited {
  color: #ec9510;
  font-weight: bold;
  text-decoration: underline;
}

/*注記*/
.contentsBloack .attenthion {
  color: #f10000;
  font-weight: bold;
  margin-top: 20px;
}

/*-----見出し-----*/
p.midashiL {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 2em;
  line-height: 1.5em;
}

p.midashiM {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  line-height: 1.5em;
}

.contentsBloack p.midashiM {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1.3em;
  line-height: 1.3em;
  text-align: center;
  margin-bottom: 20px;
}

p.midashiS {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 1em;
  line-height: 1.2em;
}


/*////////////////////////////////////////////////
学童理念・講師紹介 | introduction.html
///////////////////////////////////////////////*/

/*///////////学童理念///////////*/
/*---解説部分---*/
.box_rinen {
  border: solid 2px #fd9535;
  margin: 0 auto;
  text-align: center;
}

.box_rinen img {
  max-width: 200px;
}

.box_rinen ul {
  display: inline-block;
  vertical-align: top;
  font-family: "M PLUS Rounded 1c";
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5em;
  margin-top: 15px;
}

.box_rinen ul span {
  font-size: 0.9em;
}

.box_rinen ul li {
  margin-bottom: 10px;
}

/*---リスト---*/
.contentsBloack ul.gRinen li {
  line-height: 1.6em;
  text-indent: -1.5em;
  padding-left: 1.5em;
  margin-bottom: 5px;
}

.contentsBloack ul.gRinen li:before {
  font-family: "M PLUS Rounded 1c";
  content: '●';
  color: #ec9510;
  font-weight: normal;
  float: left;
  margin-right: 25px;
  font-size: 1.2em;
}

/*///////////講師紹介///////////*/
.koushiProfile .koushiimg {
  width: 100%;
  max-width: 500px;
  margin-top: 0px;
  margin-bottom: 0px;
  overflow: auto;
  padding-bottom: 15px;
}

.contentsBloack .koushiProfile {
  clear: left;
  padding-bottom: 5px;
  margin-bottom: 30px;
  border-bottom: solid 2px #fd9535;
}

.contentsBloack .koushiProfile:last-child {
  border-bottom: none;
}

.contentsBloack .koushiProfile ul li {
  line-height: 1.2em;
  text-indent: 0em;
  overflow: hidden;
}

.contentsBloack .koushiProfile ul li:first-child {
  font-family: "M PLUS Rounded 1c";
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.5em;
  text-indent: -0.8em;
  text-align: center;
  overflow: hidden;
}

/*項目用*/
.contentsBloack .koushiProfile ul li span {
  font-family: "M PLUS Rounded 1c";
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.2em;
  background: #fd9535;
  color: #FFF;
  padding: 2px 20px;
  margin-right: 15px;
  border-radius: 10px;
  width: 50px;
  display: inline-block;
  text-align: center;
}

/*////////////////////////////////////////////////
サービス内容 | guidance.html
///////////////////////////////////////////////*/

/*///////////サービス内容///////////*/
/*-----習い事_1カラム-----*/
.contentsbox_Lesson {
  margin-top: 50px;
  width: 100%;
}

.contentsbox_Lesson div.Lesson-box {
  width: 95%;
  margin: 0 auto;
  height: auto;
  margin-bottom: 50px;
}

.contentsbox_Lesson div.Lesson-box img {
  width: 100%;
}

.contentsbox_Lesson div.Lesson-box div.Lesson-txt {
  text-align: justify;
}

.contentsbox_Lesson div.Lesson-box div.Lesson-txt span {
  background: #fd9535;
  border-radius: 30px;
  color: #FFF;
  display: block;
  text-align: center;
  font-size: 1.2em;
  line-height: 1.5em;
}

/*---サービス---*/
.contentsbox_service {
  margin-top: 50px;
  width: 100%;
}

.contentsbox_service div.service-box {
  width: 95%;
  margin: 0 auto;
  height: auto;
  margin-bottom: 50px;
}

.contentsbox_service div.service-box img {
  width: 100%;
}

.contentsbox_service div.service-box div.service-txt {
  text-align: justify;
}

.contentsbox_service div.service-box div.service-txt span {
  font-weight: bold;
}

/*/////////// 併設教室 ///////////*/
.h3_pinkbox2 {
    background-color: #fff;
    color: #F2907A;
    border: solid 2px;
    width: 100%;
}
.partnership{
  width: 100%;
}
.partnership ul{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 24px;
}

.partnership ul li.ecc{
  width: 100px;
  margin-right: 32px;
}

.partnership ul li.gakken{
  width: 150px;
}

.partnership ul li img{
  width:100%;
}

/*-----食事-----*/
.contentsbox_service div.service-box .service-txt2 {
  width: 100%;
}

.contentsbox_service div.service-box .service-txt2 table {
  width: 100%;
  padding: 10px;
  line-height: 1.5em;
  margin: 0 auto;
}

.contentsbox_service div.service-box .service-txt2 table td {
  padding: 15px 0;
}

.contentsbox_service div.service-box .service-txt2 table td.koumoku {
  width: 20%;
  background: #fd9535;
  color: #FFF;
  text-align: center;
}

div.service-box .service-txt2 a {
  color: #fd9535;
  font-size: 1.1em;
  text-align: left;
  display: block;
  margin-top: 10px;
}

div.service-box .service-txt2 a:before {
  color: #fd9535;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  float: left;
  margin: 0.1em 0.5em 0 0.5em;
}

/*///////////おれんじ学童の1日///////////*/

div.contentsBloack_TL {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
  margin-top: 120px;
}

div.orangeTimeline .main-bdr {
  border-color: #6bb6ff;
}

div.orangeTimeline .tl-content {
  position: relative;
  padding: 0 0 1.5em 1.8em;
}

div.orangeTimeline .tl-content:before {
  content: "";
  display: block;
  position: absolute;
  top: 24px;
  bottom: 0;
  left: 6px;
  width: 3px;
  /*ラインの太さ*/
  background: #ccd5db;
  /*ラインのカラー*/
}

div.orangeTimeline .tl-content:not(:first-of-type):not(:last-of-type) .tl_marker {
  background: transparent;
  /*始点と終点は背景色解除*/
}

div.orangeTimeline .tl-content:last-of-type:before {
  content: none;
}

div.orangeTimeline .tl-content img {
  max-width: 100%;
  height: auto;
}

div.orangeTimeline .tl_label {
  padding-top: 2px;
  color: #90969a;
  /*時刻*/
  font-size: 1.1em;
  font-weight: bold;
}

div.orangeTimeline .tl_title {
  font-size: 1.2em;
  font-weight: bold;
  /*項目*/
  line-height: 1.5;
}

div.orangeTimeline .tl_main {
  margin-top: 0.5em;
  padding: 0 0 1.5em;
  font-size: 0.9em;
  /*内容*/
  line-height: 1.6;
  border-bottom: dashed 1px #ccd5db;
  /*時刻区切り線*/
}

div.orangeTimeline .main-bc {
  background-color: #4977bc;
}

div.orangeTimeline .tl_marker {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: solid 3px #4977bc;
  /*白丸部分*/
}

/*-----吹き出し-----*/
/*--1--*/
div.contentsBloack_TL div.Tlfukidashi01 {
  position: absolute;
  display: inline-block;
  margin: 1em 0;
  padding: 10px 5px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 1em;
  background: #e0edff;
  border-radius: 3em;
  text-align: center;
  top: -7%;
  /* div.contentsBloack_TL内の上から */
  left: 20%;
  /* div.contentsBloack_TL内の左から*/
}

div.contentsBloack_TL div.Tlfukidashi01:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

div.contentsBloack_TL div.Tlfukidashi01 p {
  margin: 0;
  padding: 0;
}

/*--2--*/
div.contentsBloack_TL div.Tlfukidashi02 {
  position: absolute;
  display: inline-block;
  margin: 1em 0;
  padding: 10px 5px;
  min-width: 120px;
  max-width: 100%;
  color: #555;
  font-size: 1em;
  background: #e0edff;
  border-radius: 3em;
  text-align: center;
  top: -3%;
  /* div.contentsBloack_TL内の上から */
  left: 55%;
  /* div.contentsBloack_TL内の左から */
}

div.contentsBloack_TL div.Tlfukidashi02:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
}

div.contentsBloack_TL div.Tlfukidashi02 p {
  margin: 0;
  padding: 0;
}

/*--3--*/
div.contentsBloack_TL div.Tlfukidashi03 {
  position: absolute;
  display: inline-block;
  margin: 1em 0;
  padding: 10px 5px;
  min-width: 120px;
  max-width: 100%;
  background: #e0edff;
  border-radius: 3em;
  text-align: center;
  top: 90%;
  /* div.contentsBloack_TL内の上から */
  left: 30%;
  /* div.contentsBloack_TL内の左から */
}

div.contentsBloack_TL div.Tlfukidashi03:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -23px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #e0edff;
}

div.contentsBloack_TL div.Tlfukidashi03 p {
  margin: 0;
  padding: 0;
}

/*///////////保護者の声///////////*/
div.userVoice_parents {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}

div.userVoice_parents .parents_comment {
  border: solid 1px #a4a7aa;
  border-radius: 10px;
  padding: 20px 15px;
  margin: 0 auto;
  position: relative;
}

.parents_comment:before {
  content: "";
  position: absolute;
  bottom: -29px;
  /*ふきだし太さ調整*/
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid #FFF;
  /*ふきだし大きさ調整*/
  z-index: 2;
}

.parents_comment:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid #a4a7aa;
  z-index: 1;
}

div.userVoice_parents .parents_comment p {
  font-size: 0.9em;
  line-height: 1.5em;
  /*padding-left:-1em;
  text-indent:1em;*/
}

div.userVoice_parents .parents_comment p span {
  font-size: 1.5em;
  font-weight: bold;
}

div.userVoice_parents .parents_img {
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
}

div.userVoice_parents .parents_img img {
  width: 100px;
}


/*///////////子どもたちの声///////////*/
div.userVoice_child {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column-reverse;
}

div.userVoice_child .child_comment {
  width: 90%;
  border: solid 1px #a4a7aa;
  border-radius: 10px;
  padding: 20px 15px;
  margin: 0 auto;
  position: relative;
}

.child_comment:before {
  content: "";
  position: absolute;
  bottom: -29px;
  /*ふきだし太さ調整*/
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid #FFF;
  /*ふきだし大きさ調整*/
  z-index: 2;
}

.child_comment:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid #a4a7aa;
  z-index: 1;
}

div.userVoice_child .child_comment p {
  font-size: 0.9em;
  line-height: 1.5em;
}

div.userVoice_child .child_comment p span {
  font-size: 1.3em;
  font-weight: bold;
}

div.userVoice_child .child_img {
  text-align: center;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 20px;
}

div.userVoice_child .child_img img {
  width: 100px;
}

/*質問*/
div.userVoice_child .child_comment2 {
  width: 90%;
  border: solid 1px #e0edff;
  background-color: #e0edff;
  border-radius: 10px;
  padding: 20px 15px;
  margin: 0 auto;
  position: relative;
}

.child_comment2:before {
  content: "";
  position: absolute;
  bottom: -29px;
  /*ふきだし太さ調整*/
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid # background-color:#e0edff;
  ;
  /*ふきだし大きさ調整*/
  z-index: 2;
}

.child_comment2:after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  margin-left: -16px;
  border: 15px solid transparent;
  border-top: 15px solid #e0edff;
  z-index: 1;
}

div.userVoice_child .child_comment2 p {
  font-size: 0.9em;
  line-height: 1.5em;
}

div.userVoice_child .child_comment2 p span {
  font-size: 1.3em;
  font-weight: bold;
}


/*////////////////////////////////////////////////
ご利用料金・QA | information.html
///////////////////////////////////////////////*/

/*///////////ご利用料金///////////*/
/*-----料金表共通-----*/
table.feeBox {
  margin: 30px auto;
  text-align: center;
  /*width: 100%;
  table-layout: fixed;*/
}

table.feeBox span {
  font-size: 0.8em;
}

table.feeBox, table.feeBox td, table.feeBox th {
  border-collapse: collapse;
  border: 1px solid #999;
  padding: 5px;
  font-size: 1em;
  vertical-align: middle;
}

table.feeBox td.koumoku {
  width: 35%;
}

/*-----料金表_スケジュール----*/
.feeBox_schedule{
  display: block;
  margin:auto;
  font-weight: bold;
  width:100%;
  margin-bottom: -1.5rem;
}
.feeBox_schedule span{
  color: #7CDBC8;
}
/*-----会員の種類-----*/
/*見出し部分*/
td.tmidashi_a {
  /*font-weight:bold;*/
  color: #fff;
  background: #e9af00;
}

td.tmidashi_b {
  /*font-weight:bold;*/
  color: #fff;
  background: #4977bc;
}

td.tmidashi_c {
  /*font-weight:bold;*/
  color: #fff;
  background: #d96456;
}

td.tmidashi_d {
  /*font-weight:bold;*/
  color: #fff;
  background: #4ab39e;
}

/*会員種別セル部分*/
table.feeBox td.tcolor_a {
  background: #fff4d1;
}

table.feeBox td.tcolor_b {
  background: #f0f6ff;
}

table.feeBox td.tcolor_c {
  background: #ffe6e3;
}

table.feeBox td.tcolor_d {
  background: #f0fffc;
}

/*///////////QA///////////*/
.qaContainer {
  font-size: 1em;
  line-height: 1.5em;
}

/*Q*/
.qaContainer dt {
  padding: 10px 10px 10px 35px;
  border-radius: 5px;
  background: #cce6ff;
  text-indent: -25px;
}

.qaContainer dt:before {
  content: "Q.";
  color: #4977bc;
  font-weight: bold;
  margin-right: 7px;
}

/*A*/
.qaContainer dd {
  margin: 20px 10px 40px 35px;
  text-indent: -25px;
}

.qaContainer dd:before {
  content: "A.";
  color: #d96456;
  ;
  font-weight: bold;
  margin-right: 7px;
}


/*////////////////////////////////////////////////
会社案内・プライバシーポリシー | corporate.html
///////////////////////////////////////////////*/

/*///////////会社案内///////////*/
table.com_info {
  width: 100%;
  font-size: 0.8em;
  border-collapse: collapse;
  margin: 0 auto;
  margin-top: 20px;
  border: 3px #406fc3 solid;
}

table.com_info th, table.com_info td.blue {
  border-bottom: 1px solid #406fc3;
  padding: 5px;
}

table.com_info th, table.com_info td.white {
  border-bottom: 1px solid #406fc3;
  padding-left: 5px;
}

table.com_info th, table.com_info td.white a {
  color: #406fc3;
}

table.com_info tr {
  background: #fff;
}

table.com_info tr td.blue {
  width: 30%;
  background: #406fc3;
  border-bottom: 1px solid #fff;
  text-align: center;
  color: #fff;
}

/*///////////プライバシーポリシー///////////*/
.privacy_box {
  margin-top: 30px;
}

.privacy_box span {
  font-size: 1.2em;
}

.privacy_box p {
  font-size: 0.8em;
}

.privacy_box ul li {
  margin: 5px 0;
  font-size: 0.7em;
  line-height: 1.70em;
}

.privacy_box ul li:before {
  content: '●';
  display: inline-block;
  width: 1em;
  text-indent: 0;
}

/*////////////////////////////////////////////////
footer
///////////////////////////////////////////////*/

footer {
  width: 100%;
  background-color: #ec9510;
  color: #fff;
  clear: both;
  text-align: center;
  margin-top: 20px;
  bottom: 0;
}

/*コピーライト*/
footer .copy {
  position: relative;
  padding: 10px 0;
  color: #fff;
}

ul.fotterLint a:link, ul.fotterLint a:visited {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.8em;
}

ul.fotterLint a:hover {
  color: #faca70;
  /*マウスオーバーでテキスト色替え*/
  transition: all 0.5s ease 0s;
}

ul.fotterLint {
  padding: 5px 0;
}

ul.fotterLint li {
  display: inline;
  margin: 5px;
}

ul.fotterLint li:before {
  color: #fff;
  font-family: "Font Awesome 5 Free";
  content: '\f0a9';
  font-weight: 900;
  margin-right: 5px;
}

ul.fotterLint li:hover::before {
  color: #faca70;
  /*マウスオーバーでテキスト色替え*/
  transition: all 0.5s ease 0s;
}

/*////////////////////////////////////////////////
other
///////////////////////////////////////////////*/
/*///////////totop///////////*/
#page-top {
  position: fixed;
  bottom: 50px;
  right: 5px;
  z-index: 999;
}

a.btn--circle {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #7CDBC8;
  border-radius: 50%;
  border: solid 3px #fff;
}

a.btn--circle i {
  font-size: 150%;
  line-height: 40px;
  margin-left: 10px;
  /*-webkit-transition: all .3s;
   transition: all .3s;*/
  letter-spacing: 0;
  color: #fff;
}

/*///////////メールフォームサンクスページ///////////*/
#mfp_thanks {
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 20px;
}


/*-----ダミーイメージ-----*/
div.dummy {
  width: 90%;
  height: 400px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #ccc;
  display: grid;
  place-items: center;
}

div.dummy p {
  font-size: 2em;
}