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

## Foundation
ブラウザ仕様をフラットにする

文字色 : palette('color');
リンク : $link_color
ホバー : $hover_color

*/
body {
  -webkit-font-smoothing: antialiased;
}

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;
}

li {
  list-style: none;
}

input,
textarea {
  outline: 0;
}

.none {
  display: none;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  background: #fff;
  color: #333333;
}

.gmap {
  width: 100%;
}
.gmap > iframe {
  max-width: 100%;
}
.gmap > img {
  max-width: 100%;
}

.gcalendar {
  max-width: 100%;
}
.gcalendar > iframe {
  max-width: 100%;
}
.gcalendar > img {
  max-width: 100%;
}

.twitter {
  overflow: hidden;
}
.twitter > iframe {
  margin-left: auto;
  margin-right: auto;
}

.img {
  max-width: 100%;
  display: block;
}

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

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

*/
/*

<div class="_h3">.bold</div>

太字。

	<span class="bold">太い文字</span><br>
	<span class="em">太い文字</span>

*/
.bold,
.em {
  font-weight: bold;
  font-style: normal;
}

/*

<div class="_h3">.underline</div>

下線。

	<span class="underline">テキスト</span><br>

*/
.underline {
  text-decoration: underline;
}

/*

<div class="_h3">.red .caution</div>

赤文字。

	<span class="caution">赤い文字</span><br>
	<span class="red">赤い文字</span>

*/
.caution,
.red_text {
  color: #e50b3e;
  text-decoration-color: #e50b3e;
}

/*

<div class="_h3">.white_text</div>

白文字。

	<span class="white_text">オレンジ文字</span>

*/
.white_text {
  color: #fff;
}

.small_text {
  font-size: 12px;
}

