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

/* ここから リセットCSS */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

a.link-text_underline {
  text-decoration: underline;
  color: #1AACE5;
}

/* ここまで リセットCSS */


html,
body {
  font-size: 16px;
  line-height: 1.7;
  color: #654632;
  font-family: ヒラギノ丸ゴ Pro W4, ヒラギノ丸ゴ Pro, Hiragino Maru Gothic Pro, HG丸ｺﾞｼｯｸM-PRO, HGMaruGothicMPRO, sans-serif;
  background: url(../images/bg.jpg);
  position: relative;
  z-index: -9999999;
  overflow-x: hidden;
}

.pc-none,
.min700w-none {
  display: none;
}

.mb-none,
.max500w-none {
  display: block;
}

@media (max-width: 768px) {
  .pc-none {
    display: block;
  }

  .mb-none {
    display: none;
  }
}

@media (max-width: 700px) {
  .min700w-none {
    display: block;
  }
}

@media (max-width: 500px) {
  .max500w-none {
    display: none;
  }
}

.wrapper {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.main-vis {
  width: 100%;
}

.main-vis .slider-item {
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
}

.main-vis img {
  width: 100%;
  position: relative;
  padding: 0 10px;
  z-index: -10;
}

.main-vis-single {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.main-vis-single img {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  flex-grow: 1;
}

/* 細かい水玉
.mv_bgpattern-skyblue {
  background-color: #c4e9ff;
  background-image:
    radial-gradient(#BAE1F8 1px, transparent 1px);
  background-size: 20px 20px;
}
*/

/*　斜めストライプ（水色）
.mv_bgpattern-skyblue {
  background-color: #d6ecf8;
  background-image:
    repeating-linear-gradient(-45deg,
      #BAE1F8, #BAE1F8 7.5px,
      transparent 0, transparent 15px);
}
*/

/*　斜めストライプ（黄色）:*/
.mv_bgpattern-skyblue {
  background-color: #FFE893;
  background-image:
    repeating-linear-gradient(-45deg,
      #faeec0, #faeec0 7.5px,
      transparent 0, transparent 15px);
}

/*　水色チェック
.mv_bgpattern-skyblue {
  background-size: 20px 20px;
  background-color: #95d8ff;
  background-image:
    linear-gradient(45deg, rgba(186, 225, 248, 0.5) 25%, transparent 25%,
      transparent 50%, rgba(186, 225, 248, 0.5) 50%, rgba(186, 225, 248, 0.5) 75%,
      transparent 75%, transparent),
    linear-gradient(-45deg, rgba(186, 225, 248, 0.5) 25%, transparent 25%,
      transparent 50%, rgba(186, 225, 248, 0.5) 50%, rgba(186, 225, 248, 0.5) 75%,
      transparent 75%, transparent);
}
*/

/* 黄色チェック
.mv_bgpattern-skyblue {
  background-size: 20px 20px;
  background-color: #FFE893;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%,
      transparent 75%, transparent),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.5) 25%, transparent 25%,
      transparent 50%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.5) 75%,
      transparent 75%, transparent);
}
*/

/*　ここから　スライダーの設定　*/
.slider .slick-prev {
  /* デフォルトでは-25px(= スライダーの外側) */
  left: 18.7vw;
}

.slider .slick-next {
  /* デフォルトでは-25px(= スライダーの外側) */
  right: 18.7vw;
}

.slider .slick-prev,
.slider .slick-next {
  /* スライド画像の後ろに隠れないようにする */
  width: 40px;
  height: 40px;
  z-index: 1;
}

.slider .slick-prev::before,
.slider .slick-next::before {
  /* フォントと色の設定はbefore内で行う */
  font-size: 40px;
  color: #1AACE5;
}

@media(max-width: 768px) {
  .slider .slick-prev {
    /* デフォルトでは-25px(= スライダーの外側) */
    left: 8vw;
  }

  .slider .slick-next {
    /* デフォルトでは-25px(= スライダーの外側) */
    right: 8vw;
  }

}

@media(max-width: 480px) {

  .main-vis img {
    padding: 0 5px;
  }

  .slider .slick-prev,
  .slider .slick-next {
    /* スライド画像の後ろに隠れないようにする */
    width: 30px;
    height: 30px;
  }

  .slider .slick-prev::before,
  .slider .slick-next::before {
    /* フォントと色の設定はbefore内で行う */
    font-size: 30px;
  }
}

/*　ここまで　スライダーの設定　*/

.main-vis-top-deco {
  height: 5vw;
  background: url(../images/deco-ill-06.png) left 0px top 0px / contain repeat-x;
  margin-top: -1.6vw;
  margin-bottom: -1vw;
  position: relative;
  z-index: 1;
}

.main-vis-bottom-deco {
  text-align: center;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 22px;
  color: #654632;
  text-shadow:
    1px 0 0 #fff,
    0 1px 0 #fff,
    -1px 0 0 #fff,
    0 -1px 0 #fff;
  line-height: 5vw;
  height: 5vw;
  background: url(../images/deco-ill-06.png) left 0px top 0px / contain repeat-x;
  margin-top: -1vw;
  position: relative;
  z-index: 1;
}

.h1 {
  position: absolute;
  top: 25px;
  left: 50px;
  z-index: 1;
}

.logo-wrap {
  margin: 0 auto;
}

.yume-logo {
  height: 100px;
}

.inquiry-tel_number {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 16px;
  color: #654632;
  text-shadow:
    1px 0 0 #fff,
    0 1px 0 #fff,
    -1px 0 0 #fff,
    0 -1px 0 #fff;
}

.inquiry-tel_number p {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  border: solid 3px #1AACE5;
  padding: 2px 10px;
  text-align: center;
  font-size: 14px;
}

.inquiry-tel_number p .mb-none-550 {
  display: inline-block;
}

.inquiry-tel_number p a {
  color: #654632;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
}

.inquiry-tel_number p a:visited {
  color: #654632;
}

.inquiry-tel_number p a:hover {
  text-decoration: underline;
}


.inquiry-tel_number p a i {
  transform: rotate(-30deg);
}


.container {
  width: 960px;
  margin: 0 auto;
}

.header {
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 1;
}

nav ul {
  font-size: 0;
}

nav ul li {
  display: inline-block;
  width: 120px;
  height: 110px;
  text-align: center;
  font-size: 15px;
  border-right: dashed 2px #654632;
}

nav ul li:first-child {
  border-left: dashed 2px #654632;
}

nav ul li a {
  display: block;
  color: #654632;
  text-decoration: none;
}

.nav-ill {
  height: 50px;
  margin: 20px 0 10px 0;
}

@media(max-width: 1000px) {
  .inquiry-tel_number {
    position: absolute;
    right: 50px;
  }
}

@media(max-width: 768px) {
  .h1 {
    top: 2vw;
    left: 4vw;
  }

  .yume-logo {
    height: 14vw;
  }
}

@media(max-width: 700px) {

  .main-vis-top-deco,
  .main-vis-bottom-deco {
    font-size: 17px;
    line-height: 24px;
    height: 12vw;
    margin-top: -6vw;
  }
}

@media(max-width: 550px) {
  .inquiry-tel_number {
    font-size: 13px;
    height: 34px;
    line-height: 34px;
  }

  .inquiry-tel_number p {
    padding: 0 15px;
    border: solid 2px #1AACE5;
  }

  .mb-none-550 {
    display: none;
  }

  .inquiry-tel_number p a {
    display: block;
    font-size: 1.1rem;
  }
}

/* ここから　ハンバーガーメニュー */
@media (max-width: 1000px) {
  body.noscroll {
    /*動き固定*/
    position: fixed;
    /*下2つで背景を元のサイズのまま表示することができる*/
    width: 100%;
    height: 100%;
  }

  .burger-btn-wrap {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
  }

  .burger-btn {
    display: block;
    width: 39px;
    height: 39px;
    position: relative;
    z-index: 3;
    border: none;
    background: #1AACE5;
    border-radius: 5px 0 5px 5px;
  }

  .bar {
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
  }

  .bar_top {
    top: 10px;
  }

  .bar_mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .bar_bottom {
    bottom: 10px;
  }

  /* 3本線をバツにする */
  .burger-btn.close .bar_top {
    transform: translate(-50%, 10px) rotate(45deg);
    transition: transform .3s;
  }

  .burger-btn.close .bar_mid {
    opacity: 0;
    transition: opacity .3s;
  }

  .burger-btn.close .bar_bottom {
    transform: translate(-50%, -8px) rotate(-45deg);
    transition: transform .3s;
  }

  /* メニューを全画面表示にする */
  .nav-wrapper {
    transform: translateX(100%);
    transition: .3s;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    /*メインビジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }

  .nav-wrapper.slide-in {
    transform: translateX(0);
    transition: .3s;
  }

  .header-nav {
    width: 100%;
    height: 100%;
    background-color: rgba(252, 250, 210, 0.9);
    border: solid 4px #1AACE5;
  }

  .header-nav.nav-list {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .header-nav.nav-item {
    margin-right: 0;
    margin-bottom: 40px;
  }

  /* ここまで　ハンバーガーメニュー */

  /* ここから　ハンバーガーメニューの中身*/
  nav ul {
    margin-top: 36px;
  }

  nav ul li {
    display: block;
    width: calc(100% - 40px);
    height: 60px;
    text-align: left;
    font-size: 17px;
    border-right: 0;
    border-bottom: dashed 2px #654632;
    margin: 0 20px;
  }

  nav ul li:first-child {
    border-left: 0;
    border-top: dashed 2px #654632;
  }

  nav ul li a {
    display: block;
    color: #333;
    text-decoration: none;
  }

  nav ul li p {
    display: inline;
    height: 60px;
    line-height: 60px;
    vertical-align: top;
  }

  .nav-ill {
    display: inline-block;
    width: 80px;
    height: 34px;
    margin: 10px 0 0 0;
  }
}

/* ここまで　ハンバーガーメニューの中身*/

h2 {
  text-align: center;
  margin: 10px 0 0 0;
}

h2.pagetitle {
  color: #006C96;
  font-weight: bold;
  font-size: 2.3rem;
  height: 100px;
  line-height: 130px;
  padding: 1.5rem 0 0 0;
  margin: 0 0 50px 0;
}

.heading-welcome {
  width: 100%;
  max-width: 500px;
  margin: 50px 0 0 0;
}

.deco-flag {
  width: 20%;
}

.lead-wrap {
  text-align: center;
}

.lead {
  display: inline-block;
  font-size: 18px;
  text-align: center;
  padding: 10px 20px 0;
}

@media (max-width: 1000px) {
  .container {
    width: 100%;
    padding: 0 40px;
  }
}

@media (max-width: 900px) {
  .lead-deco-ill {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h2 {
    margin: -20px 0 0 0;
  }

  h2.pagetitle {
    height: 14vw;
    font-size: 1.8rem;
  }


  .heading-welcome {
    width: 100%;
    margin-bottom: 20px;
  }

  .deco-flag {
    display: none;
  }

  .lead {
    font-size: 16px;
    padding: 0;
  }
}

@media (max-width: 500px) {
  .lead {
    text-align: left;
  }

  h2.pagetitle {
    height: 16vw;
    line-height: 23vw;
    font-size: 1.3rem;
    padding: 0 0 0 15vw;
    margin: 0;
  }

}

/* 背景ブルー */
.bg-skyblue {
  background: rgba(26, 172, 229, 0.2);
  position: relative;
  margin: 80px 0;
  padding-bottom: 20px;
}

.bg-skyblue::before {
  content: "";
  display: block;
  background: url('../images/wave.svg');
  width: 100%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 0;
}


.bg-skyblue::after {
  content: "";
  display: block;
  background: url('../images/wave.svg');
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: -40px;
  left: 0;
  transform: scale(1, -1);
}

/* コンテンツ共通 */
.contents-heading {
  text-align: center;
  margin-bottom: 40px;
}

.heading-image {
  width: 280px;
}

.text-center {
  text-align: center;
}

.center-block {
  margin: 0 auto;
}

.img-wrap {
  text-align: center;
}

.img-wrap img {
  width: 100%;
  max-width: 500px;
}

.data-list dt {
  color: #006C96;
  border-bottom: dotted 2px #fff;
}

.data-list dd {
  padding-top: 5px;
  margin-bottom: 40px;
}

.dt-footnote {
  color: #333;
  font-size: 12px;
}

.dash {
  letter-spacing: -.2em;
  width: 2em;
  margin-right: .5em;
}

.flexbox,
.flexbox_w1000,
.flexbox_w500,
.flexbox_w450,
.flexbox_photo {
  display: flex;
  justify-content: space-between;
}

.flexbox_wrap,
.flexbox_wrap_w500 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-innerbox-70 {
  width: 70%;
}

.flex-innerbox-60 {
  width: 60%;
}

.flex-innerbox-50 {
  width: 50%;
}

.flex-innerbox-40 {
  width: 40%;
  padding-left: 20px;
}

.flex-innerbox-30 {
  width: 30%;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.pt10 {
  padding-top: 10px;
}

.pl20 {
  padding-left: 20px;
}

.pr20 {
  padding-right: 20px;
}

.txt_left {
  text-align: left;
}

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

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

.tel-number {
  color: #644632;
}

.sub-heading {
  color: #fff;
  color: #644632;
  width: 220px;
  height: 40px;
  position: relative;
  padding: .5em .75em;
  background-color: #d5f3ff;
  border-radius: 6px;
  margin: 0 0 20px;
}

.sub-heading::after {
  position: absolute;
  top: 100%;
  left: 30px;
  content: '';
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top: 15px solid #d5f3ff;
  ;
}

.box-max-w650 {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 1000px) {

  .flexbox_w1000,
  .flexbox_photo {
    display: block;
  }

  .flex-innerbox-40 {
    width: 100%;
    padding-left: 0;
  }

  .flex-innerbox-60 {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .flexbox,
  .flexbox_wrap,
  .flex-start {
    display: block;
  }

  .flexbox_photo {
    display: flex;
    justify-content: space-between;
  }

  .flex-innerbox-70 {
    width: 100%;
  }

  .flex-innerbox-50 {
    width: 100%;
  }

  .flex-innerbox-30 {
    width: 100%;
  }

  .pl20 {
    padding-left: 0;
  }

  .pr20 {
    padding-right: 0;
  }

  .box-w650 {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

}

@media (max-width: 500px) {

  .flexbox_w500,
  .flexbox_wrap_w500,
  .flexbox_photo {
    display: block;
  }
}

/* おしらせ */
.news-box {
  width: 100%;
  background: #fff;
  border: solid 5px #1AACE5;
  padding: 20px 30px;
  border-radius: 20px;
}

.news-contents {
  font-size: 18px;
}

@media (max-width: 768px) {
  .news-box {
    padding: 10px 15px;
    border: solid 3px #1AACE5;
  }

  .news-contents {
    font-size: 16px;
  }
}

@media (max-width: 374px) {
  .sub-heading {
    width: 100%;
  }
}


/* 学童保育とは */
.about-gakudo-list,
.news-contents-list {
  font-size: 18px;
  padding-right: 20px;
}

.about-gakudo-list li,
.news-contents-list li {
  padding-left: 2.2em;
  text-indent: -1.3em;
  line-height: 1.8;
  position: relative;
}

.about-gakudo-list li::before,
.news-contents-list li::before {
  content: "●";
  color: #1AACE5;
  font-size: 13px;
  margin-right: 5px;
  position: absolute;
  top: 5px;
}

.news-contents-list a {
  text-decoration: underline;
  color: #1AACE5;
}

.graph-data {
  width: 50%;
  padding: 0 20px;
}

@media (max-width: 768px) {

  .about-gakudo-list,
  .news-contents-list {
    font-size: 14px;
    padding-right: 0;
  }
}

@media (max-width: 500px) {
  .graph-data {
    width: 100%;
    padding: 0 20px 20px;
  }
}


/* 夢学童について */
.policy-box {
  background: url(../images/bg.jpg);
  border: solid 6px #1AACE5;
  padding: 20px 30px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.policy-title-wrap {
  border-bottom: dotted 4px #bbb;
  padding-bottom: 2px;
  margin-bottom: 10px;
}

.policy-title {
  font-size: 24px;
  color: #006C96;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-right: 20px;
}

.policy-title-small {
  font-size: 21px;
  color: #006C96;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-right: 20px;
}

.policy-list {
  font-size: 18px;
}

.policy-nummber {
  color: #1AACE5;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  padding-right: 10px;
}

table.Number-of-children {
  width: 300px;
  font-size: 14px;
  border: solid 2px #fff;
}

table.Number-of-children tr:last-child th {
  border-top: solid 2px #fff;
}

table.Number-of-children tr:last-child {
  border-top: solid 2px #ddd;
}

table.Number-of-children tr th {
  background: #9DE5F8;
  width: 75px;
  padding: 5px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
}

table.Number-of-children tr td {
  text-align: center;
  background: #fff;
  border-bottom: solid 1px #ddd;
  border-right: solid 1px #ddd;
}

.border-white {
  border: solid 6px #fff;
}

.ph-caption {
  font-size: 14px;
}

.ph-caption i {
  color: #1AACE5;
}

.school-list {
  list-style: disc;
  margin: 0 0 20px 20px;
}

@media (max-width: 768px) {
  .policy-box {
    border: solid 3px #1AACE5;
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 40px;
  }

  .policy-title {
    font-size: 20px;
  }

  .policy-list {
    font-size: 16px;
  }

  .policy-list li {
    padding-left: 1.8em;
    text-indent: -1.8em;
    line-height: 1.8;
  }

  table.Number-of-children {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* 夢学童の特徴 */
.feature-speechBalloon {
  display: inline-block;
  width: 160px;
  height: 55px;
  line-height: 55px;
  margin: 0 20px 10px 0;
}

h4.feature-heading {
  display: inline-block;
  color: #FF8D08;
  font-size: 22px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  height: 55px;
  line-height: 55px;
  vertical-align: top;
}

.feature-text {
  margin-top: 10px;
}

.oyatsu-ranking {
  text-align: center;
  margin-bottom: 40px;
}

.oyatsu-ranking img {
  max-width: 100%;
}

.play-heading img {
  max-width: 100%;
}

h5.feature-ttl-play {
  width: 150px;
  background-color: #5FC5ED;
  /* 背景色 */
  background-image: radial-gradient(#31B4E8 20%, transparent 0), radial-gradient(#31B4E8 20%, transparent 0);
  /* 水玉の色 */
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  font-size: 22px;
  color: #fff;
  text-shadow:
    2px 0 0 #1CACE5,
    0 2px 0 #1CACE5,
    -2px 0 0 #1CACE5,
    0 -2px 0 #1CACE5;
  /* 文字色 */
  padding: 5px 10px 4px 20px;
  /* 余白 */
  border-radius: 10px;
}

.play-border {
  border-bottom: dotted 4px #5FC5ED;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.play-ill-wrap {
  padding: 5px;
  text-align: center;
}

.play-ill-wrap img {
  max-width: 100%;
}

/* おやつランキング */
.oyatsu-ranking dl dt {
  display: inline-block;
  font-size: 18px;
  width: 100px;
}

.oyatsu-ranking dl .ranking-txt_large {
  font-size: 22px;
}

.oyatsu-ranking dl dt.ranking-first::before,
.oyatsu-ranking dl dt.ranking-second::before,
.oyatsu-ranking dl dt.ranking-third::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background-size: contain;
  vertical-align: -5px;
}

.oyatsu-ranking dl dt.ranking-first::before {
  background-image: url(../images/crown-gold.png);
}

.oyatsu-ranking dl dt.ranking-second::before {
  background-image: url(../images/crown-silver.png);
}

.oyatsu-ranking dl dt.ranking-third::before {
  background-image: url(../images/crown-bronze.png);
}

.oyatsu-ranking dl dd {
  display: inline-block;
  font-size: 18px;
  width: 65%;
  text-align: left;
  padding: 5px 0 5px 10px;
}

@media (max-width: 768px) {
  h4.feature-heading {
    display: block;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    height: auto;
    line-height: 24px;
    margin-bottom: 20px;
  }

  .feature-photo {
    display: block;
    margin: 20px auto 60px;
  }

  .oyatsu-ranking dl dd {
    width: 30%;
  }
}

@media (max-width: 500px) {
  .oyatsu-ranking dl dd {
    width: 60%;
  }

  .oyatsu-ranking dl dt {
    width: 80px;
  }
}



/* 指導員紹介 */
.staff-box,
.staff-box-s {
  border: solid 6px #5DD4F4;
  border-radius: 20px;
  padding: 15px 20px;
  margin: 0 10px 20px 10px;
  background: #fff;
  flex: 1;
}

.staff-heading {
  color: #654632;
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-bottom: 20px;
  border-bottom: solid 2px #5DD4F4;
}

.staff-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin-right: 20px;
}

/* .staff-list {
  width: calc(100% - 180px);
} */

.staff-list-s {
  width: 100%;
}

.staff-list tr,
.staff-list-s tr {
  border-bottom: dashed 1px #ddd;
}

.staff-list tr th,
.staff-list-s tr th {
  font-size: 16px;
  color: #1AACE5;
  width: 60px;
  padding: 5px;
  text-align: left;
}

.staff-list tr td,
.staff-list-s tr td {
  font-size: 16px;
  width: calc(100% - 60px);
}

.staff-list .no-border,
.staff-list-s .no-border {
  border-bottom: 0px;
}

.deco-wrap {
  text-align: center;
  margin: 40px 0 0 10px;
}

@media(max-width: 1000px) {
  .staff-list {
    width: 100%;
  }
}

@media (max-width:768px) {

  .staff-box,
  .staff-box-s {
    border: solid 3px #5DD4F4;
  }

  .staff-box {
    width: calc(100% - 20px);
  }

  .staff-list {
    width: calc(100% - 180px);
  }

}

@media (max-width:500px) {
  .staff-box-s {
    width: calc(100% - 20px);
    margin: 0 10px 20px 10px;
  }

  .staff-list {
    width: 100%;
  }
}


/* １日の流れ */
.dayFlow {
  position: relative;
}

.dayFlow::before {
  width: 3px;
  height: 100%;
  background: #FF8D08;
  content: "";
  position: absolute;
  top: 0;
  left: calc(33.3333% + 40px);
}

.dayFlow li {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 60px;
}

.dayFlow-image {
  width: 33.3333%;
  max-width: 320px;
  float: left;
  position: relative;
}

.dayFlow-image img {
  max-width: 100%;
  border-radius: 20px;
}

.dayFlow-image::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: #FF8D08;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: calc(100% + 34px);
  transform: translateY(-50%);
}

.dayFlow-content {
  float: right;
  width: 66.66666%;
  padding-left: 80px;
}

.dayFlow-time {
  display: inline-block;
  color: #fff;
  background: #1AACE5;
  width: 120px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
  margin-right: 20px;
}

.dayFlow-ttl {
  display: inline-block;
  color: #006C96;
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  height: 18px;
  line-height: 18px;
}

.dayFlow-txt {
  margin-top: 20px;
  width: 100%;
  max-width: 360px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .dayFlow-time {
    display: block;
  }

  .dayFlow-ttl {
    display: block;
    margin: 10px 0 30px;
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .dayFlow::before {
    display: none;
  }

  .dayFlow li {
    padding-bottom: 120px;
  }

  .dayFlow li::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: url(../images/arrow_02.png) no-repeat;
    background-size: contain;
  }

  .dayFlow li:last-child {
    padding-bottom: 0;
  }

  .dayFlow li:last-child::after {
    display: none;
  }

  .dayFlow-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .dayFlow-image::after {
    display: none;
  }

  .dayFlow-content {
    float: none;
    width: 100%;
    padding-left: 0px;
  }

  .dayFlow-ttl {
    margin: 10px 0 15px;
  }

  .dayFlow-txt {
    max-width: 100%;
    margin-top: 0;
  }
}

/* 年間行事 */
.events-ttl {
  font-size: 20px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.events-ttl.jan {
  color: #097927;
}

.events-ttl.feb {
  color: #FFBD08;
}

.events-ttl.mar {
  color: #E77C9F;
}

.events-ttl.may {
  color: #55BC12;
}

.events-ttl.june {
  color: #FF8D08;
}

.events-ttl.july {
  color: #1AACE5;
}

.events-ttl.aug {
  color: #115ECE;
}

.events-ttl.oct {
  color: #840AA2;
}

.events-ttl.nov {
  color: #90481A;
}

.events-ttl.dec {
  color: #E6000E;
}

.event-wrap,
.event-photo-wrap {
  width: 100%;
  max-width: 600px;
}

.event-photo-innnerWrap {
  position: relative;
  margin: 0 auto;
  width: 48%;
}

.event-photo-innnerWrap img {
  width: 100%;
  max-width: 500px;
}

.event-photo {
  width: 240px;
  border-radius: 20px;
}

.event-photo-ttl {
  position: absolute;
  bottom: 60px;
  width: 130px;
  height: 28px;
  line-height: 28px;
  padding: 0 0 0 15px;
  font-size: 14px;
  color: #fff;
}

.event-photo-ttl.jan {
  background: #097927;
  position: relative;
}

.event-photo-ttl.jan::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-green02.svg);
}

.event-photo-ttl.feb {
  background: #FFBD08;
  position: relative;
}

.event-photo-ttl.feb::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-yellow.svg);
}


.event-photo-ttl.mar {
  background: #E77C9F;
  position: relative;
}

.event-photo-ttl.mar::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-pink.svg);
}

.event-photo-ttl.may {
  background: #55BC12;
  position: relative;
}

.event-photo-ttl.may::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-green.svg);
}

.event-photo-ttl.june {
  background: #FF8D08;
  position: relative;
}

.event-photo-ttl.june::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-orange.svg);
}

