@charset 'UTF-8';
/* --------------------
 Recruit LP
-------------------- */
html {
    font-size: 62.5%;
}

body {
    color: #000000;
    font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    margin: 0;
}

body.wf-notosansjp {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
}

* {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*:before, *:after {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a {
    color: #000000;
    text-decoration: none;
}

a:hover, a:focus {
    color: #000000;
    text-decoration: none;
}

img {
    max-width: 100%;
    -webkit-user-drag: none;
            user-drag: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
}

button {
    cursor: pointer;
}

p {
    letter-spacing: .05em;
}

/* --------------------
 Utils
-------------------- */
@media (max-width: 479px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1239px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1240px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible {
    visibility: visible;
}

.invisible {
    visibility: hidden;
}

.thin {
    font-weight: 100;
}

.light {
    font-weight: 200;
}

.demilight {
    font-weight: 300;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.xbold {
    font-weight: 900;
}

.underline {
    text-decoration: underline;
}

.serif {
    font-family: 'Noto Serif JP';
}

.marker {
    background: transparent;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(100%, yellow), color-stop(100%, rgba(255, 255, 0, 0)), to(transparent));
    background: -o-linear-gradient(bottom, yellow 100%, rgba(255, 255, 0, 0) 100%, transparent 100%);
    background:    linear-gradient(to top, yellow 100%, rgba(255, 255, 0, 0) 100%, transparent 100%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
            transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
}

.marker.active {
    background-size: 100% 100%;
}

.marker-line {
    background: transparent;
    background: -o-linear-gradient(bottom, yellow 5px, rgba(255, 255, 0, 0) 5px, transparent 100%);
    background:    linear-gradient(to top, yellow 5px, rgba(255, 255, 0, 0) 5px, transparent 100%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
            transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
}

.marker-line.active {
    background-size: 100% 100%;
}

.marker-line--half {
    background: transparent;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, yellow), color-stop(50%, rgba(255, 255, 0, 0)), to(transparent));
    background: -o-linear-gradient(bottom, yellow 50%, rgba(255, 255, 0, 0) 50%, transparent 100%);
    background:    linear-gradient(to top, yellow 50%, rgba(255, 255, 0, 0) 50%, transparent 100%);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 0 100%;
    -webkit-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
            transition: background-size .5s cubic-bezier(.645, .045, .355, 1);
}

.marker-line--half.active {
    background-size: 100% 100%;
}

/* --------------------
 Layout
-------------------- */
.layout {
    -webkit-animation: fadeIn .3s linear .1s;
            animation: fadeIn .3s linear .1s;
    -webkit-animation-fill-mode: backwards;
            animation-fill-mode: backwards;
    opacity: 1;
}

.container {
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .container {
        max-width: 1130px;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* --------------------
 Animation
-------------------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes moveNav {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@keyframes moveNav {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100%);
                transform: translateY(100%);
    }
    1% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
                transform: translateY(0);
    }
}

@-webkit-keyframes toLeftToRight {
    0% {
        right: 0;
    }
    50% {
        right: 30px;
    }
    100% {
        right: 0;
    }
}

@keyframes toLeftToRight {
    0% {
        right: 0;
    }
    50% {
        right: 30px;
    }
    100% {
        right: 0;
    }
}

/* --------------------
 Header
-------------------- */
.header {
    margin: 0;
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .header {
        height: 180px;
        margin-bottom: -30px;
    }
}

.header__deco {
    display: block;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    margin: 0 0 30px;
    padding: 0 15px;
    text-align: center;
    z-index: 0;
}

@media (min-width: 768px) {
    .header__deco {
        background-image: url(../../../kindergarten/lp/images/stocks/deco-stripe-01.svg);
        background-position: top right;
        background-repeat: no-repeat;
        background-size: 355px 177px;
        height: 180px;
        left: 100%;
        margin-bottom: 0;
        opacity: 0;
        padding: 20px 100px 15px 15px;
        position: absolute;
        right: 0;
        top: -5px;
        -webkit-transform: rotate(-10deg);
            -ms-transform: rotate(-10deg);
                transform: rotate(-10deg);
        -webkit-transition: left 2s ease-in-out, top 2s ease-in-out, opacity 2s .3s ease-in-out, -webkit-transform 2s ease-in-out;
             -o-transition: left 2s ease-in-out, top 2s ease-in-out, transform 2s ease-in-out, opacity 2s .3s ease-in-out;
                transition: left 2s ease-in-out, top 2s ease-in-out, opacity 2s .3s ease-in-out, -webkit-transform 2s ease-in-out;
                transition: left 2s ease-in-out, top 2s ease-in-out, transform 2s ease-in-out, opacity 2s .3s ease-in-out;
                transition: left 2s ease-in-out, top 2s ease-in-out, transform 2s ease-in-out, opacity 2s .3s ease-in-out, -webkit-transform 2s ease-in-out;
        width: 355px;
    }
}

.header__deco__title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.header__deco__title .small {
    font-size: 1.4rem;
}

.header__deco__subtitle {
    color: #6fba2c;
    font-size: 1.4rem;
    margin: 0;
}

@media (min-width: 768px) {
    .header__deco.active {
        left: 75%;
        opacity: 1;
        top: 0;
        -webkit-transform: rotate(0);
            -ms-transform: rotate(0);
                transform: rotate(0);
    }
}

@media (min-width: 768px) and (min-width: 768px) {
    .header__deco.active {
        left: 66%;
    }
}

@media (min-width: 768px) and (min-width: 1240px) {
    .header__deco.active {
        left: 80%;
    }
}

.header__logo {
    margin: 0 auto;
    padding: 15px 0 25px;
    width: 300px;
}

@media (min-width: 768px) {
    .header__logo {
        margin-left: 0;
        margin-right: 0;
        padding: 30px 15px 15px;
        width: 450px;
    }
}

@media (min-width: 992px) {
    .header__logo {
        padding-top: 15px;
        width: auto;
    }
}

/* --------------------
 Navigation 
-------------------- */
.nav {
    bottom: -200px;
    left: 0;
    position: fixed;
    right: 0;
    -webkit-transition: bottom .5s linear;
         -o-transition: bottom .5s linear;
            transition: bottom .5s linear;
    z-index: 100;
}

.nav--open {
    position: static !important;
}

.nav-placeholder {
    margin: 0;
}

.nav-container {
    padding: 0;
}

@media (min-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }
}

.nav.fixed {
    bottom: -1px;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 100;
}

.nav.fixed .nav__title__label {
    cursor: pointer;
}

.nav__title {
    background-color: #6fba2c;
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .nav__title {
        background-color: transparent;
        background-image: url(../../../kindergarten/lp/images/stocks/nav-title-bg.svg);
        background-position: left top;
        background-repeat: no-repeat;
        background-size: 355px 68px;
        height: 95px;
        padding: 15px 0 0;
    }
}

.nav__title__label {
    cursor: pointer;
    display: block;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .nav__title__label {
        width: 340px;
    }
}

.nav__title__label__text {
    border-bottom: 1px solid #ffffff;
    display: block;
    padding: 15px 0;
    position: relative;
}

@media (min-width: 768px) {
    .nav__title__label__text {
        display: inline-block;
        padding: 10px 60px 15px;
        width: 90%;
    }
}

@media (min-width: 992px) {
    .nav__title__label__text {
        width: auto;
    }
}

@media (min-width: 768px) {
    .nav__title:after {
        background-color: #6fba2c;
        border-top-right-radius: 15px;
        bottom: 0;
        content: '';
        display: block;
        height: 30px;
        left: 0;
        opacity: 1;
        position: absolute;
        right: 0;
        -webkit-transition: border-radius .2s .3s cubic-bezier(.645, .045, .355, 1);
             -o-transition: border-radius .2s .3s cubic-bezier(.645, .045, .355, 1);
                transition: border-radius .2s .3s cubic-bezier(.645, .045, .355, 1);
        width: auto;
    }
}

.nav__main {
    background-color: #6fba2c;
    padding: 0 30px;
    position: relative;
}

@media (min-width: 768px) {
    .nav__main {
        -webkit-align-items: flex-end;
                align-items: flex-end;
        background-color: #ffffff;
        -webkit-box-align: end;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-box-pack: justify;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: end;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        padding: 20px 15px 50px;
        padding-bottom: 50px;
        padding-top: 20px;
    }
}

@media (min-width: 992px) {
    .nav__main {
        padding-bottom: 50px;
    }
}

@media (min-width: 1240px) {
    .nav__main {
        padding-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .nav__main:after {
        background-color: #6fba2c;
        border-radius: 15px;
        bottom: 0;
        content: '';
        display: block;
        height: 30px;
        left: 0;
        position: absolute;
        right: 0;
        -webkit-transition: opacity .2s .1s cubic-bezier(.645, .045, .355, 1);
             -o-transition: opacity .2s .1s cubic-bezier(.645, .045, .355, 1);
                transition: opacity .2s .1s cubic-bezier(.645, .045, .355, 1);
        width: auto;
    }
}

.nav__main__content {
    display: none;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .nav__main__content {
        display: block;
        margin: 0 auto;
        max-width: 350px;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .nav__main__content {
        margin: 0 auto;
        max-width: 390px;
    }
}

@media (min-width: 1240px) {
    .nav__main__content {
        margin-left: 0;
        max-width: none;
        width: 50%;
    }
}

.nav__main__content__base {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: center;
    height: 100%;
    -webkit-justify-content: center;
            justify-content: center;
    width: 100%;
}

.nav__main__content__illust {
    -webkit-align-items: flex-end;
            align-items: flex-end;
    bottom: 0;
    -webkit-box-align: end;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: end;
    -ms-flex-pack: center;
    height: auto;
    -webkit-justify-content: center;
            justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    -webkit-transition: opacity .15s linear;
         -o-transition: opacity .15s linear;
            transition: opacity .15s linear;
    width: auto;
    z-index: 1;
}

.nav__main__content__illust.active {
    opacity: 1;
}

.nav__main__menu {
    display: block;
    padding: 15px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .nav__main__menu {
        padding: 0 0 0 15px;
        width: 50%;
    }
}

@media (min-width: 992px) {
    .nav__main__menu {
        padding-left: 0;
        padding-top: 0;
    }
}

.nav__main__menu__list {
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .nav__main__menu__list {
        margin-bottom: 8px;
    }
}

@media (min-width: 992px) {
    .nav__main__menu__list {
        margin-bottom: 10px;
    }
}

@media (min-width: 1240px) {
    .nav__main__menu__list {
        margin-bottom: 17px;
    }
}

.nav__main__menu__list__item {
    margin: 0 0 10px;
    padding: 0;
}

@media (min-width: 768px) {
    .nav__main__menu__list__item {
        margin-bottom: 8px;
    }
}

@media (min-width: 992px) {
    .nav__main__menu__list__item {
        margin-bottom: 10px;
    }
}

@media (min-width: 1240px) {
    .nav__main__menu__list__item {
        margin-bottom: 17px;
    }
}

.nav__main__menu__list__item:last-child {
    margin-bottom: 0;
}

.nav__main__menu__list__item__link {
    color: #ffffff;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 0 0 0 30px;
    position: relative;
    -webkit-transition: color .15s cubic-bezier(.645, .045, .355, 1);
         -o-transition: color .15s cubic-bezier(.645, .045, .355, 1);
            transition: color .15s cubic-bezier(.645, .045, .355, 1);
}

@media (min-width: 768px) {
    .nav__main__menu__list__item__link {
        color: #000000;
        font-size: 2.0rem;
        padding-left: 40px;
    }
}

@media (min-width: 992px) {
    .nav__main__menu__list__item__link {
        font-size: 2.1rem;
    }
}

@media (min-width: 1240px) {
    .nav__main__menu__list__item__link {
        font-size: 3.0rem;
    }
}

.nav__main__menu__list__item__link:before {
    background-color: #ffffff;
    border-radius: 5px;
    bottom: 0;
    content: '';
    display: block;
    height: 3px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    -webkit-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
    width: 15px;
}

@media (min-width: 768px) {
    .nav__main__menu__list__item__link:before {
        background-color: #dddddd;
        height: 5px;
        width: 20px;
    }
}

.nav__main__menu__list__item__link__mark {
    background-color: #dddddd;
    border-radius: 12px;
    color: #ffffff;
    display: none;
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0 10px 0 0;
    padding: 8px 10px;
    position: relative;
    -webkit-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
    width: 110px;
}

@media (min-width: 992px) {
    .nav__main__menu__list__item__link__mark {
        display: inline-block;
    }
}

.nav__main__menu__list__item__link__mark:before {
    background-color: #ffffff;
    bottom: 0;
    content: '';
    display: block;
    height: 50px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    width: 1px;
}

.nav__main__menu__list__item__link__mark span:nth-child(1) {
    display: block;
    text-align: left;
}

.nav__main__menu__list__item__link__mark span:nth-child(2) {
    display: block;
    text-align: right;
}

.nav__main__menu__list__item__link span {
    vertical-align: middle;
}

.nav__main__menu__list__item__link .small {
    display: none;
    font-size: 1.4rem;
    margin: 0 0 0 30px;
    vertical-align: middle;
}

@media (min-width: 992px) {
    .nav__main__menu__list__item__link .small {
        display: inline;
    }
}

.nav__main__menu__list__item__link:hover, .nav__main__menu__list__item__link:focus {
    color: #ffffff;
}

@media (min-width: 768px) {
    .nav__main__menu__list__item__link:hover, .nav__main__menu__list__item__link:focus {
        color: #6fba2c;
    }
}

.nav__main__menu__list__item__link:hover:before, .nav__main__menu__list__item__link:focus:before {
    background-color: #6fba2c;
}

.nav__main__menu__list__item__link:hover .nav__main__menu__list__item__link__mark, .nav__main__menu__list__item__link:focus .nav__main__menu__list__item__link__mark {
    background-color: #6fba2c;
}

.nav__main__menu__recruit {
    color: #ffffff;
    display: inline;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    padding: 0 0 0 30px;
    position: relative;
}

@media (min-width: 768px) {
    .nav__main__menu__recruit {
        background-color: #6fba2c;
        border: 2px solid rgba(111, 186, 44, 0);
        border-radius: 12px;
        display: block;
        font-size: 2.0rem;
        margin-left: 0;
        padding: 3px 10px 3px 35px;
        -webkit-transition: background-color .15s cubic-bezier(.645, .045, .355, 1), border-color .15s cubic-bezier(.645, .045, .355, 1), color .15s cubic-bezier(.645, .045, .355, 1);
             -o-transition: background-color .15s cubic-bezier(.645, .045, .355, 1), border-color .15s cubic-bezier(.645, .045, .355, 1), color .15s cubic-bezier(.645, .045, .355, 1);
                transition: background-color .15s cubic-bezier(.645, .045, .355, 1), border-color .15s cubic-bezier(.645, .045, .355, 1), color .15s cubic-bezier(.645, .045, .355, 1);
    }
}

@media (min-width: 992px) {
    .nav__main__menu__recruit {
        padding: 5px 35px;
    }
}

@media (min-width: 1240px) {
    .nav__main__menu__recruit {
        font-size: 3.0rem;
        padding: 7px 35px;
    }
}

@media (min-width: 992px) {
    .nav__main__menu__recruit:after, .nav__main__menu__recruit:before {
        background-position: center;
        background-repeat: no-repeat;
        background-size: 46px 42px;
        bottom: 0;
        content: '';
        display: block;
        height: 46px;
        margin: auto;
        position: absolute;
        right: 35px;
        top: 0;
        -webkit-transition: opacity .15s cubic-bezier(.645, .045, .355, 1);
             -o-transition: opacity .15s cubic-bezier(.645, .045, .355, 1);
                transition: opacity .15s cubic-bezier(.645, .045, .355, 1);
        width: 42px;
    }
    .nav__main__menu__recruit:before {
        background-image: url(../../../kindergarten/lp/images/logos/logo-felice-mark.svg);
        opacity: 1;
    }
    .nav__main__menu__recruit:after {
        background-image: url(../../../kindergarten/lp/images/logos/logo-felice-mark-colored.svg);
        opacity: 0;
    }
}

.nav__main__menu__recruit:before {
    background-color: #ffffff;
    border-radius: 5px;
    bottom: 0;
    content: '';
    display: block;
    height: 3px;
    left: 0;
    margin: auto 0;
    position: absolute;
    top: 0;
    -webkit-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .15s cubic-bezier(.645, .045, .355, 1);
    width: 15px;
}

@media (min-width: 768px) {
    .nav__main__menu__recruit:before {
        display: none;
    }
}

.nav__main__menu__recruit span {
    vertical-align: middle;
}

.nav__main__menu__recruit .small {
    display: none;
}

@media (min-width: 768px) {
    .nav__main__menu__recruit .small {
        display: inline;
        font-size: 1.4rem;
        margin: 0 0 0 15px;
        vertical-align: middle;
    }
}

@media (min-width: 992px) {
    .nav__main__menu__recruit .small {
        font-size: 1.6rem;
        margin-left: 30px;
    }
}

.nav__main__menu__recruit:hover, .nav__main__menu__recruit:focus {
    color: #ffffff;
}

@media (min-width: 768px) {
    .nav__main__menu__recruit:hover, .nav__main__menu__recruit:focus {
        background-color: #ffffff;
        border-color: #6fba2c;
        color: #6fba2c;
    }
    .nav__main__menu__recruit:hover:before, .nav__main__menu__recruit:focus:before {
        opacity: 0;
    }
    .nav__main__menu__recruit:hover:after, .nav__main__menu__recruit:focus:after {
        opacity: 1;
    }
}

.nav__menu {
    -webkit-align-items: center;
            align-items: center;
    background-color: #6fba2c;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: start;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: start;
    height: 110px;
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1), height .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1), height .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1), height .2s cubic-bezier(.645, .045, .355, 1);
}

@media (min-width: 768px) {
    .nav__menu {
        border-radius: 15px;
        border-top-left-radius: 0;
        height: 0;
        margin: 0;
        opacity: 0;
        padding: 0;
    }
}

@media (min-width: 992px) {
    .nav__menu {
        padding-left: 55px;
    }
}

.nav__menu.active {
    height: 0;
    opacity: 0;
}

@media (min-width: 768px) {
    .nav__menu.active {
        height: 75px;
        margin: -13px 0 0;
        opacity: 1;
        padding: 0 15px 15px 15px;
    }
}

.nav__menu__logo {
    display: none;
    margin: 0 50px 0 0;
    width: 200px;
}

@media (min-width: 768px) {
    .nav__menu__logo {
        display: block;
        margin-right: 15px;
        width: 160px;
    }
}

@media (min-width: 992px) {
    .nav__menu__logo {
        margin-left: 45px;
        margin-right: 50px;
        width: 200px;
    }
}

.nav__menu__list {
    background-color: #ffff45;
    -webkit-box-flex: 1;
    display: block;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
    -ms-flex-positive: 1;
    -webkit-flex-shrink: 1;
            flex-shrink: 1;
    height: 100%;
    padding: 5px 0 5px 100px;
    text-align: center;
    -webkit-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
            transition: opacity .2s cubic-bezier(.645, .045, .355, 1);
    vertical-align: middle;
}

@media (min-width: 768px) {
    .nav__menu__list {
        -webkit-align-items: center;
                align-items: center;
        border-radius: 12px;
        -webkit-box-align: center;
        -webkit-box-pack: center;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
                justify-content: center;
        padding: 10px;
        white-space: nowrap;
    }
}

.nav__menu__list:hover, .nav__menu__list:focus {
    opacity: .85;
}

.nav__menu__list:before {
    background-image: url(../../../kindergarten/lp/images/icons/icon-school.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40px 29px;
    bottom: 0;
    content: '';
    display: inline-block;
    height: 29px;
    left: 30px;
    margin: auto;
    position: absolute;
    top: 0;
    vertical-align: middle;
    width: 40px;
}

@media (min-width: 768px) {
    .nav__menu__list:before {
        left: auto;
        margin: 0;
        position: relative;
    }
}

.nav__menu__list:after {
    background-image: url(../../../kindergarten/lp/images/icons/icon-angle-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 15px 30px;
    bottom: 0;
    content: '';
    display: inline-block;
    height: 30px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    vertical-align: middle;
    width: 15px;
}

@media (min-width: 768px) {
    .nav__menu__list:after {
        background-image: url(../../../kindergarten/lp/images/icons/icon-arrow-right.svg);
        background-size: 22px 13px;
        height: 13px;
        margin: 0;
        position: relative;
        right: auto;
        width: 22px;
    }
}

.nav__menu__list__item {
    color: #494949;
    display: block;
    font-size: 1.8rem;
    line-height: 1.2;
    margin: 0;
    padding: 5px 0;
    text-align: left;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .nav__menu__list__item {
        border-right: 1px solid #494949;
        display: inline-block;
        font-size: 1.6rem;
        line-height: 1;
        padding: 0 10px;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .nav__menu__list__item {
        font-size: 2.0rem;
        padding: 0 15px;
    }
}

@media (min-width: 1240px) {
    .nav__menu__list__item {
        font-size: 2.2rem;
    }
}

.nav__menu__list__item:last-child {
    border-right: none;
}

@media (min-width: 768px) {
    .nav.active .nav__title:after {
        border-bottom-right-radius: 15px;
        -webkit-transition: border-radius .2s cubic-bezier(.645, .045, .355, 1);
             -o-transition: border-radius .2s cubic-bezier(.645, .045, .355, 1);
                transition: border-radius .2s cubic-bezier(.645, .045, .355, 1);
    }
}

.nav.active .nav__main:after {
    opacity: 1;
}

/* --------------------
 Burger menu
-------------------- */
.burger {
    bottom: 0;
    cursor: pointer;
    display: block;
    height: 40px;
    left: auto;
    margin-bottom: auto;
    margin-top: auto;
    position: absolute;
    right: 15px;
    top: 5px;
    width: 30px;
    z-index: 100;
}

@media (min-width: 768px) {
    .burger {
        left: 0;
        right: auto;
    }
}

.burger__box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    height: 32px;
    margin: 0;
    position: relative;
    width: 30px;
}

.burger__line, .burger__line:before, .burger__line:after {
    background-color: #ffffff;
    border-radius: 5px;
    height: 5px;
    position: absolute;
    -webkit-transition: background-color .15s linear, -webkit-transform .15s ease;
         -o-transition: transform .15s ease, background-color .15s linear;
            transition: background-color .15s linear, -webkit-transform .15s ease;
            transition: transform .15s ease, background-color .15s linear;
            transition: transform .15s ease, background-color .15s linear, -webkit-transform .15s ease;
    width: 100%;
}

.burger:hover .burger__line, .burger:hover .burger__line:before, .burger:hover .burger__line:after, .burger:focus .burger__line, .burger:focus .burger__line:before, .burger:focus .burger__line:after {
    background-color: #ffffff;
}

.burger__line {
    display: block;
    top: 50%;
    -webkit-transition-duration: .22s;
         -o-transition-duration: .22s;
            transition-duration: .22s;
    -webkit-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
         -o-transition-timing-function: cubic-bezier(.55, .055, .675, .19);
            transition-timing-function: cubic-bezier(.55, .055, .675, .19);
}

.burger__line:before, .burger__line:after {
    content: '';
    display: block;
}

.burger__line:before {
    top: -11px;
    -webkit-transition: top .1s ease-in .25s, opacity .1s ease-in, background-color .15s linear;
         -o-transition: top .1s ease-in .25s, opacity .1s ease-in, background-color .15s linear;
            transition: top .1s ease-in .25s, opacity .1s ease-in, background-color .15s linear;
}

.burger__line:after {
    bottom: -11px;
    -webkit-transition: bottom .1s ease-in .25s, background-color .15s linear, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
         -o-transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), background-color .15s linear;
            transition: bottom .1s ease-in .25s, background-color .15s linear, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
            transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), background-color .15s linear;
            transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55, .055, .675, .19), background-color .15s linear, -webkit-transform .22s cubic-bezier(.55, .055, .675, .19);
}