/*

<div class="_h3">.center</div>

適当に中央によせたい。

3つ指定してます
margin-left: auto;
margin-right: auto;
text-align: center;

	<div class="center">テキスト</div>

*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/*

<div class="_h3">.center_position</div>

画像を適当に中央によせたい。
親要素に relative が必要
width と height は個別に指定した方がいい

	<div class='line'>
		<img class="center_position" src="http://placehold.it/100x100" alt="">
	</div>

*/
.center_position {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*

<div class="_h3">.center_text</div>

text-align: right 。 float はしない。

	<div class="center_text">テキスト</div>

*/
.center_text {
  text-align: center;
}

/*

<div class="_h3">.right_text</div>

text-align: right 。 float はしない。

	<div class="right_text">テキスト</div>

*/
.right_text {
  text-align: right;
}

.float_right {
  float: right;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
}

.float_left {
  float: left;
  padding-right: 0.5em;
  padding-bottom: 0.5em;
}

.clear_both {
  clear: both;
}

/*

<div class="_h3">.clearfix</div>

	<div class="clearfix">テキスト</div>

*/
.clearfix::after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*

<div class="_h3">.clear</div>

clear: both; だけしたい時。

	<div class="clear">テキスト</div>

*/
.clear {
  clear: both;
}

/*

<div class="_h3">.no_text</div>

背景画像だけを表示して、テキストを吹き飛ばして非表示にしたい。 text-indent: 120%;
(下記例の info_title _hosp クラスはサンプルをわかりやすくするための指定。)

	<div class="info_title _hosp no_text">テキスト</div>

.no_text {
	text-indent: 120%;
	line-height: 0;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}
*/
.no_text,
.hide-text {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
}

/*

<div class="_h3">.on_opacity</div>

:hover で透明化する aタグ。 opacity はサイト統一と考えて、基本ここにしか書いていません。

	<a href="#" class="on_opacity">マウスオーバーで透明化するリンクテキスト</a>

*/
.on_opacity:hover {
  text-decoration: none;
  opacity: 0.7;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*

<div class="_h3">.ellipsis</div>

領域からはみ出た場合に「...」を表示する。ブラウザの挙動がおかしいのであまりにあてにしない。

	<div class="ellipsis" style="width: 100px;">長いテキスト長いテキスト長いテキスト長いテキスト</div>

*/
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/*

<div class="_h3">.no_wrap</div>

改行せず、領域を貫通するテキスト。 PCのために書く時、SPで改行をせず表示が壊れないかに注意。

	<div class="no_wrap">テキスト</div>

*/
.no_wrap {
  white-space: nowrap;
}

/*

<div class="_h3">.mb_1em</div>

*/
.root .main_content .mb_3em {
  margin-bottom: 3em;
}
.root .main_content .mb_2em {
  margin-bottom: 2em;
}
.root .main_content .mb_1_5em {
  margin-bottom: 1.5em;
}
.root .main_content .mb_1em {
  margin-bottom: 1em;
}
.root .main_content .mb_05em {
  margin-bottom: 0.5em;
}
.root .main_content .mb_0em,
.root .main_content .no_mb,
.root .main_content .mb_none {
  margin-bottom: 0;
}

/*

<div class="_h3">.tel</div>

comment

	<div class="fot_m">外来診療</div>

*/
.tel_link {
  word-wrap: break-word;
}

/**************************
.image_radius
*/
.image_radius {
  border-radius: 7px;
}

.root .no_radius {
  border-radius: inherit;
}

/**************************
.skip
*/
.skip {
  border-style: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  z-index: 100;
}

.fb_page_container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width: 899px), screen and (max-height: 670px) {
  body._show-menu {
    overflow: hidden;
  }
}

img {
  display: block;
}

@media screen and (max-width: 899px) {
  .sp_none {
    display: none;
  }
}
@media screen and (min-width: 900px), print {
  .sp_none {
    display: block;
  }
}

@media screen and (min-width: 900px), print {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .pc_none {
    display: block;
  }
}

@media screen and (max-height: 670px) {
  .low_height_none {
    display: none;
  }
}

@media screen and (max-height: 670px) {
  .low_height_show {
    display: block;
  }
}

.container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1040px;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main_content .red_Text {
  color: #e50b3e;
}
.main_content em {
  font-style: normal;
  font-weight: bold;
}
.main_content .text_link {
  color: #d52626;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.main_content .text_link:hover {
  opacity: 0.7;
}
.main_content .mb-3 {
  margin-bottom: 3em !important;
}
.main_content .mb-2 {
  margin-bottom: 2em !important;
}
.main_content .mb-1_5 {
  margin-bottom: 1.5em !important;
}
.main_content .mb-1 {
  margin-bottom: 1em !important;
}
.main_content .mb-05 {
  margin-bottom: 0.5em !important;
}
.main_content .mb-0 {
  margin-bottom: 0 !important;
}
.main_content .mt-3 {
  margin-top: 3em !important;
}
.main_content .mt-2 {
  margin-top: 2em !important;
}
.main_content .mt-1_5 {
  margin-top: 1.5em !important;
}
.main_content .mt-1 {
  margin-top: 1em !important;
}
.main_content .mt-05 {
  margin-top: 0.5em !important;
}
.main_content .mt-0 {
  margin-top: 0 !important;
}
.main_content ul:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul:not(.cancel) > li {
  line-height: 1.8;
  margin-bottom: 0.8em;
  margin-bottom: 0.5em;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px), print {
  .main_content ul:not(.cancel) > li {
    padding-left: 1.5em;
  }
}
@media screen and (max-width: 899px) {
  .main_content ul:not(.cancel) > li {
    padding-left: 1.2em;
  }
}
.main_content ul:not(.cancel) > li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0.2em;
  width: 10px;
  height: 10px;
  background-color: #f9934f;
  border-radius: 5px;
}
@media screen and (min-width: 900px), print {
  .main_content ul:not(.cancel) > li::before {
    top: 1.2ex;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 899px) {
  .main_content ul:not(.cancel) > li::before {
    top: 1.5ex;
    width: 7px;
    height: 7px;
    border-radius: 3.5px;
  }
}
.main_content ul.check_list:not(:last-child) {
  margin-bottom: 1em;
}
.main_content ul.check_list > li {
  line-height: 1.8;
  margin-bottom: 0.8em;
  margin-bottom: 0.5em;
  position: relative;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px), print {
  .main_content ul.check_list > li {
    padding-left: 32px;
  }
}
@media screen and (max-width: 899px) {
  .main_content ul.check_list > li {
    padding-left: 32px;
  }
}
.main_content ul.check_list > li::before {
  width: 25px;
  height: 22px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  background: url(/kidscare-mitosai/common/img/icon/check.png) no-repeat center center/cover;
}
@media screen and (min-width: 900px), print {
  .main_content ul.check_list > li::before {
    top: 0.1ex;
  }
}
.main_content ol:not(.cancel) {
  list-style: none;
  counter-reset: num;
}
.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}
.main_content ol:not(.cancel) > li {
  padding-left: 1.5em;
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.8;
  margin-bottom: 0.8em;
}
.main_content ol:not(.cancel) > li::before {
  counter-increment: num;
  content: counter(num) ".";
  color: #f9934f;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -0.5em;
  text-align: right;
  width: 1.5em;
  font-weight: bold;
}
.main_content .anotation {
  position: relative;
  top: 0;
  left: 0;
  padding-left: 1.3em;
  line-height: 1.8;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 899px) {
  .main_content .anotation {
    padding-left: 1.1em;
  }
}
.main_content .anotation::before {
  content: "※";
  width: 1em;
  position: absolute;
  top: 0.04em;
  left: 0;
  color: #e50b3e;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.main_content .content_section {
  margin-bottom: 120px;
}