.event-photo-ttl.july {
  background: #1AACE5;
  position: relative;
}

.event-photo-ttl.july::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-skyblue.svg);
}

.event-photo-ttl.aug {
  background: #115ECE;
  position: relative;
}

.event-photo-ttl.aug::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-blue.svg);
}

.event-photo-ttl.oct {
  background: #840AA2;
  position: relative;
}

.event-photo-ttl.oct::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-purple.svg);
}

.event-photo-ttl.nov {
  background: #90481A;
  position: relative;
}

.event-photo-ttl.nov::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-brown.svg);
}

.event-photo-ttl.dec {
  background: #55BC12;
  position: relative;
}

.event-photo-ttl.dec::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  right: -28px;
  background: url(../images/ribbon-green.svg);
}

.events-txt {
  font-size: 16px;
  margin-bottom: 30px;
}

@media (max-width: 1000px) {

  .event-wrap,
  .event-photo-wrap {
    text-align: center;
    margin: 0 auto;
  }
}

@media (max-width: 500px) {
  .event-photo-wrap {
    max-width: 100%;
  }

  .event-photo-innnerWrap {
    width: 100%;
  }

  .event-photo-innnerWrap img {
    max-width: 100%;
  }
}

/* 夢学童のあゆみ */
.history-list {
  border-bottom: dotted 2px #999;
  padding: 15px;
  width: 650px;
  font-size: 16px;
  margin: 0 auto;
  display: flex;
}

