@charset "UTF-8";
/* CSS Document */
/* =======================================

    makigaharaAG_style.css
    1.全体共通部分css
    2.headerとfooter部分css
    3.トップページcss
    4.contens部分css

========================================== */
/*1.全体共通部分css*/
#com-container {
  width:100%;
  overflow-x: hidden !important;
}

a {
  text-decoration: none;
  color: #59626d;
}

a:hover {
  filter:alpha(opacity=50);
  -moz-opacity: 0.5;
  opacity: 0.5;
}

a img:hover {
  filter:alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

.com-list-unstyled {
  padding-left: 0;
  list-style: none;
}

.com-link-li-1 {
  margin-left: 1rem;
  line-height: 1.8;
}
.com-link-li-1 a:before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url(../img/icon_arrow_right-20px_green.svg) no-repeat;
  background-size: contain;
  margin-right: 1px;
}

.com-link-li-2 {
  margin-left: 3rem;
  line-height: 1.8;
  list-style: disc;
  color: #00B0D7;
}

.com-domain::before {
   content: '@';
}
@media screen and (max-width: 321px) {
  p {
    font-size: 0.9rem;
  }
}

/*2.headerとfooter部分css*/
#com-header {
  background-color: transparent;
}

.com-header-samary {
  font-size: 0.6rem;
  line-height: 0.8;
  text-align: center;
  margin-top: 5px;
  color: #6C757D;
  font-weight: lighter;
}

@media screen and (max-width: 640px) {
  .com-header-samary {
    font-size: 0.4rem;
    line-height: 0.8;
  }
}

.com-header-samary a:hover {
  text-decoration: none;
}

.com-headerlogo a {
  background-image:url(../img/logo_header_center.svg);
  background-size: 286px 96px;
  background-position: center top ;
  background-repeat: no-repeat ;
  display: block;
  text-indent:-9999px;
  height: 96px;
  width: 100%;
  margin:10px auto;
}

.com-headerlogo a:hover {
  opacity: 0.6;
}

@media screen and (max-width:1200px) {
  .com-headerlogo a {
    background-image: url(../img/logo_header_center_sp.svg);
    background-size: 198px 62px;
    height: 62px;
    width: 100%;
    margin:10px auto;
  }
}

/*フッター固定のためのcss*/
html {
  height: 100%;
}
body {
  margin: 0;
  padding: 0;
  height: 100%;
}
header {
  width: 100%;
}
footer {
  position: sticky;
  top: 100vh;
  width: 100%;
  background-color: #C8E678;
  z-index: -1;/*1200px以下のgnav表示時にスクロールでfooterが出てこないための記述*/
}
/*------------------------*/

.com-footerlogo {
  padding-top: 10px;
  padding-bottom: 10px;
}

.com-footerlogo a {
  background: url(../img/logo_footer.svg);
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  text-indent: -9999px;
  height: 62px;
}

.com-footerlogo a:hover {
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  opacity: 0.6;
}

.com-footerNavi {
  display: flex;
  flex-flow: row;
  flex-wrap: wrap;
  justify-content: center;
  padding-left: 0;
  line-height: 0.8;
  margin-bottom: 5px;
}

.com-nav-item a {
  font-size: 0.875rem ;
  padding-right: 1rem;
  color: #2F3B49;
  text-decoration: none;
}

.com-nav-item a:before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url(../img/icon_arrow_right-20px_green.svg) no-repeat;
  background-size: contain;
  margin-right: 2px;
}

.com-nav-item-last a {
  font-size: 0.875rem;
  padding-right: 0;
  color: #2F3B49;
}
.com-nav-item-2 {
  font-size: 0.875rem ;
  padding-right:1rem;
}

.com-footer-samary {
  font-size: 0.6rem;
  font-weight: lighter;
  margin-top: 10px;
  margin-bottom: 4px;
  text-align: center;
}

.com-copyright {
  font-size: 0.75rem;
  font-weight: lighter;
  margin-bottom: 0;
  text-align: center;
}

@media screen and (max-width: 720px) {
  .com-footerlogo {
    padding-top: 5px;
    margin-bottom: 0;
  }

  .com-footerNavi {
    width: 8rem;
    flex-flow: column;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }

  .com-nav-item a {
    padding-right:0;
  }

  .com-footer-samary {
    margin-top: 14px;
  }
}

/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content:center;
  align-items:center;
  background-image: url(../img/icon_pageTop.svg);
  background-repeat: no-repeat;
  width: 60px;
  height: 96px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  font-size:0.6rem;
  transition:all 0.3s;
  opacity: 0.8;
}

#page-top a:hover {
  opacity: 0.6;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom:8px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateX(100px);
}

/*　左の動き　*/
#page-top.LeftMove{
  animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*　右の動き　*/