.center {
  text-align: center;
}

.inline_block {
  display: inline-block;
}

.pdf::after,
.icon_pdf::after {
  display: inline-block;
  content: "";
  width: 16px;
  height: 18px;
  background: url(/kidscare-mitosai/common/img/icon/pdf.png) no-repeat center center/cover;
  margin-left: 0.2em;
  margin-right: 0.2em;
  margin-bottom: -4px;
}

@media screen and (min-width: 900px), print, print {
  #main_content {
    width: calc(100% - 200px);
    margin-left: 200px;
  }
}
@media screen and (max-height: 670px), print {
  #main_content {
    margin: 0 auto;
  }
}
@media screen and (max-width: 899px) {
  #main_content {
    padding-top: 60px;
  }
}

.main_content {
  padding-top: 50px;
}

.open_menu {
  display: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .open_menu {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 105;
  }
  .open_menu span {
    display: block;
    position: relative;
    width: 35px;
    height: 2px;
    background-color: #d85522;
    margin: 0 auto;
  }
  .open_menu span::before, .open_menu span::after {
    content: "";
    display: block;
    position: absolute;
    width: 35px;
    height: 2px;
    left: 0;
    background-color: #d85522;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .open_menu span::before {
    top: -10px;
  }
  .open_menu span::after {
    top: 10px;
  }
  .open_menu._active span {
    background-color: #fff;
  }
  .open_menu._active span::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-perspective: 1000;
            perspective: 1000;
    top: 0;
  }
  .open_menu._active span::after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    -webkit-perspective: 1000;
            perspective: 1000;
    top: 0;
  }
}