.history-list:first-child {
  border-top: dotted 2px #999;
}

.history-list dt {
  color: #006C96;
  width: 160px;
}

.history-list dd {
  width: 480px;
}

@media (max-width: 700px) {
  .history-list {
    display: block;
    width: 100%;
  }

  .history-list dt {
    width: 100%;
  }

  .history-list dd {
    width: 100%;
  }
}

/* アクセス */
#access .data-list {
  width: 650px;
  margin: 0 auto;
}

#access .tel_number a {
  color: #654632;
  font-size: 1.4rem;
}

#access .blog_address a {
  color: #654632;
}

#access .blog_address a:visited {
  color: #654632;
}

#access .blog_address a:hover {
  text-decoration: underline;
}

#map-embed {
  position: relative;
  width: 100%;
  margin-top: 10px;
  border: solid 2px #ddd;
  overflow: hidden;
}

#map-embed a {
  display: block;
  height: 600px;
}

#map-embed iframe {
  position: absolute;
  top: -150px;
  left: 0;
  width: 100%;
  height: calc(100% + 150px + 150px);
  pointer-events: none;
}

.deco-ill {
  width: 280px;
}

.deco-ill_200 {
  width: 200px;
}

@media (max-width: 700px) {
  #access .data-list {
    width: 100%;
  }

  #map-embed a {
    height: 300px;
  }
}