.burger.active .burger__line, .burger.active .burger__line:before, .burger.active .burger__line:after {
    background-color: #ffffff;
}

.burger.active .burger__line {
    -webkit-transform: rotate(225deg);
        -ms-transform: rotate(225deg);
            transform: rotate(225deg);
    -webkit-transition-delay: .12s;
         -o-transition-delay: .12s;
            transition-delay: .12s;
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
         -o-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
            transition-timing-function: cubic-bezier(.215, .61, .355, 1);
}

.burger.active .burger__line:before {
    opacity: 0;
    top: 0;
    -webkit-transition: top .1s ease-out, opacity .1s ease-out .12s;
         -o-transition: top .1s ease-out, opacity .1s ease-out .12s;
            transition: top .1s ease-out, opacity .1s ease-out .12s;
}

.burger.active .burger__line:after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
         -o-transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
            transition: bottom .1s ease-out, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
            transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
            transition: bottom .1s ease-out, transform .22s cubic-bezier(.215, .61, .355, 1) .12s, -webkit-transform .22s cubic-bezier(.215, .61, .355, 1) .12s;
}

/* --------------------
 Content
-------------------- */
/* Hero
-------------------- */
.hero {
    margin: 0;
}

.hero-container {
    position: relative;
}

.hero__message {
    background-color: #ffffff;
    display: block;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-weight: 700;
    letter-spacing: .12em;
    line-height: 1.4;
    margin: auto auto 30px;
    padding: 0 0 30px;
    position: relative;
    z-index: 11;
}