.header_container {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
@media screen and (min-width: 900px), print, print {
  .header_container {
    width: 200px;
    height: 100vh;
    border-right: 1px solid #dcdcdc;
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_container {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #dcdcdc;
  }
}

@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_inner {
    background-color: #fff;
    width: 100vw;
    min-height: 100vh;
    /* mobile viewport bug fix */
    min-height: -webkit-fill-available;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 61px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 100;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    pointer-events: none;
  }
  .header_inner._show {
    opacity: 10;
    pointer-events: auto;
  }
}

@media screen and (min-width: 900px), print, print {
  .header {
    padding-top: 25px;
  }
}
.header h1 a {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 900px), print, print {
  .header h1 a {
    width: 100%;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header h1 a {
    width: 180px;
  }
}
.header h1 a:hover {
  opacity: 0.7;
}
.header h1 .logo {
  width: 100%;
}
@media screen and (max-height: 670px) {
  .header h1 .logo {
    margin-top: -25px;
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_top {
    width: 199px;
    margin: 0 auto;
  }
}
.header_top .gnav {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 899px) and (max-height: 480px), screen and (max-height: 670px) and (max-height: 480px) {
  .header_top .gnav ul {
    height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 200px;
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_top .gnav ul li:last-child {
    padding-bottom: 40px;
    /* あまり高さがない時にfooterに被ってメニューの見切れを防ぐために使用 */
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_top .gnav_li {
    margin-bottom: 10px;
  }
}
.header_top .gnav_li a {
  display: block;
  height: 90px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  margin-bottom: 15px;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_top .gnav_li a {
    margin-bottom: 0;
  }
}
.header_top .gnav_li a:hover {
  opacity: 0.7;
}
.header_top .gnav_li img {
  height: 100%;
}
.header_bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_bottom {
    position: fixed;
  }
}
.header .hosp_link {
  border-left: 1px solid #dcdcdc;
  border-top: 1px solid #dcdcdc;
  border-bottom: 1px solid #dcdcdc;
  text-align: center;
}
.header .hosp_link a {
  display: block;
  color: #855c3d;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  padding: 6px 2px 2px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header .hosp_link a:hover {
  color: #fff;
  background-color: #855c3d;
}
.header .hosp_link a::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 18px;
  background: url(/kidscare-mitosai/common/img/ext.png) no-repeat center center/cover;
  margin-bottom: -2px;
  margin-left: 2px;
}
.header_contact {
  background-color: #f9934f;
  width: 100%;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  padding: 6px 5px 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_contact {
    padding: 10px 5px 4px;
  }
}
.header_contact .title {
  color: #f9934f;
  background-color: #fff;
  font-size: 17px;
  border-radius: 14px;
  text-align: center;
  padding: 1px 5px 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 6px;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .header_contact .title {
    font-size: 14px;
    width: 270px;
    margin: 0 auto;
  }
}
.header_contact .num {
  display: block;
}
.header_contact .num img {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 899px) {
  .header_contact .num img {
    width: 270px;
    margin: 0 auto;
  }
}
.header_contact .name {
  line-height: 1.2;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 3px;
}
@media screen and (max-width: 899px) {
  .header_contact .name {
    margin-top: 5px;
  }
}
.header_contact .text {
  font-size: 16px;
  color: #fff;
  text-align: center;
}

.footer {
  position: relative;
  overflow-x: hidden;
  padding-top: 110px;
}
@media screen and (min-width: 900px), print, print {
  .footer {
    width: calc(100% - 200px);
    margin-left: 200px;
  }
}
@media screen and (max-height: 670px), print {
  .footer {
    margin: 0 auto;
  }
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .footer {
    width: 100%;
  }
}
.footer::before {
  content: "";
  display: block;
  width: 100%;
  min-width: 1400px;
  height: 110px;
  background: url(/kidscare-mitosai/common/img/footer/footer_bg.png) no-repeat center center/100% 110px;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .footer::before {
    min-width: 1000px;
  }
}
.footer_h2 {
  margin-bottom: 45px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .footer_h2 {
    max-width: 390px;
    margin-right: auto;
    margin-left: auto;
  }
}
.footer_h2 .en {
  display: block;
  width: 154px;
  margin: 0 auto;
  position: absolute;
  top: -54px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.footer_h2 .en img {
  display: block;
  width: 100%;
}
.footer_h2 .ja {
  display: block;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f59334;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer_h2 .ja {
    font-size: 27px;
  }
}
.footer_h2::before, .footer_h2::after {
  content: "";
  display: block;
  width: 320px;
  height: 126px;
  position: absolute;
  top: -20px;
}
@media screen and (max-width: 1170px) {
  .footer_h2::before, .footer_h2::after {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .footer_h2::before, .footer_h2::after {
    top: -40px;
  }
}
@media screen and (max-width: 600px) {
  .footer_h2::before, .footer_h2::after {
    width: 105px;
    height: 55px;
    top: 22px;
  }
}
.footer_h2::before {
  background: url(/kidscare-mitosai/common/img/footer/star_kazari-left.png) no-repeat center right/contain;
  left: 0;
}
@media screen and (max-width: 600px) {
  .footer_h2::before {
    background-size: cover;
    left: -30px;
    -webkit-transform: scale(-1, 1);
            transform: scale(-1, 1);
  }
}
.footer_h2::after {
  background: url(/kidscare-mitosai/common/img/footer/star_kazari-right.png) no-repeat center left/contain;
  right: 0;
}
@media screen and (max-width: 600px) {
  .footer_h2::after {
    background-size: cover;
    right: -30px;
  }
}
.footer__1 {
  background-color: #fffaea;
  padding-bottom: 95px;
}
@media screen and (max-width: 1280px) {
  .footer__1 {
    padding-bottom: 30px;
  }
}
.footer__2 {
  background-color: #f6f0de;
  padding-top: 35px;
  padding-bottom: 25px;
}
.footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1060px) {
  .footer__wrap {
    display: block;
  }
}
.footer__wrap .left {
  max-width: 522px;
}
@media screen and (max-width: 1060px) {
  .footer__wrap .left {
    margin: 0 auto 80px;
  }
}
@media screen and (max-width: 600px) {
  .footer__wrap .left {
    margin: 0 auto 40px;
  }
}
.footer__wrap .left_map {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.footer__wrap .left_map img {
  width: 100%;
}
.footer__wrap .right {
  width: calc(100% - 550px);
  color: #333333;
  font-size: 16px;
  line-height: 1.9;
}
@media screen and (max-width: 1060px) {
  .footer__wrap .right {
    width: 100%;
  }
}
.footer__wrap .right h3 {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  color: #333333;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: -8px;
}
.footer__wrap .right h4 {
  font-weight: bold;
}
.footer__wrap .right .hosp_info {
  margin-bottom: 25px;
}
.footer__wrap .right .hosp_info .name {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 20px;
  color: #333333;
  font-weight: bold;
}
.footer__wrap .right .hosp_info .num > *::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-bottom: -4px;
}
.footer__wrap .right .hosp_info .num .tel {
  padding-right: 10px;
}
.footer__wrap .right .hosp_info .num .tel::before {
  background: url(/kidscare-mitosai/common/img/footer/icon_tel.png) no-repeat center center/cover;
  margin-left: -5px;
}
.footer__wrap .right .hosp_info .num .tel::after {
  content: "/";
  display: inline-block;
  color: #cbcac9;
  margin-left: 10px;
}
.footer__wrap .right .hosp_info .num .fax::before {
  background: url(/kidscare-mitosai/common/img/footer/icon_fax.png) no-repeat center center/cover;
  margin-right: 5px;
}
.footer__wrap .right .access {
  margin-bottom: 25px;
}
.footer__wrap .right .access h4 {
  position: relative;
}
.footer__wrap .right .access h4::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 25px;
  margin-bottom: -6px;
  margin-right: 5px;
}
.footer__wrap .right .access._bus h4::before {
  background: url(/kidscare-mitosai/common/img/footer/icon_bus.png) no-repeat center center/cover;
}
.footer__wrap .right .access._car h4::before {
  background: url(/kidscare-mitosai/common/img/footer/icon_car.png) no-repeat center center/cover;
}
.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .footer__nav {
    display: block;
    padding-left: 20px;
  }
}
.footer__nav > li {
  padding-right: 30px;
  position: relative;
}
.footer__nav > li:last-of-type {
  padding-right: 30px;
}
.footer__nav > li::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
}
@media screen and (max-width: 899px), screen and (max-height: 670px) {
  .footer__nav > li::after {
    display: none;
  }
}
.footer__nav > li::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  position: absolute;
  left: -18px;
  top: 12px;
}
.footer__nav > li:nth-of-type(1)::before {
  background-color: #f89d9d;
}
.footer__nav > li:nth-of-type(2)::before {
  background-color: #ffc809;
}
.footer__nav > li:nth-of-type(3)::before {
  background-color: #a8e31b;
}
.footer__nav > li:nth-of-type(4)::before {
  background-color: #97bff1;
}
.footer__nav > li:nth-of-type(4)::after {
  background-color: #e8accb;
  position: absolute;
  right: 14px;
  top: 12px;
}
.footer__nav > li a {
  color: #855c3d;
  text-decoration: none;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.footer__nav > li a:hover {
  opacity: 0.7;
}
.footer__copy {
  text-align: center;
  color: #dcc684;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
}

.main_content .category_area {
  width: 100%;
  height: 220px;
  background: url(/kidscare-mitosai/common/img/h2_bg.jpg) no-repeat center center/1000px 220px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 899px) {
  .main_content .category_area {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .main_content .category_area {
    height: 176px;
    background-size: 800px 176px;
  }
}
.main_content .category_area > * {
  min-height: 0%;
}
.main_content h2:not(.cancel),
.main_content .h2 {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f59334;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: 30px;
  }
}
.main_content h3:not(.cancel),
.main_content .h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 55px;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    margin-bottom: 40px;
  }
}
.main_content h3:not(.cancel) span.h3_inner,
.main_content .h3 span.h3_inner {
  display: inline-block;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  color: #855c3d;
  background-color: #ffebc5;
  min-height: 54px;
  position: relative;
  font-size: 26px;
  min-width: 480px;
  padding: 7px 85px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel) span.h3_inner,
  .main_content .h3 span.h3_inner {
    min-width: 100%;
    font-size: 22px;
    padding: 7px 50px 5px;
  }
}
.main_content h3:not(.cancel) span.h3_inner::before,
.main_content .h3 span.h3_inner::before {
  content: "";
  display: block;
  width: 80px;
  height: 150%;
  background: url(/kidscare-mitosai/common/img/h3_kazari.jpg) no-repeat center left/100% 100%;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel) span.h3_inner::before,
  .main_content .h3 span.h3_inner::before {
    width: 48px;
  }
}
.main_content h3:not(.cancel) span.h3_inner::after,
.main_content .h3 span.h3_inner::after {
  content: "";
  display: block;
  width: 80px;
  height: 150%;
  background: url(/kidscare-mitosai/common/img/h3_kazari.jpg) no-repeat center right/100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .main_content h3:not(.cancel) span.h3_inner::after,
  .main_content .h3 span.h3_inner::after {
    width: 48px;
  }
}
.main_content h4:not(.cancel),
.main_content .h4 {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f9934f;
  font-size: 24px;
  display: inline-block;
  border-bottom: 4px dotted #855c3d;
  margin-bottom: 0.5em;
  margin-top: 1em;
}
.main_content h5:not(.cancel),
.main_content .h5 {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #855c3d;
  font-size: 20px;
  display: inline-block;
  margin-bottom: 0.3em;
  margin-top: 0.8em;
}