#page-top.RightMove{
  animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(100px);
  }
}

/*3.トップページcss*/
.updateInfo {
  height:15rem;
  overflow-x :hidden;
  overflow-y: scroll;
  
 /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}

 /*Google Chrome、Safariへの対応*/
.updateInfo::-webkit-scrollbar{
  display: none;
}

.updateInfo h2 {
  text-align: center;
  font-size:  2rem;
  font-family: 'Kaisei Opti', serif;
  color: #6D7680;
  letter-spacing: 0.18em;
  margin-bottom: 2%;
  position: relative;
  padding: 0 65px;
}

.updateInfo h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 0.8px;
  content: '';
  background: #E9EAEC;
}

.updateInfo h2 span {
  position: relative;
  padding: 0 1rem;
  background: #fff;
}

.updateInfo ul {
  padding: 0 2% 2% 2%;
  list-style: none;
  border-bottom: 1px solid #E9EAEC;
}
.Updated a {
  font-size: 1rem;
  line-height: 2;
  color: #2F3B49;
}
.Updated a:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background: url(../img/icon_arrow_right-20px_green.svg) no-repeat;
  background-size: contain;
  margin-right: 2px;
}

@media screen and (max-width: 1200px) {
  .updateInfo h2 {
    font-size: 1.8rem;
    letter-spacing: 0.5em;
  }

  .Updated a {
    font-size: 0.9rem;
    line-height: 1;
  }
  .updateInfo ul  li {
    padding-bottom:2%;
  }
}