/* フッター */
.footer {
  width: 100%;
  height: 25px;
  line-height: 0;
  text-align: center;
  background: rgba(26, 172, 229, 0.2);
  position: relative;
  margin-top: 80px;
  padding-bottom: 15px;
}

.footer::before {
  content: "";
  display: block;
  background: url('../images/wave.svg');
  width: 100%;
  height: 40px;
  position: absolute;
  top: -40px;
  left: 0;
}

/* ここから　ページトップへ戻るボタン*/
#pageTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
}

#pageTop i {
  margin: -5px 7px 0 0;
  font-size: 2rem;
}

#pageTop a {
  display: block;
  padding: 8px 0 0 8px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-color: rgba(26, 172, 229, 0.7);
  color: #fff;
  font-size: 1.3em;
  font-weight: 900;
  text-decoration: none;
  text-align: center;
  outline: none;
}

#pageTop a:hover {
  text-decoration: none;
  background-color: rgba(26, 172, 229, 1);
}

/* ここまで　ページトップへ戻るボタン*/

/* ここから　入所案内ページ*/

.bg-white {
  background: #fff;
}

.faq-list dt {
  margin-top: 30px;
}

.faq-list dt::before {
  content: "Q";
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #1CACE5;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 34px;
  margin-right: 10px;
}