.hero {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.hero img {
  width: 100%;
}

.index_content {
  padding-top: 77px;
  padding-bottom: 160px;
}
@media screen and (max-width: 1280px) {
  .index_content {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 899px) {
  .index_content {
    padding-top: 30px;
  }
}
.index_content .calendar_wrapper {
  background-color: #f8f8f8;
  padding: 30px 90px 40px;
  max-width: 1000px;
  margin: 0 auto 70px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .index_content .calendar_wrapper {
    padding: 30px;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper {
    margin: 0 10px;
    padding: 30px 0;
  }
}
@media (max-width: 440px) {
  .index_content .calendar_wrapper {
    padding: 30px 0;
  }
}
.index_content .calendar_wrapper h2 {
  overflow: visible;
  margin-bottom: 3.3%;
}
.index_content .calendar_wrapper h2 > .ja {
  font-size: 30px;
  color: #8f7460;
  padding-top: 1.4%;
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper h2 > .ja {
    font-size: 24px;
  }
}
.index_content .calendar_wrapper h2::before {
  width: 280px;
  height: 42px;
  top: 34px;
  background: url(/kidscare-mitosai/common/img/calendar_circle.webp) no-repeat center left/cover;
  right: calc(50% + 138px);
}
.index_content .calendar_wrapper h2::after {
  width: 280px;
  height: 42px;
  top: 34px;
  background: url(/kidscare-mitosai/common/img/calendar_circle.webp) no-repeat center left/cover;
  left: calc(50% + 138px);
}
.index_content .calendar_wrapper .calendar_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 800px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 999px) {
  .index_content .calendar_wrapper .calendar_list {
    max-width: 590px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 350px) {
  .index_content .calendar_wrapper .calendar_list {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
  max-width: 160px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 6% 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 999px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    max-width: 140px;
  }
}
@media (max-width: 620px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    width: 120px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    width: 100px;
  }
}
@media (max-width: 500px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    width: 80px;
  }
}
@media (max-width: 420px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    width: 70px;
  }
}
@media (max-width: 370px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box {
    width: 65px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box._empty {
  background-color: #fcfcfc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box._holiday {
  background-color: #fcfcfc;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box._holiday .date {
  color: #d6cec8;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box._holiday .date .dow {
  color: #dbcec5;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .coming_soon {
  font-size: 17px;
  color: #d6cec8;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: center;
  width: auto;
  margin: 0 auto;
  line-height: 1.7;
  letter-spacing: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .coming_soon {
    font-size: 12px;
    letter-spacing: 0px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date {
  font-size: 30px;
  color: #8f7460;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  text-align: center;
  border-bottom: 2px dotted #dbd7d7;
  width: auto;
  margin: 0 auto;
  padding-bottom: 8%;
}
@media screen and (max-width: 1280px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date {
    font-size: 28px;
  }
}
@media (max-width: 900px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date {
    font-size: 24px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 360px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date .date_inner {
    min-width: 40px;
    margin-right: auto;
    margin-left: auto;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date .dow {
  font-size: 18px;
  color: #c1a997;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  padding-left: 2%;
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date .dow {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .date .dow {
    margin-right: auto;
    margin-left: auto;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label img {
  width: auto;
  height: 40px;
  display: block;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 7%;
}
@media (max-width: 900px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label img {
    height: 30px;
  }
}
@media (max-width: 400px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label img {
    height: 26px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_circle {
  padding-top: 4%;
  text-align: center;
  color: #df6a63;
  line-height: 1;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_circle {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_circle {
    font-size: 10px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_triangle {
  padding-top: 4%;
  text-align: center;
  color: #e2ba1c;
  line-height: 1;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_triangle {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_triangle {
    font-size: 10px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_ng {
  padding-top: 4%;
  text-align: center;
  color: #ae9d90;
  line-height: 1;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_ng {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_ng {
    font-size: 10px;
  }
}
.index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_holiday {
  padding-top: 4%;
  text-align: center;
  line-height: 1;
  color: #c7c0bb;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_holiday {
    font-size: 13px;
  }
}
@media (max-width: 560px) {
  .index_content .calendar_wrapper .calendar_list .calendar_li .date_box .label .date_holiday {
    font-size: 10px;
  }
}
.index_content .calendar_wrapper .point_box {
  margin-top: 25px;
  background-color: rgba(218, 237, 237, 0.6392156863);
  padding: 16px;
  width: 696px;
  font-size: 15px;
  border-radius: 5px;
}
@media (max-width: 999px) {
  .index_content .calendar_wrapper .point_box {
    max-width: 600px;
    width: auto;
    margin-top: 16px;
    padding: 20px;
    margin-right: 4px;
    margin-left: 4px;
  }
}
.index_content h2 {
  display: block;
  position: relative;
  margin: 0 auto 40px;
  overflow: hidden;
  width: calc(100% + 40px);
  margin-left: -20px;
}
.index_content h2::before {
  content: "";
  display: block;
  width: 390px;
  height: 120px;
  background: url(/kidscare-mitosai/common/img/h2_kazari.png) no-repeat center left/cover;
  position: absolute;
  right: calc(50% + 95px);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  top: 0;
}
@media screen and (max-width: 767px) {
  .index_content h2::before {
    width: 280px;
    height: 86px;
    top: 10px;
    right: calc(50% + 70px);
  }
}
.index_content h2::after {
  content: "";
  display: block;
  width: 390px;
  height: 120px;
  background: url(/kidscare-mitosai/common/img/h2_kazari.png) no-repeat center left/cover;
  position: absolute;
  left: calc(50% + 95px);
  top: 0;
}
@media screen and (max-width: 767px) {
  .index_content h2::after {
    width: 280px;
    height: 86px;
    top: 10px;
    left: calc(50% + 70px);
  }
}
.index_content h2 .en {
  display: block;
  width: 146px;
  margin: 0 auto;
}
.index_content h2 .en img {
  width: 100%;
}
.index_content h2 .ja {
  display: block;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f59334;
  font-size: 36px;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .index_content h2 .ja {
    font-size: 27px;
  }
}
.index_content .text_area {
  position: relative;
}
.index_content .text_area p {
  text-align: center;
  color: #333333;
  font-size: 16px;
  line-height: 2.5;
  max-width: 550px;
  position: relative;
  margin: 0 auto;
  z-index: 5;
}
@media screen and (max-width: 899px) {
  .index_content .text_area p {
    text-align: left;
  }
}
.index_content .text_area .illust {
  width: 100%;
  max-width: calc(100% - 80px);
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 4;
}
@media screen and (max-width: 1280px) {
  .index_content .text_area .illust {
    position: relative;
    max-width: 800px;
  }
}
.index_content .text_area .illust img {
  width: 160px;
}
@media screen and (max-width: 899px) {
  .index_content .text_area .illust img {
    width: 140px;
  }
}

ol.h_ol {
  list-style: none;
  counter-reset: num;
  list-style-type: decimal-leading-zero;
}
ol.h_ol > li {
  margin-bottom: 50px;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  ol.h_ol > li {
    padding-left: 0;
  }
}
ol.h_ol > li h4 {
  position: relative;
  padding: 5px 0;
  color: #855c3d;
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  ol.h_ol > li h4 {
    font-size: 22px;
    text-align: center;
  }
}
ol.h_ol > li h4::before {
  display: block;
  content: counter(num, decimal-leading-zero);
  counter-increment: num;
  color: rgb(71, 52, 52);
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 30px;
  width: 65px;
  height: 65px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px), print {
  ol.h_ol > li h4::before {
    padding-top: 7px;
    position: absolute;
    left: -80px;
    top: -5px;
  }
}
@media screen and (max-width: 767px) {
  ol.h_ol > li h4::before {
    width: 45px;
    height: 45px;
    font-size: 26px;
    padding-top: 1px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 4px;
  }
}
ol.h_ol > li h4._pink::before {
  text-shadow: 0px 0px 6.02px rgba(243, 124, 119, 0.48);
  background-image: url(/kidscare-mitosai/common/img/ol_pink.png);
}
ol.h_ol > li h4._yellow::before {
  text-shadow: 0px 0px 6.02px rgba(225, 173, 51, 0.48);
  background-image: url(/kidscare-mitosai/common/img/ol_yellow.png);
}
ol.h_ol > li h4._green::before {
  text-shadow: 0px 0px 6.02px rgba(156, 176, 64, 0.48);
  background-image: url(/kidscare-mitosai/common/img/ol_green.png);
}
ol.h_ol > li h4._lightblue::before {
  text-shadow: 0px 0px 6.02px rgba(66, 174, 192, 0.48);
  background-image: url(/kidscare-mitosai/common/img/ol_lightblue.png);
}
ol.h_ol > li h4._violet::before {
  text-shadow: 0px 0px 6.02px rgba(220, 143, 213, 0.48);
  background-image: url(/kidscare-mitosai/common/img/ol_violet.png);
}

.schedule_area {
  margin-top: 60px;
}
.schedule_area__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  margin-bottom: 20px;
}
.schedule_area__content::before {
  content: "";
  display: block;
  width: 94px;
  height: 94px;
  position: absolute;
  left: 50%;
  top: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .schedule_area__content::before {
    width: 60px;
    height: 60px;
    left: -15px;
    top: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.schedule_area__content:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 5px;
  height: calc(100% - 98px);
  border-right: dotted 5px #ba9a86;
  position: absolute;
  top: 98px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .schedule_area__content:not(:last-of-type)::after {
    left: 6px;
    top: 80px;
    -webkit-transform: none;
            transform: none;
    height: calc(100% - 86px);
  }
}
.schedule_area__content._right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._right .text_area {
    padding-left: 30px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .schedule_area__content._right {
    /* IE11以上 */
    padding-left: 60px;
  }
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._left {
    text-align: right;
  }
  .schedule_area__content._left .text_area {
    padding-right: 30px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .schedule_area__content._left {
    /* IE11以上 */
    padding-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .schedule_area__content._left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.schedule_area__content > * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px), print {
  .schedule_area__content > * {
    width: calc(50% - 48px);
  }
}
.schedule_area__content .text_area {
  min-height: 150px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .text_area {
    width: 100%;
    padding-left: 30px;
  }
}
.schedule_area__content .text_area .time {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f59334;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .text_area .time {
    padding-left: 25px;
    line-height: 1.5;
  }
}
.schedule_area__content .text_area .title {
  font-family: "秀英丸ゴシック B", "DNPShueiMGoStd-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #f59334;
  font-size: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .text_area .title {
    font-size: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .schedule_area__content .text_area .text {
    padding-top: 1em;
    padding-bottom: 1em;
  }
}
.schedule_area__content .illust_area {
  position: relative;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .illust_area {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
.schedule_area__content .illust_area .illust {
  width: 130px;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .illust_area .illust {
    width: 75px;
    right: 0;
  }
}
.schedule_area__content .illust_area .illust._lg {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .schedule_area__content .illust_area .illust._lg {
    width: 115px;
  }
}
.schedule_area__content._0800::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_0800.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._0800 .illust {
    top: 25%;
    right: 30%;
  }
}
.schedule_area__content._1000::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1000.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1000 .illust {
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.schedule_area__content._1200::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1200.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1200 .illust {
    top: -10px;
    right: 20%;
  }
}
.schedule_area__content._1300::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1300.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1300 .illust {
    top: 10%;
    left: 30%;
  }
}
.schedule_area__content._1500::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1500.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1500 .illust {
    top: 10%;
    right: 20%;
  }
}
.schedule_area__content._1530::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1530.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1530 .illust {
    top: 10%;
    left: 30%;
  }
}
.schedule_area__content._1700::before {
  background-image: url(/kidscare-mitosai/common/img/schedule/time_1700.png);
}
@media screen and (min-width: 768px), print {
  .schedule_area__content._1700 .illust {
    top: 10%;
    right: 25%;
  }
}