html {
    font-size: 62.5%;
}

body {
    color: #333333;
    color: rgba(51, 51, 51, 1);
    font-family: 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.42;
    margin: 0;
}

* {
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
}

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

img {
    max-width: 100%;
	height: auto !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
}

/* --------------------
 Layout
-------------------- */

.layout {
    overflow: hidden;
    padding-top: 72px;
}

@media (min-width: 640px) {
    .layout {
        padding-top: 162px;
    }
}

@media (min-width: 768px) {
    .layout {
        padding-top: 202px;
    }
}

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

.layout.layout--colored {
    background-color: #ece8db;
    background-color: rgba(236, 232, 219, 1);
}

.layout.layout--grey {
    background-color: #f2f3f3;
    background-color: rgba(242, 243, 243, 1);
}

.container {
    margin: auto;
    overflow: hidden;
    width: 90%;
}

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

.container.container--white {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
}

.container.container--expand {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 640px) {
    .container.container--expand {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.container.container--expand .school {
    margin-left: -15px;
    margin-right: -15px;
}

@media (min-width: 640px) {
    .container.container--expand .school {
        margin-left: -30px;
        margin-right: -30px;
    }
}

/* --------------------
 Utils
-------------------- */

.hidden {
    display: none;
}

@media (max-width: 639px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 640px) 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) {
    .hidden-md {
        display: none !important;
    }
}

.visible-xxs, .visible-xs, .visible-sm, .visible-md, .visible-lg {
    display: none !important;
}

.visible-xxs-block, .visible-xxs-inline, .visible-xxs-inline-block, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 639px) {
    .visible-xxs {
        display: block !important;
    }

    .visible-xxs-block {
        display: block !important;
    }

    .visible-xxs-inline {
        display: inline !important;
    }

    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 640px) and (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

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

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) {
    .visible-md {
        display: block !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

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

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

.xsmall {
    font-size: 80%;
}

.small {
    font-size: 90%;
}

.large {
    font-size: 110%;
}

.bold {
    font-weight: 700;
}

/* --------------------
 Button
-------------------- */

.button {
    background-color: #803541;
    background-color: rgba(128, 53, 65, 1);
    border: none;
    border-radius: 0;
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-size: 1.2rem;
    height: 30px;
    line-height: 30px;
    margin: auto;
    padding: 0 40px;
    text-align: center;
    transition: opacity .2s linear;
    vertical-align: middle;
    width: auto;
}

.button:hover {
    opacity: .75;
}

@media (min-width: 768px) {
    .button {
        font-size: 15px;
        font-size: 1.5rem;
        height: 40px;
        line-height: 40px;
        padding-left: 60px;
        padding-right: 60px;
    }
}

.button.button--fat {
    height: 40px;
    line-height: 40px;
}

@media (min-width: 768px) {
    .button.button--fat {
        height: 60px;
        line-height: 60px;
    }
}

.button__label {
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 200;
    line-height: 1;
}

.button__label img {
    max-height: 13px;
    max-height: 1.3rem;
    max-width: none;
}

@media (min-width: 425px) {
    .button__label img {
        font-size: 15px;
        font-size: 1.5rem;
        max-height: none;
        max-width: 100%;
    }
}

.button__label.button__label--angle-right {
    padding-right: 14px;
    position: relative;
}

.button__label.button__label--angle-right:after {
    background-image: url(../images/icons/angle-right-white.png);
    background-repeat: no-repeat;
    background-size: 8px auto;
    bottom: 0;
    content: '';
    display: block;
    height: 8px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 3px;
    width: 8px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .button__label.button__label--angle-right:after {
        background-image: url(../images/icons/angle-right-white@2x.png);
    }
}

.button__label.button__label--angle-down {
    padding-right: 14px;
    position: relative;
}

.button__label.button__label--angle-down:after {
    background-image: url(../images/icons/angle-down-white.png);
    background-repeat: no-repeat;
    background-size: 7px auto;
    bottom: 0;
    content: '';
    display: block;
    height: 7px;
    margin: auto;
    position: absolute;
    right: 0;
    top: 3px;
    width: 7px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .button__label.button__label--angle-down:after {
        background-image: url(../images/icons/angle-down-white@2x.png);
    }
}

/* --------------------
 Navigation
-------------------- */

.nav {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    left: 0;
    margin: auto;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 100;
}

@media (min-width: 640px) {
    .nav {
        padding-bottom: 20px;
        padding-top: 30px;
    }
}

.nav__brand {
    display: inline-block;
    height: 42px;
    margin-bottom: 15px;
    margin-top: 15px;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .nav__brand {
        margin-bottom: 20px;
        margin-top: 0;
        padding: 0;
    }
}

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

@media (min-width: 640px) {
    .nav__container {
        padding: 0 20px;
    }
}

.nav__menu {
    display: none;
    margin: auto;
    max-width: 1016px;
    padding: 0;
    width: 100%;
}

@media (max-width: 639px) {
    .nav__menu {
        background-color: #ffffff;
        background-color: rgba(255, 255, 255, .88);
        height: 100%;
        overflow-y: auto;
        position: fixed;
        top: 72px;
    }
}

@media (min-width: 640px) {
    .nav__menu {
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-pack: justify;
        height: 50px;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .nav__menu {
        height: 90px;
    }
}

.nav__menu__item {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

@media (min-width: 640px) {
    .nav__menu__item {
        flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        flex-shrink: 1;
        height: 100%;
        width: auto;
    }
}

@media (min-width: 768px) {
    .nav__menu__item {
        width: 100%;
    }
}

.nav__menu__item:after {
    background: #000000;
    background: rgba(0, 0, 0, .2);
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    position: absolute;
    right: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .nav__menu__item:after {
        background: linear-gradient(to bottom, #ffffff 0%, #c4c5c5 54.41%, #ffffff 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(196, 197, 197, 1) 54.41%, rgba(255, 255, 255, 1) 100%);
        height: 100%;
        top: 0;
        width: 1px;
    }
}

.nav__menu__item:first-child:before {
    background: #000000;
    background: rgba(0, 0, 0, .2);
    bottom: 0;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

@media (min-width: 640px) {
    .nav__menu__item:first-child:before {
        background: linear-gradient(to bottom, #ffffff 0%, #c4c5c5 54.41%, #ffffff 100%);
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(196, 197, 197, 1) 54.41%, rgba(255, 255, 255, 1) 100%);
        height: 100%;
        width: 1px;
    }
}

.nav__menu__item.nav__menu__item--brand {
    box-sizing: content-box;
    flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-positive: 0;
    flex-shrink: 0;
    padding-left: 25px;
    padding-right: 25px;
    width: 242px;
}

@media (max-width: 991px) {
    .nav__menu__item.nav__menu__item--brand {
        display: none;
    }
}

.nav__menu__item__link {
    display: block;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    transition: opacity .2s linear;
    width: 100%;
}

@media (min-width: 640px) {
    .nav__menu__item__link {
        align-items: center;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 0;
    }
}

.nav__menu__item__link:hover {
    opacity: .65;
}

.nav__burger {
    height: 70px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
}

@media (min-width: 640px) {
    .nav__burger {
        display: none;
    }
}

/* Burger
-------------------- */

.burger {
    bottom: 0;
    cursor: pointer;
    display: inline-block;
    height: 20px;
    margin: auto;
    position: absolute;
    right: 15px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    top: 0;
    transition: all .3s;
    width: 30px;
}

.burger span {
    background-color: #000000;
    background-color: rgba(0, 0, 0, 1);
    border-radius: 2px;
    display: inline-block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all .3s;
    width: 100%;
}

.burger span:nth-of-type(1) {
    top: 0;
}

.burger span:nth-of-type(2) {
    top: 9px;
}

.burger span:nth-of-type(3) {
    bottom: 0;
}

.burger.active {
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
}

.burger.active span:nth-of-type(1) {
    -ms-transform: translateY(9px) rotate(-45deg);
        transform: translateY(9px) rotate(-45deg);
}

.burger.active span:nth-of-type(2) {
    -ms-transform: translateY(0) rotate(45deg);
        transform: translateY(0) rotate(45deg);
}

.burger.active span:nth-of-type(3) {
    opacity: 0;
}

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

/* --------------------
 Visual *= index
-------------------- */

.visual {
    margin-bottom: 60px;
}

.visual .bx-wrapper {
    box-shadow: none;
    margin-bottom: 30px;
}

.visual__gallery {
    position: relative;
}

.visual__gallery__slider__item img {
    margin: auto;
    max-width: auto;
    width: 100%;
}

.visual__gallery__brand {
    border: 2px solid #803541;
    border: 2px solid rgba(128, 53, 65, 1);
    bottom: 15px;
    display: block;
    height: 60px;
    left: 0;
    line-height: 1;
    margin: auto;
    padding: 8px;
    position: absolute;
    right: 0;
    text-align: center;
    width: 130px;
    z-index: 90;
}

@media (min-width: 640px) {
    .visual__gallery__brand {
        border: 4px solid #803541;
        border: 4px solid rgba(128, 53, 65, 1);
        bottom: 30px;
        height: 95px;
        padding: 15px;
        width: 260px;
		z-index: 90;
    }
}

@media (min-width: 768px) {
    .visual__gallery__brand {
        bottom: 40px;
        height: 130px;
        width: 350px;
		z-index: 90;
    }
}

@media (min-width: 992px) {
    .visual__gallery__brand {
        bottom: 60px;
        height: 190px;
        padding: 35px;
        width: 520px;
		z-index: 90;
    }
}

.visual__brand {
    margin-bottom: 30px;
    text-align: center;
}

@media (min-width: 640px) {
    .visual__brand {
        margin-bottom: 60px;
    }
}

.visual__message {
    margin-bottom: 30px;
    text-align: center;
}

.visual__message__item {
    margin-bottom: 30px;
}

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

.visual__message__item.visual__message__item--divider {
    position: relative;
}

.visual__message__item.visual__message__item--divider:after {
    background: #231815;
    background: rgba(35, 24, 21, 1);
    bottom: -15px;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    max-width: 560px;
    position: absolute;
    right: 0;
    width: 100%;
}

.visual__action {
    text-align: center;
}

/* --------------------
 Main brands *= index
-------------------- */

.main-brands {
    margin-bottom: 60px;
    padding-top: 30px;
}

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

/* --------------------
 Main news *= index
-------------------- */

.main-news {
    margin-bottom: 60px;
    padding-top: 30px;
}

.main-news__hero {
    background-image: url(../images/heroes/hero-main-news.jpg);
    background-position: 35% top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 200px;
    margin-bottom: 60px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .main-news__hero {
        height: 400px;
    }
}

.main-news__hero__label {
    bottom: 0;
    display: block;
    height: auto;
    left: 0;
    margin: auto;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.main-news__container {
    margin: 0 auto -30px;
    max-width: 830px;
    width: 100%;
}

.main-news__container:after {
    clear: both;
    content: '';
    display: block;
}

.main-news__col {
    display: block;
    height: 315px;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 0 15px;
    width: 100%;
}

@media (min-width: 640px) {
    .main-news__col {
        float: left;
        height: 315px;
        max-width: 400px;
        width: 50%;
    }
}

.main-news__item {
    display: block;
    height: 100%;
    position: relative;
    width: 100%;
}

a.main-news__item {
    transition: opacity .2s linear;
}

a.main-news__item:hover {
    opacity: .75;
}

.main-news__item__content {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    bottom: 20px;
    color: #231815;
    color: rgba(35, 24, 21, 1);
    left: 0;
    margin: 0 20px;
    padding: 10px;
    position: absolute;
    right: 0;
}

.main-news__item__description {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.125;
    margin: 0 0 10px;
    word-break: break-all;
}

.main-news__item__date {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
}

/* --------------------
 Main contact *= index
-------------------- */

.main-contact {
    margin-bottom: 60px;
    padding-top: 90px;
}

.main-contact__content {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #000000;
    border: 2px solid rgba(0, 0, 0, 1);
    padding: 60px 0 50px;
    text-align: center;
}

.main-contact__content__label {
    margin-bottom: 25px;
    margin-top: 0;
}

/* --------------------
 Hero *= Key visual for each page
-------------------- */

.hero {
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    width: 100%;
}

@media (min-width: 640px) {
    .hero {
        height: 410px;
    }
}

.hero.hero--story {
    background-image: url(../images/heroes/hero-story.jpg);
    background-position: center;
    margin-bottom: 80px;
    position: relative;
}

@media (min-width: 640px) {
    .hero.hero--story {
        margin-bottom: 180px;
    }
}

.hero--story__brand {
    align-items: center;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #803541;
    border: 2px solid rgba(128, 53, 65, 1);
    bottom: -50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
    height: 80px;
    justify-content: center;
    left: 0;
    margin: auto;
    padding: 20px 30px;
    position: absolute;
    right: 0;
    width: 260px;
}

@media (min-width: 640px) {
    .hero--story__brand {
        bottom: -120px;
        height: 190px;
        padding: 0;
        width: 520px;
    }
}

.hero.hero--news {
    background-image: url(../images/heroes/hero-news.jpg);
    background-position: center;
}

.hero.hero--process {
    background-image: url(../images/heroes/hero-process.jpg);
    background-position: center;
}

.hero.hero--school {
    background-image: url(../images/heroes/hero-school.jpg);
    background-position: center;
}

.hero.hero--contact {
    background-image: url(../images/heroes/hero-contact.jpg);
    background-position: center;
}

.hero__title {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
    height: 100%;
    justify-content: center;
    margin: auto;
    width: 30%;
}

@media (min-width: 640px) {
    .hero__title {
        width: 100%;
    }
}

/* --------------------
 Page
-------------------- */

.page {
    margin: 30px auto;
}

@media (min-width: 640px) {
    .page {
        margin-bottom: 60px;
        margin-top: 60px;
        padding-left: 30px;
        padding-right: 30px;
    }
}

.page__head {
    margin-bottom: 60px;
}

.page__brand {
    margin-bottom: 30px;
    text-align: center;
}

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

.page__title {
    line-height: 1;
    margin-bottom: 15px;
    margin-top: 0;
    padding-top: 30px;
    text-align: center;
}

.page__lead {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: .12em;
    line-height: 1.6875;
    margin: 0;
    text-align: center;
    word-break: break-all;
}

@media (min-width: 768px) {
    .page__lead {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.page.page--overlaid {
    margin-top: -130px;
}

@media (min-width: 640px) {
    .page.page--overlaid {
        margin-top: -260px;
    }
}

.page .school-thumbs {
    margin-left: -30px;
    margin-right: -30px;
}

/* --------------------
 News *= news page
-------------------- */

.news {
    overflow: hidden;
    padding-bottom: 15px;
}

.news__row {
    margin-bottom: 60px;
}

.news__row:after {
    clear: both;
    content: '';
    display: block;
}

.news__thumb {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 0;
    margin: 0 0 15px;
    padding-top: 78.75%;
    width: 100%;
}

@media (min-width: 768px) {
    .news__thumb {
        height: 300px;
        margin-left: auto;
        margin-right: auto;
        padding-top: 0;
        width: 380px;
    }
}

@media (min-width: 992px) {
    .news__thumb {
        float: left;
        height: 315px;
        margin: 0;
        width: 400px;
    }
}

@media (min-width: 992px) {
    .news__content {
        margin-left: 460px;
    }
}

.news__category {
    background-color: #000000;
    background-color: rgba(0, 0, 0, 1);
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
    display: inline-block;
    font-size: 10px;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    padding: 3px 8px;
    text-align: center;
}

@media (min-width: 640px) {
    .news__category {
        font-size: 13px;
        font-size: 1.3rem;
        padding-left: 15px;
        padding-right: 15px;
    }
}

.news__title {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0 0 40px;
}

@media (min-width: 640px) {
    .news__title {
        font-size: 20px;
        font-size: 2.0rem;
    }
}

.news__title.news__title--divider {
    position: relative;
}

.news__title.news__title--divider:after {
    background: #231815;
    background: rgba(35, 24, 21, 1);
    bottom: -15px;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    max-width: 70px;
    position: absolute;
    width: 100%;
}

.news__description {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.46667;
    margin: 0 0 30px;
    word-break: break-all;
}

@media (min-width: 640px) {
    .news__description {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.news__date {
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1;
}

.news__more {
    margin-bottom: 30px;
    text-align: center;
}

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

/* --------------------
 Contact *= contact page
-------------------- */

.contact {
    margin: auto;
    max-width: 800px;
    width: 100%;
}

/* --------------------
 Process *= process page
-------------------- */

.process {
    overflow: hidden;
    padding-bottom: 15px;
}

.process__row {
    margin-bottom: 60px;
}

.process__row:after {
    clear: both;
    content: '';
    display: block;
}

.process__content {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .process__content {
        float: left;
        margin-bottom: 0;
        width: 55%;
    }
}

.process__image {
    padding-left: 20%;
    text-align: right;
}

@media (min-width: 768px) {
    .process__image {
        margin-left: 56%;
        padding-left: 0;
    }
}

.process__action {
    margin-bottom: 30px;
    text-align: center;
}

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

/* --------------------
 School *= school page
-------------------- */

.school {
    overflow: hidden;
    padding-bottom: 30px;
    padding-top: 30px;
}

.school__list {
    margin: 0 -1px 30px 0;
    padding: 0;
}

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

.school__list:after {
    clear: both;
    content: '';
    display: block;
}

.school__list__item {
    float: left;
    height: 290px;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

@media (min-width: 768px) {
    .school__list__item {
        height: 383px;
        width: 33.33333%;
    }
}

.school__content {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    display: block;
    height: 100%;
    transition: opacity .2s linear;
    width: 100%;
}

.school__content:hover {
    opacity: .75;
}

.school__more {
    margin-bottom: 60px;
    padding-top: 30px;
    text-align: center;
}

.school-search {
    padding-bottom: 30px;
}

.school-search__title {
    margin-bottom: 30px;
    text-align: center;
}

.school-search__list {
    margin: 0 0 60px;
    padding: 0;
}

.school-search__list:after {
    clear: both;
    content: '';
    display: block;
}

.school-search__list__item {
    float: left;
    list-style: none;
    margin: 0 0 60px;
    overflow: hidden;
    padding: 30px 0 0;
    width: 100%;
}

@media (max-width: 767px) {
    .school-search__list__item:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 425px) {
    .school-search__list__item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .school-search__list__item {
        width: 33.33333%;
    }
}

.school-search__list__item__title {
    display: block;
    margin: 0 0 30px;
    position: relative;
}

@media (min-width: 425px) {
    .school-search__list__item__title {
        display: inline-block;
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.school-search__list__item__title a, .school-search__list__item__title span {
    color: #000000;
    color: rgba(0, 0, 0, 1);
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.44444;
    transition: opacity .2s linear;
}

@media (min-width: 640px) {
    .school-search__list__item__title a, .school-search__list__item__title span {
        font-size: 18px;
        font-size: 1.8rem;
    }
}

.school-search__list__item__title a:hover {
    opacity: .75;
}

.school-search__list__item__title:after {
    background: #040000;
    background: rgba(4, 0, 0, 1);
    bottom: -15px;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

@media (min-width: 425px) {
    .school-search__list__item__title:after {
        max-width: 55px;
    }
}

.school-search__list__item__name {
    margin: 0;
    padding: 0;
}

.school-search__list__item__name li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.school-search__list__item__name li a, .school-search__list__item__name li span {
    color: #000000;
    color: rgba(0, 0, 0, 1);
    display: inline-block;
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: .12em;
    line-height: 1.4;
    transition: opacity .2s linear;
}

@media (min-width: 640px) {
    .school-search__list__item__name li a, .school-search__list__item__name li span {
        font-size: 15px;
        font-size: 1.5rem;
    }
}

.school-search__list__item__name li a:hover {
    opacity: .75;
}

/* --------------------
 School Detail *= school-detail page
-------------------- */

.school-detail {
    overflow: hidden;
}

.school-detail__title {
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: 500;
    letter-spacing: .12em;
    line-height: 1;
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 640px) {
    .school-detail__title {
        font-size: 26px;
        font-size: 2.6rem;
    }
}

.school-detail__sub {
    font-size: 13px;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 15px;
    text-align: center;
}

@media (min-width: 640px) {
    .school-detail__sub {
        font-size: 19px;
        font-size: 1.9rem;
    }
}

.school-detail__gallery {
    border: 2px solid #803541;
    border: 2px solid rgba(128, 53, 65, 1);
    margin-bottom: 60px;
}

.school-detail__gallery__slider {
    height: 100%;
}

.school-detail__gallery__slider__item {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    height: 100%;
    justify-content: center;
    text-align: center;
}

.school-detail__gallery__slider__item img {
    display: block;
}

.school-detail .bx-wrapper {
    position: relative;
}

.school-detail .bx-prev, .school-detail .bx-next {
    background-color: #803541;
    background-color: rgba(128, 53, 65, 1);
    display: block;
    height: 40px;
    position: absolute;
    text-indent: -9999px;
    top: 50%;
    -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    width: 40px;
}

@media (min-width: 640px) {
    .school-detail .bx-prev, .school-detail .bx-next {
        height: 60px;
        -ms-transform: translateY(-30px);
            transform: translateY(-30px);
        width: 60px;
    }
}

.school-detail .bx-prev:after, .school-detail .bx-next:after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px auto;
    bottom: 0;
    content: '';
    display: block;
    height: 10px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 8px;
}

@media (min-width: 640px) {
    .school-detail .bx-prev:after, .school-detail .bx-next:after {
        background-size: 16px auto;
        height: 20px;
        width: 16px;
    }
}

.school-detail .bx-prev {
    left: 0;
}

.school-detail .bx-prev:after {
    background-image: url(../images/icons/angle-left-large.svg);
    left: -5px;
    transition: left .1s linear;
}

@media (min-width: 640px) {
    .school-detail .bx-prev:after {
        left: -10px;
    }
}

.school-detail .bx-prev:hover:after {
    left: -13px;
}

@media (min-width: 640px) {
    .school-detail .bx-prev:hover:after {
        left: -18px;
    }
}

.school-detail .bx-next {
    right: 0;
}

.school-detail .bx-next:after {
    background-image: url(../images/icons/angle-right-large.svg);
    right: -5px;
    transition: right .1s linear;
}

@media (min-width: 640px) {
    .school-detail .bx-next:after {
        right: -10px;
    }
}

.school-detail .bx-next:hover:after {
    right: -13px;
}

@media (min-width: 640px) {
    .school-detail .bx-next:hover:after {
        right: -18px;
    }
}

.school-detail__content {
    margin-bottom: 30px;
    padding-top: 15px;
}

/* --------------------
 school thumbnails
-------------------- */

.school-thumbs {
    margin-bottom: 60px;
    padding-top: 30px;
}

.school-thumbs__list {
    margin: 0 -1px 0 0;
    padding: 0;
}

.school-thumbs__list:after {
    clear: both;
    content: '';
    display: block;
}

.school-thumbs__list__item {
    display: block;
    float: left;
    height: 290px;
    list-style: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

@media (min-width: 768px) {
	.school-detail__content {
		margin: 0 auto 30px;
		padding-top: 15px;
		max-width: 920px;
	}

    .school-thumbs__list__item {
        height: 290px;
        width: 33.33333%;
    }
}

.school-thumbs__head {
    background-color: #803541;
    background-color: rgba(128, 53, 65, 1);
    height: 100%;
    padding: 40px 30px;
    width: 100%;
}

.school-thumbs__head__title {
    margin-bottom: 25px;
    margin-top: 0;
}

.school-thumbs__head__description {
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: .014em;
    line-height: 1.64286;
    margin: 0;
}

.school-thumbs__content {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    display: block;
    height: 100%;
    transition: opacity .2s linear;
    width: 100%;
}

.school-thumbs__content:hover {
    opacity: .75;
}

/* --------------------
 Message
-------------------- */

.message {
    margin-bottom: 30px;
    text-align: center;
}

.message__item {
    margin-bottom: 30px;
}

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

/* --------------------
 Story *= story page
-------------------- */

.story {
    margin-bottom: 30px;
}

.story__section {
    padding-bottom: 30px;
    position: relative;
}

.story__section.story__section--tradition {
    background-color: #ece8db;
    background-color: rgba(236, 232, 219, 1);
}

.story__section.story__section--tradition .story__head {
    color: #803541;
    color: rgba(128, 53, 65, 1);
}

.story__section.story__section--tradition .story__body {
    color: #3e3a39;
    color: rgba(62, 58, 57, 1);
}

.story__section.story__section--future {
    background-color: #803541;
    background-color: rgba(128, 53, 65, 1);
}

.story__section.story__section--future .story__head {
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
}

.story__section.story__section--future .story__body {
    color: #ffffff;
    color: rgba(255, 255, 255, 1);
}

.story__section__container {
    margin: auto;
    width: 100%;
}

@media (min-width: 640px) {
    .story__section__container {
        max-width: 1800px;
    }
}

.story__head {
    position: relative;
}

.story__head:after {
    clear: both;
    content: '';
    display: block;
}

.story__head.story__head--reverse .story__head__picture {
    float: left;
}

.story__head.story__head--reverse .story__head__content {
    text-align: right;
}

.story__head__content {
    width: 100%;
}

@media (min-width: 768px) {
    .story__head__content {
        left: 0;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 1;
    }
}

.story__head__title {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    border: 2px solid #803541;
    border: 2px solid rgba(128, 53, 65, 1);
    display: inline-block;
    margin: 35px 0 30px;
    padding: 20px 30px;
}

.story__head__lead {
    font-size: 20px;
    font-size: 2.0rem;
    letter-spacing: .12em;
    line-height: 1.6;
    margin: 0 0 30px;
    word-break: break-all;
}

@media (min-width: 768px) {
    .story__head__lead {
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 1.64286;
        margin-bottom: 0;
    }
}

.story__head__picture {
    background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
    height: 150px;
    margin-bottom: 60px;
    width: 100%;
}

@media (min-width: 768px) {
    .story__head__picture {
        float: right;
        height: 450px;
        max-width: 1200px;
        width: 60%;
    }
}

.story__head__picture.story__head__picture--01 {
    background-image: url(../images/story/story-01.jpg);
    background-position: center 30%;
}

.story__head__picture.story__head__picture--02 {
    background-image: url(../images/story/story-02.jpg);
    background-position: right top;
}

.story__head__picture.story__head__picture--03 {
    background-image: url(../images/story/story-03.jpg);
    background-position: right center;
}

.story__head__picture.story__head__picture--04 {
    background-image: url(../images/story/story-04.jpg);
}

.story__body {
    padding-bottom: 60px;
}

.story__body:after {
    clear: both;
    content: '';
    display: block;
}

.story__body__content {
    margin-bottom: 30px;
}

@media (min-width: 640px) {
    .story__body__content {
        float: left;
        margin-bottom: 0;
        padding-left: 30px;
        width: 60%;
    }
}

.story__body__picture {
    text-align: center;
}

@media (min-width: 640px) {
    .story__body__picture {
        margin-left: 60%;
        text-align: right;
    }
}

.story__body__title {
    margin: 0 0 30px;
}

@media (min-width: 640px) {
    .story__body__title {
        margin-bottom: 60px;
    }
}

.story__body__lead {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: .12em;
    line-height: 1.375;
    margin: 0 0 30px;
    word-break: break-all;
}

@media (min-width: 640px) {
    .story__body__lead {
        font-size: 20px;
        font-size: 2.0rem;
        line-height: 1.35;
    }
}

.story__body__description {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: .12em;
    line-height: 1.83333;
    margin: 0;
    word-break: break-all;
}

@media (min-width: 640px) {
    .story__body__description {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.8125;
    }
}

.story__content {
    margin: 0;
}

.story__content__cross {
    background-image: url(../images/icons/cross.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 38px auto;
    box-sizing: content-box;
    height: 38px;
    margin: 0 auto;
    padding: 30px 0;
    width: 38px;
}

@media (min-width: 640px) {
    .story__content__cross {
        background-size: 76px auto;
        height: 76px;
        width: 76px;
    }
}

.story__content__school {
    background-image: url(../images/labels/school-v.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 249px auto;
    box-sizing: content-box;
    height: 74px;
    margin: 0 auto;
    padding: 60px 0;
    width: 249px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
    .story__content__school {
        background-image: url(../images/labels/school-v@2x.png);
    }
}

.story__content__message {
    font-size: 21px;
    font-size: 2.1rem;
    letter-spacing: .12em;
    line-height: 1.52381;
    margin: 0 0 60px;
    text-align: center;
    word-break: break-all;
}

@media (min-width: 640px) {
    .story__content__message {
        font-size: 29px;
        font-size: 2.9rem;
        line-height: 1.55172;
    }
}

.story__content__message.story__content__message--small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.83333;
}

@media (min-width: 640px) {
    .story__content__message.story__content__message--small {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.66667;
    }
}

.story__content__message.story__content__message--compact {
    margin-bottom: 30px;
}

.story__content__message.story__content__message--compact.story__content__message--divider:after {
    bottom: -15px;
}

.story__content__message.story__content__message--divider {
    position: relative;
}

.story__content__message.story__content__message--divider:after {
    background: #604c3f;
    background: rgba(96, 76, 63, 1);
    bottom: -30px;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    margin: auto;
    max-width: 560px;
    position: absolute;
    right: 0;
    width: 100%;
}

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

.story__content__image {
    padding-top: 60px;
    text-align: center;
}

.story__content__action {
    padding: 60px 0 0;
    text-align: center;
}

/* --------------------
 privacy policy
-------------------- */

.privacypolicy {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.8;
    margin: auto;
    max-width: 800px;
    width: 100%;
}

.privacypolicy__head__lead {
	margin-bottom: 30px;
}

.privacypolicy__content__title {
	border-bottom: 1px solid #ccc;
}
.privacypolicy__content__title:before {
	content: '■';
}

.privacypolicy__content__basicpolicy {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 30px;
}

.privacypolicy__content__item {
	margin: 0 10px;
	padding: 0;
}
.privacypolicy__content__item li{
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

.privacypolicy__content__item .privacypolicy__content__item__lower{
	margin: 15px 0 0 20px;
	padding: 0;
}
.privacypolicy__content__item .privacypolicy__content__item__lower li{
	margin: 0 0 10px;
}

@media (min-width: 768px) {
	.privacypolicy__content__item .privacypolicy__content__item__lower{
		margin: 15px 20px 0;
		padding: 0;
	}
}

.privacypolicy__content__item__supplement{
	border: 1px solid #ccc;
	font-size: 12px;
	padding: 10px;
}
.privacypolicy__content__item__supplement dl{
	margin: 0;
	padding: 0;
}
.privacypolicy__content__item__supplement dl dt{
	float: left;
}
.privacypolicy__content__item__supplement dl dd{
	padding-left: 3em;
}

@media (min-width: 768px) {
	.privacypolicy__content__item__supplement{
		border: 1px solid #ccc;
		font-size: 12px;
		font-size: 1.2rem;
		margin: 0 0 0 auto;
		padding: 10px;
		width: 300px;
	}
}


/* --------------------
 site policy
-------------------- */

.sitepolicy {
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 1.8;
    margin: auto auto 30px;
    max-width: 800px;
    width: 100%;
}

.sitepolicy__head__lead {
	margin-bottom: 30px;
}

.sitepolicy__content__title {
	border-bottom: 1px solid #ccc;
}
.sitepolicy__content__title:before {
	content: '■';
}

.sitepolicy__content__item {
	font-size: 14px;
	font-size: 1.4rem;
	margin-bottom: 30px;
}

.sitepolicy__content__item__description {
	margin: 0 10px;
}

.sitepolicy__content__item__description a{
	word-break: break-all;
}

.sitepolicy__content__item .privacypolicy__content__item__lower{
	margin: 15px 0 0 20px;
	padding: 0;
}
.sitepolicy__content__item .privacypolicy__content__item__lower li{
	margin: 0 0 10px;
}

@media (min-width: 768px) {
	.sitepolicy__content__item .privacypolicy__content__item__lower{
		margin: 15px 20px 0;
		padding: 0;
	}
}


/* --------------------
 Form
-------------------- */

.form__row {
    margin-bottom: 15px;
}

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

.form__row:after {
    clear: both;
    content: '';
    display: block;
}

.form__label {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    height: 35px;
    line-height: 1;
    width: 100%;
}

@media (min-width: 768px) {
    .form__label {
        float: left;
        width: 30%;
    }
}

@media (min-width: 992px) {
    .form__label {
        width: 20%;
    }
}

.form__content {
    width: 100%;
}

@media (min-width: 768px) {
    .form__content {
        float: left;
        width: 70%;
    }
}

@media (min-width: 992px) {
    .form__content {
        width: 80%;
    }
}

@media (min-width: 768px) {
    .form__content.form__content--push {
        margin-left: 30%;
    }
}

@media (min-width: 992px) {
    .form__content.form__content--push {
        margin-left: 20%;
    }
}

.form__input {
    -webkit-appearance: none;
    background: none;
    border: 1px solid rgba(89, 87, 87, 1);
    border: 1px solid #595757;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    font-size: 1.6rem;
    font-size: 16px;
    line-height: 1;
    padding: 7px;
    width: 100%;
}

.form__check {
    display: none;
}

.form__check + .form__check__label {
    cursor: pointer;
    display: inline-block;
    padding-left: 25px;
    position: relative;
    vertical-align: middle;
}

.form__check + .form__check__label:before {
    border-bottom: 2px solid rgba(0, 0, 0, 1);
    border-right: 2px solid rgba(0, 0, 0, 1);
    bottom: 0;
    content: '';
    display: block;
    height: 9px;
    left: 6px;
    margin: auto;
    opacity: 0;
    position: absolute;
    top: -2px;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    width: 5px;
}

.form__check + .form__check__label:after {
    border: 1px solid rgba(89, 87, 87, 1);
    border: 1px solid #595757;
    bottom: 0;
    content: '';
    display: block;
    height: 16px;
    left: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 16px;
}

.form__check:checked + .form__check__label:before {
    opacity: 1;
}

.form__area {
    background: none;
    border: 1px solid rgba(89, 87, 87, 1);
    border: 1px solid #595757;
    border-radius: 0;
    box-shadow: none;
    display: inline-block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.375;
    padding: 7px;
    width: 100%;
}

.form label {
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.375;
}

.form label a {
    color: #036eb3;
    color: rgba(3, 110, 179, 1);
    text-decoration: underline;
}

.form__action {
    padding: 60px 0;
    text-align: center;
}


/* --------------------
 Footer
-------------------- */

.footer {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 1);
    padding: 30px 0 10px;
}

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

.footer__brand {
    margin-bottom: 30px;
    text-align: center;
}

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

.footer__nav {
    left: 0;
    margin: auto;
    padding: 30px 0;
    right: 0;
    top: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .footer__nav {
        display: none;
    }
}

.footer__nav__menu {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
    height: 90px;
    justify-content: space-between;
    margin: auto;
    max-width: 1016px;
    padding: 0;
    width: 100%;
}

.footer__nav__menu__item {
    flex-grow: 1;
    -ms-flex-negative: 1;
    -ms-flex-positive: 1;
    flex-shrink: 1;
    height: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.footer__nav__menu__item:after {
    background: linear-gradient(to bottom, #ffffff 0%, #c4c5c5 54.41%, #ffffff 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(196, 197, 197, 1) 54.41%, rgba(255, 255, 255, 1) 100%);
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
}

.footer__nav__menu__item:first-child:before {
    background: linear-gradient(to bottom, #ffffff 0%, #c4c5c5 54.41%, #ffffff 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(196, 197, 197, 1) 54.41%, rgba(255, 255, 255, 1) 100%);
    bottom: 0;
    content: '';
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
}

.footer__nav__menu__item.footer__nav__menu__item--brand {
    box-sizing: content-box;
    flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-positive: 0;
    flex-shrink: 0;
    padding-left: 25px;
    padding-right: 25px;
    width: 242px;
}

.footer__nav__menu__item__link {
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    height: 100%;
    justify-content: center;
    transition: opacity .2s linear;
    width: 100%;
}

.footer__nav__menu__item__link:hover {
    opacity: .65;
}

.footer__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1;
    margin: auto auto 30px;
    width: 280px;
}

.footer__links__link {
    color: #000000;
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    transition: opacity .2s linear;
}

.footer__links__link:hover {
    opacity: .65;
}

.footer__rights {
    font-size: 9px;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}