.faq-list dd {
  margin-top: 15px;
  text-indent: -44px;
  padding-left: 44px;
}

.faq-list dd::before {
  content: "A";
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #FBB03B;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  line-height: 34px;
  margin-right: 10px;
  text-indent: 0px;
}

.parents-voice {
  display: flex;
  margin-top: 20px;
}

.parents-voice dt {
  width: 150px;
  height: 150px;
}

.parents-voice dt img {
  width: 100%;
  border-radius: 75px;
}

.parents-voice dt .parents-voice-name {
  font-size: 0.85rem;
  text-align: center;
}

.balloon1-left {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding: 20px 30px;
  width: 100%;
  background: #e0edff;
  border-radius: 10px;
}

.balloon1-left:before {
  content: "";
  position: absolute;
  top: 70px;
  left: -24px;
  border: 8px solid transparent;
  border-right: 18px solid #e0edff;
}

@media (max-width: 600px) {
  .faq-list dd {
    text-indent: 0;
    padding-left: 0;
  }

  .faq-list dt::before,
  .faq-list dd::before {
    display: block;
    margin-bottom: 5px;
  }

  .parents-voice {
    display: block;
  }

  .parents-voice dt {
    width: 100%;
    height: 120px;
  }

  .parents-voice dt img {
    width: 120px;
    border-radius: 75px;
  }

  .parents-voice dt .parents-voice-name {
    display: inline-block;
    height: 120px;
    line-height: 120px;
    vertical-align: top;
  }

  .balloon1-left {
    margin: 20px 0 0 0;
    padding: 15px 20px;
  }

  .balloon1-left:before {
    content: "";
    position: absolute;
    left: 50px;
    top: -24px;
    border: 8px solid transparent;
    border-bottom: 18px solid #e0edff;
  }
}