.hero__message:after {
    border-bottom: 2px solid #6fba2c;
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 60%;
}

@media (min-width: 768px) {
    .hero__message:after {
        display: none;
    }
}

@media (min-width: 768px) {
    .hero__message {
        bottom: 30px;
        left: 0;
        margin: 0;
        padding: 25px 20px;
        position: absolute;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__message {
        padding: 30px 30px 30px 20px;
        width: 590px;
    }
}

.hero__message .small {
    display: block;
    font-size: 1.4rem;
    margin: 0 auto;
    width: 300px;
}

@media (min-width: 768px) {
    .hero__message .small {
        font-size: 1.8rem;
        margin: 0 0 3px;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__message .small {
        font-size: 2.3rem;
    }
}

.hero__message__1st {
    display: block;
    font-size: 3.0rem;
    line-height: 1.4;
    margin: 0 auto;
    width: 300px;
}

@media (min-width: 768px) {
    .hero__message__1st {
        font-size: 3.6rem;
        margin: 0;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__message__1st {
        font-size: 4.8rem;
    }
}

.hero__message__2nd {
    display: block;
    font-size: 3.0rem;
    line-height: 1.4;
    margin: 0 auto 15px;
    width: 300px;
}

@media (min-width: 768px) {
    .hero__message__2nd {
        font-size: 3.6rem;
        margin: 0 0 20px 2em;
        width: auto;
    }
}

@media (min-width: 992px) {
    .hero__message__2nd {
        font-size: 4.8rem;
    }
}

.hero__message__en {
    display: block;
    font-size: .8rem;
    text-align: center;
}

@media (min-width: 480px) {
    .hero__message__en {
        font-size: 1.0rem;
    }
}

@media (min-width: 768px) {
    .hero__message__en {
        font-size: 1.4rem;
        text-align: left;
    }
}

.hero__message__en .colored {
    color: #6fba2c;
}

.hero__item {
    margin: 0 0 30px;
    padding: 0 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .hero__item {
        left: 0;
        position: absolute;
        right: 0;
        text-align: left;
        top: 100%;
        z-index: 1;
    }
}

@media (min-width: 992px) {
    .hero__item {
        padding-top: 0;
        top: 520px;
    }
}

.hero__item__title__text {
    background-color: #6fba2c;
    border-radius: 12px;
    color: #ffffff;
    display: block;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 10px 5px;
}

@media (min-width: 768px) {
    .hero__item__title__text {
        display: inline-block;
        font-size: 2.4rem;
        padding: 10px 30px;
    }
}

.hero__item__desc {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
}

@media (min-width: 375px) {
    .hero__item__desc {
        font-size: 1.8rem;
    }
}

@media (min-width: 768px) {
    .hero__item__desc {
        font-size: 3.2rem;
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    .hero__item__desc {
        font-size: 4.8rem;
    }
}

.hero__item__note {
    font-size: 1.4rem;
    margin: 0;
}

@media (min-width: 768px) {
    .hero__item__note {
        font-size: 2.0rem;
        margin-bottom: 35px;
        margin-left: 30px;
    }
}

@media (min-width: 992px) {
    .hero__item__note {
        font-size: 2.2rem;
    }
}

.hero__slider {
    background-image: url(../../../kindergarten/lp/images/stocks/deco-stripe-circle.svg);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: 352px 352px;
    position: relative;
}

@media (min-width: 768px) {
    .hero__slider {
        background: none;
    }
}

@media (min-width: 768px) {
    .hero__slider:before {
        background-image: url(../../../kindergarten/lp/images/stocks/hero-deco.svg);
        background-position: left 110px;
        background-repeat: no-repeat;
        background-size: 653px 148px;
        bottom: 0;
        content: '';
        display: block;
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 10;
    }
}

.hero__slider__item {
    padding: 0 0 0 30px;
    text-align: right;
}

.hero__slider__item:focus {
    outline: none;
}

.hero__slider__item img {
    margin: 0 0 0 auto;
}

.main {
    overflow: hidden;
    padding: 30px 0 0;
    position: relative;
}

.main__deco {
    background-image: url(../../../kindergarten/lp/images/stocks/deco-stripe-02.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 610px 305px;
    display: none;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    height: 305px;
    left: 75%;
    padding: 20px 100px 15px 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 610px;
    z-index: 0;
}

@media (min-width: 768px) {
    .main__deco {
        display: block;
    }
}

@media (min-width: 1240px) {
    .main__deco {
        left: 80%;
    }
}

/* Pickup
-------------------- */
.pickup {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-weight: 700;
    margin: 0 0 50px;
    padding: 0 15px 30px;
    position: relative;
}

@media (min-width: 768px) {
    .pickup {
        margin: 0 0 0 auto;
        padding-top: 400px;
        width: 580px;
    }
}

.pickup:before {
    background-color: #a3a3a3;
    content: '';
    display: none;
    height: 1px;
    left: -130px;
    position: absolute;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    width: 150px;
}

@media (min-width: 768px) {
    .pickup:before {
        display: block;
    }
}

.pickup__title {
    text-align: center;
}

@media (min-width: 768px) {
    .pickup__title {
        text-align: left;
    }
}

.pickup__title__text {
    background-color: #6fba2c;
    border-radius: 12px;
    color: #ffffff;
    display: block;
    font-size: 1.5rem;
    line-height: 1.2;
    padding: 10px 30px;
}

@media (min-width: 768px) {
    .pickup__title__text {
        font-size: 2.8rem;
        padding-left: 40px;
    }
}

.pickup__content {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 -17px 0;
    text-align: left;
}

@media (min-width: 768px) {
    .pickup__content {
        font-size: 2.4rem;
        margin-left: 30px;
    }
}

.pickup__content__1st {
    display: block;
    letter-spacing: .03em;
    margin: 0 0 3px -.75em;
}

.pickup__content__2nd {
    display: block;
    letter-spacing: .48em;
    margin: 0 0 0 .5em;
}

.pickup__recruit {
    font-size: 2.3rem;
    letter-spacing: .25em;
    line-height: 1.2;
    margin: 0 0 0 .25em;
}

@media (min-width: 768px) {
    .pickup__recruit {
        font-size: 3.2rem;
        letter-spacing: .35em;
        margin-left: .35em;
        padding-left: 30px;
    }
}

.pickup__recruit span {
    vertical-align: baseline;
}

.pickup__recruit__num {
    font-size: 5.0rem;
    position: relative;
}

@media (min-width: 768px) {
    .pickup__recruit__num {
        font-size: 6.0rem;
        top: 5px;
    }
}

.pickup__recruit__num:after {
    background-image: url(../../../kindergarten/lp/images/stocks/circle-yellow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 80px 80px;
    content: '';
    display: block;
    height: 80px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 80px;
    z-index: -1;
}

@media (min-width: 768px) {
    .pickup__recruit__num:after {
        background-size: 120px 120px;
        height: 120px;
        margin-left: -5px;
        top: 50%;
        width: 120px;
    }
}

/* Article
-------------------- */
.article {
    margin: 0;
    position: relative;
    visibility: hidden;
    z-index: 0;
}

.article.active {
    visibility: visible;
}

.article-container {
    position: relative;
}

.article__item {
    margin: 0;
    position: relative;
}

.article__item:after {
    background-color: #6fba2c;
    border-radius: 15px;
    content: '';
    display: block;
    height: 15px;
    left: 15px;
    margin: 0 0 0 auto;
    opacity: 1;
    position: absolute;
    right: 15px;
    top: 0;
    width: auto;
}

@media (min-width: 992px) {
    .article__item:after {
        left: auto;
        margin: 0;
        width: 49%;
    }
}

.article__item:first-child:after {
    display: none;
}

.article__item:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .article__item {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -webkit-box-pack: justify;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: stretch;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        margin-bottom: 0;
    }
}

.article__item__main {
    padding: 0 15px 70px;
}

@media (min-width: 992px) {
    .article__item__main {
        margin: 0 0 0 auto;
        min-height: 110vh;
        padding: 10px 80px 100px 40px;
        width: 50%;
    }
}

.article__item__main__entitle {
    margin: 0 0 15px;
    padding: 50px 0 0;
    text-align: center;
}

@media (min-width: 992px) {
    .article__item__main__entitle {
        padding-top: 50px;
    }
}

.article__item__main__title {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-weight: 700;
    margin: 0 0 25px;
    text-align: center;
}

.article__item__main__title > span {
    display: block;
}

@media (min-width: 992px) {
    .article__item__main__title {
        margin-bottom: 15px;
    }
}

.article__item__main__title__text {
    font-size: 3.6rem;
}

.article__item__main__title__text > span {
    display: inline-block;
}

.article__item__main__title .small {
    font-size: 1.8rem;
}

.article__item__main__lead {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 992px) {
    .article__item__main__lead {
        font-size: 2.3rem;
    }
}

.article__item__main__photo {
    height: auto;
    margin: 0;
    padding-top: 109.375%;
    position: relative;
}

@media (max-width: 991px) {
    .article__item__main__photo {
        height: auto !important;
    }
}

@media (min-width: 992px) {
    .article__item__main__photo {
        bottom: 0;
        height: auto;
        left: 0;
        margin: 0;
        padding-top: 0;
        position: fixed;
        top: 0;
        width: 50%;
        z-index: 0;
    }
}

.article__item__main__photo__item {
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    display: none;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.article__item__main__photo__item:first-child {
    display: block;
}

@media (min-width: 992px) {
    .article__item__main__photo__item {
        background-position: bottom center;
        display: block;
        height: auto;
        opacity: 0;
        right: 40px;
        -webkit-transition: opacity .5s cubic-bezier(.645, .045, .355, 1);
             -o-transition: opacity .5s cubic-bezier(.645, .045, .355, 1);
                transition: opacity .5s cubic-bezier(.645, .045, .355, 1);
    }
}

.article__item__main__photo__item.active {
    opacity: 1;
}

.article__item__main__photo__item--01-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-01-01.jpg);
}

.article__item__main__photo__item--02-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-02-01.jpg);
}

.article__item__main__photo__item--03-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-03-01.jpg);
}