@media screen and (max-width: 640px) {
  .updateInfo h2 {
    font-size: 1.3rem;
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 300px) {
  .updateInfo h2 {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
  }
  .updateInfo h2 span {
    padding: 0;
  }
}

.topics h2 {
  text-align: center;
  font-size: 3rem;
  color: #82D1C2;
  font-family: 'Courgette', cursive;
  padding:1.5em 0 0 0;
  display: block;
  background-image: url(../../img/top-topics-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 430px 170px;
  height: 170px;
  width: 100%;
}

.topics h3 {
  text-align: center;
  font-size: 1.2rem;
  font-family: 'Kaisei Opti', serif;
  color: #2F3B49;
}

.topics img {
  display: flex;
  align-items: center;
  max-width: 86%;
  height: auto;
  margin: 0 auto 5%;
}

@media screen and (max-width: 1200px) {
  .topics h2 {
    font-size: 2.4rem;
    padding:2em 0 0 0;
  }

  .topics h3 {
    font-size: 1rem;
  }

  .topics img {
    max-width: 100%;
  }
}

@media screen and (max-width: 414px) {
  .topics h2 {
    font-size: 2rem;
    padding:1.5em 0 0 0;
    display: block;
    background-image: url(../../img/top-topics-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 344px 136px;
    height: 136px;
    width: 100%;
  }
}

@media screen and (max-width: 344px) {
  .topics h2 {
    font-size: 2rem;
    padding:1.5em 0 0 0;
    display: block;
    background-image: url(../../img/top-topics-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 301px 119px;
    height: 119px;
    width: 100%;
  }
}


@media screen and (max-width: 300px) {
  .topics h2 {
    font-size: 1.6rem;
    padding:1.2em 0 0 0;
    display: block;
    background-image: url(../../img/top-topics-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 215px 85px;
    height: 85px;
    width: 100%;
  }
}

.download h2 {
  text-align: center;
  font-size: 2rem;
  font-family: 'Kaisei Opti', serif;
  padding:4% 0;
}

@media screen and (max-width: 1200px) {
  .download h2 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 375px) {
  .download h2 {
    font-size: 1.3rem;
  padding:4% 0 2% 0;
  }
}

@media screen and (max-width: 300px) {
  .download h2 {
    font-size: 1.1rem;
  padding:4% 0 2% 0;
  }
}

.com-topPage-hedding {
  text-align: center;
  font-size: 2.2rem;
  font-family: 'Kaisei Opti', serif;
  padding:1.5em 0 0 0;
  margin-bottom: 1rem;
  display: block;
  background-image: url(../../img/top-pageHedding-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 430px 160px;
  height: 160px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .com-topPage-hedding {
    font-size: 2rem;
    padding:1.8em 0 0 0;
  }
}

@media screen and (max-width: 414px) {
  .com-topPage-hedding {
    font-size: 1.7rem;
    padding:1.5em 0 0 0;
    margin-bottom: 0.5em;
    display: block;
    background-image: url(../../img/top-pageHedding-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 344px 128px;
    height: 128px;
    width: 100%;
  }
}

@media screen and (max-width: 344px) {
  .com-topPage-hedding {
    font-size: 1.5rem;
    padding:1.5em 0 0 0;
    margin-bottom: 0.5em;
    display: block;
    background-image: url(../../img/top-pageHedding-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 301px 112px;
    height: 112px;
    width: 100%;
  }
}

@media screen and (max-width: 270px) {
  .com-topPage-hedding {
    font-size: 1.2rem;
    padding:1.5em 0 0 0;
    margin-bottom: 0.5em;
    display: block;
    background-image: url(../../img/top-pageHedding-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 215px 80px;
    height: 80px;
    width: 100%;
  }
}

.contacts h3 {
  font-size: 1.8rem;
}

.com-tel-no {
  color: #3e4664;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 2;
}

.com-tel-no-2 {
  color: #3e4664;
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
  line-height: 0.5rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 1200px) {
  .com-tel-no {
    font-size: 2rem;
  }
  .com-tel-no-2 {
  font-size: 2rem;
  }
}

@media screen and (max-width: 375px) {
  .contacts h3 {
    font-size: 1.3rem;
  }
  .contacts .com-tel-no {
    font-size: 1.5rem;
  }
  
  .contacts .com-tel-no-2 {
    font-size: 1.5rem;
  }

}

/*4.contens部分css*/
/*   4-1contens部共通使用   */
.com-hedding-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  font-family: 'Kaisei Opti', serif;
  margin-bottom: 2rem;
}

.com-hedding-1::before,
.com-hedding-1::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: #00B0D7;
}

.com-hedding-1::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}

.com-hedding-1::after {
  margin-left: 30px;
  transform: rotate(35deg)
}

.com-hedding-2 {
  font-family: 'Kaisei Opti', serif;
  text-align: center;
  font-size: 2rem;
  position: relative;
  padding: 1rem 2rem calc(1rem + 10px);
  background: #FFEFB6;
}

.com-hedding-2:before {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 100%;
  height: 100%;
  content: '';
  border: 2px solid #59626D;
}

.com-sub-hedding-1 {
  position: relative;
  font-size:1.6rem;
  font-family: 'Kaisei Opti', serif;
  color: #00B0D7;
  padding: 1rem 0.7rem;
  border-bottom: 1px solid #ABB0B5;
  background: transparent;
  margin-bottom: 2rem;
}

.com-sub-hedding-1:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #ABB0B5 transparent transparent transparent;
}

.com-sub-hedding-1:after {
  position: absolute;
  bottom: -12px;
  left: 1em;
  width: 0;
  height: 0;
  content: '';
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.com-sub-hedding-2 {
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  color: #fff;
  border-radius: 100vh 0 0 100vh;
  background: #00B0D7;
}

.com-sub-hedding-2:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: '';
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 1200px) {
  .com-hedding-1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .com-hedding-1::before,
  .com-hedding-1::after {
    content: '';
    width: 1px;
    height: 36px;
    background-color: #00B0D7;
  }

  .com-hedding-2 {
    font-size: 1.7rem;
  }

  .com-sub-hedding-1 {
    font-size:1.5rem;
    padding: 0.7rem 0.7rem;
    margin-bottom: 1rem;
    }
}

@media screen and (max-width: 414px) {
  .com-hedding-1 {
    font-size: 1.7rem;
    margin-bottom: 1.3rem;
  }
}

@media screen and (max-width: 375px) {
  .com-hedding-1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .com-hedding-1::before,
  .com-hedding-1::after {
    content: '';
    width: 1px;
    height: 30px;
    background-color: #00B0D7;
  }

.com-hedding-2 {
    font-size: 1.3rem;
    padding: 0.5rem 1rem calc(0.5rem + 10px);
  }

  .com-sub-hedding-1 {
    font-size:1.2rem;
    padding: 0.7rem 0.7rem;
    margin-bottom: 1rem;
    }

}

.topPageLinkIcon {
width:86px;
}

.com-margin-bottom200 {
margin-bottom: 200px;
}

.com-margin-bottom400 {
margin-bottom: 400px;
}

.com-bg-stripes {
  background-image:url(../img/bg_stripes.svg);
}

.com-small-40per {
  font-size:40%;
}

.com-small-50per {
  font-size:50%;
}

.com-small-60per {
  font-size:60%;
}

.com-small-70per {
  font-size:70%;
}

.com-small-75per {
  font-size:75%;
}

.com-small-80per {
  font-size:80%;
}

.com-small-85per {
  font-size:85%;
}

.com-small-90per {
  font-size:90%;
}

.com-small-95per {
  font-size:95%;
}

.com-small-98per {
  font-size:98%;
}

.com-large-110per {
  font-size:110%;
}

.com-large-120per {
  font-size:120%;
}

.com-large-130per {
  font-size:130%;
}

.com-large-140per {
  font-size:140%;
}

.com-large-150per {
  font-size:150%;
}

.com-large-200per {
  font-size:200%;
}

.com-text-pink {
  color: #FBB8AB;
}

.com-text-orange {
  color:#FFB17D;
}

.com-text-indigo {
  color:#69BAE9;
}

.com-text-blue2 {
  color:#9BE3EA;
}

.com-text-purple {
  color:#C5BCF3;
}

.com-font-Ubuntu {
  font-family: 'Ubuntu', sans-serif;
}

.com-listDesk:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  background: url(../img/icon_disc.svg) no-repeat;
  background-size: contain;
   margin-right: 2px;
}

/*   4-2愛児園についてページcss   */
#philosophy p {
  padding:0.4em 0;
  text-align: center;
  font-size:1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 375px) {
  #philosophy p {
    font-size:1.25rem;
  }
}

@media screen and (max-width: 320px) {
  #philosophy p {
    font-size:1.1rem;
  }
}

.goals ul {
  list-style: none;
  line-height: 1.3;
  padding: 0;
  font-weight: bold;
}

.goals li {
  padding: 0 0 2em 0;
}

/*   4-3園での生活ページcss   */
.schedule h3 {
  font-size: 2rem;
  padding:0 0 0 0.8em;
}

.com-schedule-sub-hedding-1 {
  font-size: 1.7rem;
  line-height: 1.9;
  font-weight: bold;
  color: #00B0D7;
  margin: 0 0 0.5rem 0;
}

.com-schedule-sub-hedding-2 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.schedule img {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .schedule h3{
    font-size: 1.8rem;
  }

  .com-schedule-sub-hedding-1 {
    font-size: 1.5rem;
    line-height: 1.7;
  }

  .com-schedule-sub-hedding-2 {
    font-size: 1rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 375px) {
  .schedule h3 {
    font-size: 1.5rem;
  }

  .com-schedule-sub-hedding-1 {
    font-size: 1.2rem;
    line-height: 1.4;
  }

  .schedule img {
    display: flex;
    align-items: center;
    max-width: 86%;
    height: auto;
    margin: 0 auto 5%;
  }
}

.schedule .border-line-parts p {
  margin-left: 1.9rem;
}

@media screen and (max-width: 1200px) {
  .schedule .border-line-parts p {
    margin-left: 1.5rem;
  }
}

@media screen and (max-width: 375px) {
  .schedule .border-line-parts p {
    margin-left: 1.2rem;
  }
}

/*========= 園での生活ページ 一日の保育の流れ バー表示のためのCSS ========*/
/*タイムライン全体の設定*/
.timeline{
  width:100%;
  margin:50px auto;
  padding:0 30px;
}

.timeline .border-line-parts {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding:0 0 15% 0;
}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left:0.4em;
  top:0.8em;
  width:1px;/*線の太さ*/
  height:0;/*はじめは高さを0に*/
  background: #9BE3EA;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline .border-line-parts::after{
  content:'';
  position: absolute;
  top:0.8em;
  left:0;
  width:14px;
  height: 14px;
  background:#9BE3EA;
  border-radius: 50%;
}

@media screen and (max-width: 1200px) {
/*タイムライン全体の設定*/
  .timeline {
    width:100%;
    margin:30px auto;
    padding:0 30px;
  }

/*絶対配置で線を設定*/
  .border-line {
    /*線の位置*/
    position: absolute;
    left:0.4em;
    top:0.7em;
    width:1px;/*線の太さ*/
    height:0;/*はじめは高さを0に*/
    background: #9BE3EA;
  }

/*タイムラインの見出し横の丸の位置と形状*/
  .timeline .border-line-parts::after{
    content:'';
    position: absolute;
    top:0.7em;
    left:0;
    width:14px;
    height: 14px;
    background:#9BE3EA;
    border-radius: 50%;
  }
}

@media screen and (max-width: 375px) {
/*タイムライン全体の設定*/
  .timeline {
    width:100%;
    margin:10px auto;
    padding:0 30px;
  }

/*絶対配置で線を設定*/
  .border-line {
    /*線の位置*/
    position: absolute;
    left:0.4em;
    top:0.5em;
    width:1px;/*線の太さ*/
    height:0;/*はじめは高さを0に*/
    background: #9BE3EA;
  }

/*タイムラインの見出し横の丸の位置と形状*/
  .timeline .border-line-parts::after {
    content:'';
    position: absolute;
    top:0.5em;
    left:0;
    width:14px;
    height: 14px;
    background:#9BE3EA;
    border-radius: 50%;
  }
}

.annualEvents dl dt {
  font-size: 2.2rem;
}

@media screen and (max-width: 375px) {
  .annualEvents dl dt {
    font-size: 1.9rem;
  }
}

/*   4-4お知らせページcss   */
.com-date {
margin-bottom: 0;
}

.event .comment {
  border-bottom: 1px solid #ABB0B5;
  padding: 1rem;
}