/* ここまで　入所案内ページ*/

/* ここから　１日体験ページ*/

.oneday-heading {
  width: 150px;
  background-color: #5FC5ED;
  /* 背景色 */
  background-image: radial-gradient(#31B4E8 20%, transparent 0), radial-gradient(#31B4E8 20%, transparent 0);
  /* 水玉の色 */
  background-position: 0 0, 10px 10px;
  background-size: 20px 20px;
  font-size: 22px;
  color: #fff;
  text-shadow:
    2px 0 0 #1CACE5,
    0 2px 0 #1CACE5,
    -2px 0 0 #1CACE5,
    0 -2px 0 #1CACE5;
  /* 文字色 */
  padding: 5px 10px 4px 20px;
  /* 余白 */
  border-radius: 10px;
}

.oneday-date img,
.banner-wrap img {
  width: 100%;
  max-width: 700px;
}

.oneday-notes {
  font-size: 1.3rem;
  color: #1CACE5;
}

.oneday-txt {
  font-size: 1.4rem;
}

@media (max-width: 600px) {

  .oneday-notes {
    font-size: 1rem;
    color: #1CACE5;
  }

  .oneday-txt {
    font-size: 1.1rem;
    margin-top: 10px;
  }
}

/* ここまで　１日体験ページ*/