.article__item__main__photo__item--03-02 {
    background-image: url(../../../kindergarten/lp/images/articles/article-03-02.jpg);
}

.article__item__main__photo__item--04-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-04-01.jpg);
}

.article__item__main__photo__item--04-02 {
    background-image: url(../../../kindergarten/lp/images/articles/article-04-02.jpg);
}

.article__item__main__photo__item--05-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-05-01.jpg);
}

.article__item__main__photo__item--05-02 {
    background-image: url(../../../kindergarten/lp/images/articles/article-05-02.jpg);
}

.article__item__main__photo__item--06-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-06-01.jpg);
}

.article__item__main__photo__item--06-02 {
    background-image: url(../../../kindergarten/lp/images/articles/article-06-02.jpg);
}

.article__item__main__photo__item--07-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-07-01.jpg);
}

.article__item__main__photo__item--08-01 {
    background-image: url(../../../kindergarten/lp/images/articles/article-08-01.jpg);
}

.article__item__main__photo--clone {
    margin: 50px 0 0;
}

@media (min-width: 992px) {
    .article__item__main__photo--clone {
        display: none;
    }
}

.article__item__main__thumb {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-pack: center;
    -ms-flex-align: start;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    margin: -80px auto 30px;
    padding: 0;
    position: relative;
    text-align: center;
}

@media (max-width: 991px) {
    .article__item__main__thumb:after {
        background-color: #ffffff;
        border-radius: 50%;
        content: '';
        display: block;
        height: 250px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: -12.5%;
        -webkit-transform: translateY(-30px);
            -ms-transform: translateY(-30px);
                transform: translateY(-30px);
        width: 250px;
    }
    .article__item__main__thumb img {
        max-width: 180px;
        position: relative;
        z-index: 1;
    }
}

@media (min-width: 992px) {
    .article__item__main__thumb {
        background-color: transparent;
        border-radius: 0;
        display: block;
        height: auto;
        margin-bottom: 50px;
        margin-top: 0;
        padding: 0;
        width: auto;
    }
}

.article__item__main__thumb + * {
    position: relative;
    z-index: 1;
}

.article__item__main__voice {
    margin: 0 0 50px;
    text-align: center;
}

.article__item__main__voice__name {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 992px) {
    .article__item__main__voice__name {
        font-size: 3.6rem;
    }
}

.article__item__main__voice__history {
    font-size: 1.8rem;
    margin: 0 0 5px;
}

@media (min-width: 992px) {
    .article__item__main__voice__history {
        font-size: 2.3rem;
    }
}

.article__item__main__voice__desc {
    font-size: 1.4rem;
    margin: 0;
}

@media (min-width: 992px) {
    .article__item__main__voice__desc {
        font-size: 1.6rem;
    }
}

.article__item__main__list__item {
    margin: 0 0 50px;
}

.article__item__main__list__item:last-of-type {
    margin-bottom: 0;
}

.article__item__main__list__item__subtitle {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
}

@media (min-width: 992px) {
    .article__item__main__list__item__subtitle {
        font-size: 2.3rem;
        text-align: left;
    }
}

.article__item__main__list__item__subtitle span {
    display: inline-block;
    position: relative;
}

.article__item__main__list__item__subtitle span:after {
    border-bottom: 7px solid #ffff00;
    bottom: 5px;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    -webkit-transition: width .5s .5s cubic-bezier(.645, .045, .355, 1);
         -o-transition: width .5s .5s cubic-bezier(.645, .045, .355, 1);
            transition: width .5s .5s cubic-bezier(.645, .045, .355, 1);
    width: 0;
    z-index: -1;
}

@media (min-width: 992px) {
    .article__item__main__list__item__subtitle span:after {
        border-bottom: 13px solid #ffff00;
    }
}

.article__item__main__list__item__subtitle.active span:after {
    width: 100%;
}

.article__item__main__list__item__content {
    margin: 0;
}

.article__item__main__list__item__content:last-child {
    margin-bottom: 0;
}

.article__item__main__list__item__content__desc {
    font-size: 1.6rem;
    margin: 0 0 20px;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media (min-width: 768px) {
    .article__item__main__list__item__content__desc {
        font-size: 1.8rem;
    }
}

.article__item__main__list__item__content__desc:last-of-type {
    margin-bottom: 0;
}

.article__item__main__flow {
    margin: 30px 0 0;
}

@media (min-width: 992px) {
    .article__item__main__flow {
        margin-top: 0;
    }
}

.article__item__main__flow__item {
    margin: 0 0 50px;
    position: relative;
}

.article__item__main__flow__item:after {
    border-bottom: none;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #6fba2c;
    bottom: -50px;
    content: '';
    display: block;
    height: 50px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 30px;
}

.article__item__main__flow__item:last-child:after {
    display: none;
}

.article__item__main__flow__item__title {
    background-color: #6fba2c;
    border-radius: 12px;
    color: #ffffff;
    display: block;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 12px 10px 10px;
    text-align: center;
}

@media (min-width: 992px) {
    .article__item__main__flow__item__title {
        font-size: 3.0rem;
        padding: 17px 30px 15px;
    }
}

.article__item__main__flow__item__title--box {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.article__item__main__flow__item__content {
    background-color: #cde2aa;
    border: 5px solid #6fba2c;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-top: none;
    margin: 0;
    padding: 15px;
    text-align: center;
}

.article__item__main__flow__item__content__desc {
    font-size: 1.2rem;
    margin: 0 0 15px;
}

.article__item__main__flow__item__content__sch {
    border-top: 6px solid #ffff45;
    margin: auto;
    max-width: 320px;
    padding: 15px 0 0;
    width: 100%;
}

.article__item__main__flow__item__content__sch__title {
    color: #6fba2c;
    display: block;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 15px;
}

.article__item__main__flow__item__content__sch__item {
    background-color: #ffffff;
    border-radius: 15px;
    color: #000000;
    font-size: 1.5rem;
    margin: 0 0 15px;
    padding: 3px 15px;
    text-align: center;
}

@media (min-width: 992px) {
    .article__item:first-child .article__item__main__photo {
        position: absolute;
    }
    .article__item:first-child .article__item__main__photo.active {
        position: fixed;
    }
    .article__item:first-child .article__item__main__photo__item {
        opacity: 1;
    }
    .article__item:first-child .article__item__main__photo__item.active {
        position: absolute;
    }
}

/* Overview
-------------------- */
.overview {
    overflow: hidden;
    padding: 15px 0 0;
    position: relative;
    z-index: 1;
}

.overview-container {
    margin: auto;
    max-width: 970px;
    padding-left: 15px;
    padding-right: 15px;
}

.overview__deco {
    background-image: url(../../../kindergarten/lp/images/stocks/deco-stripe-02.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 610px 305px;
    display: none;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    height: 305px;
    left: 100%;
    opacity: 0;
    padding: 20px 100px 15px 15px;
    position: absolute;
    right: 0;
    text-align: center;
    top: -5px;
    -webkit-transition: left 1s ease-in-out, top 1s ease-in-out, opacity .5s ease-in-out;
         -o-transition: left 1s ease-in-out, top 1s ease-in-out, opacity .5s ease-in-out;
            transition: left 1s ease-in-out, top 1s ease-in-out, opacity .5s ease-in-out;
    width: 610px;
    z-index: -1;
}

@media (min-width: 768px) {
    .overview__deco {
        display: block;
    }
}

.overview__deco-wrapper {
    z-index: -1;
}

.overview__deco.active {
    left: 75%;
    opacity: 1;
    top: 0;
}

@media (min-width: 1240px) {
    .overview__deco.active {
        left: 80%;
    }
}

.overview__logo {
    margin: 0 auto 30px;
    text-align: center;
    width: 280px;
}

@media (min-width: 768px) {
    .overview__logo {
        width: auto;
    }
}

.overview__title {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

@media (min-width: 768px) {
    .overview__title {
        font-size: 4.8rem;
    }
}

.overview__subtitle {
    color: #6fba2c;
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 50px;
    text-align: center;
}

.overview__lead {
    font-size: 1.4rem;
    margin: 0 0 50px;
    text-align: center;
}

@media (min-width: 768px) {
    .overview__lead {
        font-size: 1.8rem;
    }
}

.overview__item {
    margin: 0 0 70px;
}

.overview__item__title {
    color: #6fba2c;
    font-size: 2.0rem;
    letter-spacing: .05em;
    line-height: 1.4;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .overview__item__title {
        font-size: 2.8rem;
    }
}

.overview__item__title--left {
    text-align: left;
}

.overview__item__table {
    border: 3px solid #6fba2c;
    border-collapse: separate;
    border-radius: 15px;
    border-spacing: 0;
    margin: auto;
    overflow: hidden;
    width: 100%;
}

.overview__item__table-wrapper {
    margin: auto auto 30px;
}

.overview__item__table > thead > tr > th, .overview__item__table > tbody > tr > th {
    background-color: #6fba2c;
    border-bottom: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 20px 15px;
    text-align: center;
    width: 100px;
}

@media (max-width: 767px) {
    .overview__item__table > thead > tr > th, .overview__item__table > tbody > tr > th {
        border-right: none;
        display: block;
        padding-bottom: 10px;
        padding-top: 10px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .overview__item__table > thead > tr > th, .overview__item__table > tbody > tr > th {
        font-size: 1.8rem;
        padding: 40px 30px;
        width: 200px;
    }
}

.overview__item__table > thead > tr > th:last-child, .overview__item__table > tbody > tr > th:last-child {
    border-right: none;
}

.overview__item__table > thead > tr > td, .overview__item__table > tbody > tr > td {
    border-bottom: 1px solid #6fba2c;
    border-right: 1px solid #6fba2c;
    font-size: 1.4rem;
    padding: 20px 15px;
}

@media (max-width: 767px) {
    .overview__item__table > thead > tr > td, .overview__item__table > tbody > tr > td {
        display: block;
        padding-bottom: 10px;
        padding-top: 10px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .overview__item__table > thead > tr > td, .overview__item__table > tbody > tr > td {
        font-size: 1.8rem;
        padding: 20px 30px;
    }
}

.overview__item__table > thead > tr > td:last-child, .overview__item__table > tbody > tr > td:last-child {
    border-right: none;
}

.overview__item__table > thead > tr > th.nowrap, .overview__item__table > thead > tr > td.nowrap, .overview__item__table > tbody > tr > th.nowrap, .overview__item__table > tbody > tr > td.nowrap {
    white-space: nowrap;
}

.overview__item__table > thead > tr > th.noborder-bottom, .overview__item__table > thead > tr > td.noborder-bottom, .overview__item__table > tbody > tr > th.noborder-bottom, .overview__item__table > tbody > tr > td.noborder-bottom {
    border-bottom: none;
}

.overview__item__table > thead > tr:last-child > td, .overview__item__table > thead > tr:last-child > th, .overview__item__table > tbody > tr:last-child > td, .overview__item__table > tbody > tr:last-child > th {
    border-bottom: none;
}

.overview__item__table > thead > tr.colored > td, .overview__item__table > tbody > tr.colored > td {
    background-color: #f9f9f9;
}

.overview__item__table--striped > thead > tr:nth-child(odd) > td, .overview__item__table--striped > tbody > tr:nth-child(odd) > td {
    background-color: #f9f9f9;
}

.overview__item__table table {
    border: 1px solid #000000;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 20px 0;
    width: auto;
}

.overview__item__table table > tbody tr > td, .overview__item__table table > tbody tr > th, .overview__item__table table > thead tr > td, .overview__item__table table > thead tr > th {
    border-bottom: 1px solid #000000;
    border-right: 1px solid #000000;
    font-weight: 400;
    padding: 5px 10px;
}

.overview__item__table table > tbody tr > td:last-child, .overview__item__table table > tbody tr > th:last-child, .overview__item__table table > thead tr > td:last-child, .overview__item__table table > thead tr > th:last-child {
    border-right: none;
}

.overview__item__table + .overview__item__table__lead {
    margin-top: 50px;
}

.overview__item__main {
    border-bottom: 7px solid #6fba2c;
    margin: 0 0 30px;
    padding: 0 0 100px;
}

.overview__item__main:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0 0 100px;
}

@media (min-width: 768px) {
    .overview__item__main:last-of-type {
        padding-bottom: 200px;
    }
}

.overview__item__main__item {
    margin: 0 0 75px;
}

.overview__item__main__item:last-child {
    margin-bottom: 0;
}

.overview__item__main__item--pickup {
    margin-bottom: 45px;
    padding-top: 30px;
    position: relative;
}

.overview__item__main__item--pickup:before {
    border-left: 30px solid #ffff45;
    bottom: 0;
    content: '';
    display: block;
    left: -30px;
    position: absolute;
    top: 0;
}

.overview__item__main__item__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0 0 5px;
}

@media (min-width: 768px) {
    .overview__item__main__item__title {
        font-size: 2.0rem;
    }
}

.overview__item__main__item__desc {
    font-size: 1.6rem;
    margin: 0 0 15px;
    padding: 0 0 0 1.5em;
}

@media (min-width: 768px) {
    .overview__item__main__item__desc {
        font-size: 1.8rem;
    }
}

.overview__item__main__item__desc a {
    color: #6fba2c;
}

.overview__item__main__item__desc a:focus, .overview__item__main__item__desc a:hover {
    color: #6fba2c;
    text-decoration: underline;
}
