@charset 'UTF-8';
html {
    font-size: 62.5%;
}

body {
    color: #333333;
    font-family: 'Noto Sans Japanese', -apple-system, BlinkMacSystemFont, 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    -webkit-font-feature-settings: 'palt';
            font-feature-settings: 'palt';
    font-size: 1.4rem;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
    letter-spacing: .08em;
    line-height: 1.6;
    margin: 0;
    -webkit-overflow-scrolling: touch;
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 1px;
}

body::-webkit-scrollbar {
    background-color: #f1f1f1;
    height: 12px;
    width: 12px;
}

body::-webkit-scrollbar-thumb {
    background-color: #172a85;
}

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

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

a {
    color: #3d3d3d;
    text-decoration: none;
}

a:hover, a:focus {
    color: #3d3d3d;
    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;
}

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

.serif {
    font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', serif;
}

.underline {
    text-decoration: underline;
}

b, strong {
    font-weight: 700;
}

/* --------------------
 Tag
-------------------- */
.tag {
    color: #ffffff;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    padding: 5px 10px;
    text-align: center;
    width: 100px;
}

.tag--blue {
    background-color: #8bb0dd;
}

.tag--lightblue {
    background-color: #7bcbde;
}

.tag--pink {
    background-color: #f4b5d0;
}

.tag--orange {
    background-color: #ffa96e;
}

.tag--purple {
    background-color: #a483c6;
}

.tag--green {
    background-color: #82c8a8;
}

.tag--red {
    background-color: #ff9f9f;
}

.tag--coral {
    background-color: #ff87aa;
}


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

.pager__item {
    display: inline-block;
}

.pager__item__link {
    color: #172a85;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: underline;
    -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);
}

.pager__item__link:hover {
    text-decoration: none;
}

.pager__list {
    display: inline-block;
}

.pager__list__item {
    border-right: 1px solid #172a85;
    display: inline-block;
    line-height: 1;
    padding: 0 5px;
    text-align: center;
}

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

.pager__list__item__link {
    color: #172a85;
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: underline;
    -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);
}

.pager__list__item__link:hover {
    text-decoration: none;
}

/* --------------------
 Notice
-------------------- */
.notice {
    background-color: #eaf6fd;
    margin: auto auto 50px;
    max-width: 960px;
    padding: 30px;
}

.notice__title {
    color: #172a85;
    font-size: 2.0rem;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
}

.notice__desc {
    margin: 0;
    text-align: center;
}

/* --------------------
 Layout
-------------------- */
.layout {
    padding-top: 60px;
}

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

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

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

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

/* --------------------
 Section
-------------------- */
.section {
    margin: 0 0 60px;
}

.section__title {
    line-height: 1;
    margin: 0 0 15px;
}

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

.section-content + .section-content {
    margin-top: 30px;
}

.section-content__title {
    color: #172a85;
    font-size: 2.0rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.section-content__desc {
    margin: 0 0 20px;
}

.section-content__desc:last-child {
    margin-bottom: 0;
}

.section-content__desc a {
    text-decoration: underline;
    -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);
}

.section-content__desc a:hover, .section-content__desc a:focus {
    opacity: .85;
    text-decoration: none;
}

/* --------------------
 Main
-------------------- */
.main-head {
    background-image: url(../images/stocks/cross.svg);
    background-position: center top;
    background-repeat: no-repeat;
    margin: 0 0 50px;
    padding-top: 40px;
}

@media (min-width: 768px) {
    .main-head {
        margin-bottom: 80px;
    }
}

.main-head__title {
    font-size: 2.4rem;
    letter-spacing: .3em;
    line-height: 1;
    margin: 0 0 10px;
    text-align: center;
}

.main-head__subtitle {
    color: #172a85;
    font-family: 'Ropa Sans', serif;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 20px;
    text-align: center;
}

.main-head__desc {
    font-size: 1.4rem;
    letter-spacing: .15em;
    line-height: 1.85;
    margin: 0;
    text-align: center;
}

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

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

.burger__box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    height: 18px;
    left: 0;
    margin: auto auto 5px;
    position: relative;
    right: 0;
    top: 0;
    width: 24px;
}

.burger__line, .burger__line:before, .burger__line:after {
    background-color: #172a85;
    height: 3px;
    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: #172a85;
}

.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: -7px;
    -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: -7px;
    -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: #172a85;
}

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

.burger__label {
    color: #172a85;
    font-size: 1.0rem;
    letter-spacing: -.02em;
    line-height: 1;
    text-align: center;
}

/* --------------------
 Global elements
-------------------- */
.gheader {
    background-color: #ffffff;
    height: auto;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
}

@media (min-width: 768px) {
    .gheader {
        height: 160px;
    }
}

#front .gheader {
    height: auto;
    left: auto;
    position: static;
    right: auto;
    top: auto;
}

@media (max-width: 767px) {
    #front .gheader {
        left: 0;
        position: fixed;
        right: 0;
        top: 0;
        z-index: 100;
    }
}

.gnav {
    height: 60px;
    padding: 0 5px;
}

@media (min-width: 768px) {
    .gnav {
        height: auto;
        padding: 0;
    }
}

.gnav-container {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -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: center;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
    margin: auto;
    max-width: 960px;
    padding: 5px 0 0;
}

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

@media (min-width: 1240px) {
    .gnav-container {
        padding-left: 0;
        padding-right: 0;
    }
}

.gnav__logo {
    -webkit-box-flex: 0;
    display: block;
    -webkit-flex-grow: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-positive: 0;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    margin: 0;
    width: 240px;
}

@media (min-width: 768px) {
    .gnav__logo {
        width: 350px;
    }
}

.gnav__logo__link {
    -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);
}

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

.gnav__menu {
    -webkit-box-flex: 1;
    display: none;
    -webkit-flex-grow: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
    -ms-flex-positive: 1;
    -webkit-flex-shrink: 1;
            flex-shrink: 1;
    text-align: right;
}

@media (min-width: 768px) {
    .gnav__menu {
        display: block;
        padding-top: 15px;
    }
}

.gnav__menu__contact {
    display: inline;
}

.gnav__menu__sns {
    display: inline-block;
    margin-left: 10px;
}

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

.gnav__menu__sns__item {
    display: inline-block;
    margin-left: 8px;
    width: auto;
}

.gnav__menu__sns__item__link {
    display: inline-block;
    padding: 0 3px;
    position: relative;
    -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);
}

.gnav__menu__sns__item__link:after {
    border-bottom: 4px solid #ffee00;
    bottom: -5px;
    content: '';
    display: block;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: width .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: width .2s cubic-bezier(.645, .045, .355, 1);
            transition: width .2s cubic-bezier(.645, .045, .355, 1);
    width: 0;
    z-index: 0;
}

.gnav__menu__sns__item__link:hover:after, .gnav__menu__sns__item__link:focus:after {
    width: 100%;
}

.gmenu {
    background-color: rgba(255, 255, 255, .95);
    bottom: 0;
    display: none;
    left: 0;
    overflow-y: auto;
    padding-top: 15px;
    position: fixed;
    right: 0;
    top: 60px;
    z-index: 100;
}

@media (max-width: 767px) {
    .gmenu {
        -webkit-overflow-scrolling: touch;
    }
    .gmenu::-webkit-scrollbar-track {
        background-color: #f1f1f1;
        border-radius: 1px;
    }
    .gmenu::-webkit-scrollbar {
        background-color: #f1f1f1;
        height: 6px;
        width: 6px;
    }
    .gmenu::-webkit-scrollbar-thumb {
        background-color: #2b2b2b;
    }
}

@media (min-width: 768px) {
    .gmenu {
        background-color: transparent;
        bottom: auto;
        display: block !important;
        left: auto;
        overflow-y: visible;
        position: static;
        right: auto;
        top: auto;
    }
}

.gmenu-container {
    max-width: 960px;
}

@media (min-width: 768px) {
    .gmenu-container {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        margin: auto;
    }
}

.gmenu__item {
    border-bottom: 1px solid rgba(0, 0, 0, .3);
    padding: 0 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .gmenu__item {
        border-bottom: none;
        border-right: 1px solid #000000;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        padding-bottom: 5px;
        padding-top: 5px;
    }
}

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

.gmenu__item__link {
    display: block;
    padding: 15px 0;
    position: relative;
    -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);
    width: auto;
}

@media (min-width: 768px) {
    .gmenu__item__link {
        display: inline-block;
        height: 100%;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .gmenu__item__link:after {
        border-bottom: 2px solid #172a85;
        bottom: -5px;
        content: '';
        display: block;
        height: 0;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        -webkit-transition: width .2s cubic-bezier(.645, .045, .355, 1);
             -o-transition: width .2s cubic-bezier(.645, .045, .355, 1);
                transition: width .2s cubic-bezier(.645, .045, .355, 1);
        width: 0;
    }
}

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

@media (min-width: 768px) {
    .gmenu__item__link:hover:after, .gmenu__item__link:focus:after {
        width: 100%;
    }
}

.gmenu-mb {
    padding-bottom: 30px;
    padding-top: 15px;
}

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

.gmenu-mb__item {
    margin-bottom: 10px;
    padding: 5px 10px;
    text-align: center;
}

.gmenu-mb__item:last-child {
    margin-bottom: 0;
}

.gmenu-mb__item__link {
    display: inline-block;
    padding: 0 10px;
    position: relative;
    -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);
    width: auto;
}

.gmenu-mb__item__link:hover, .gmenu-mb__item__link:focus {
    opacity: .85;
}

/* --------------------
 Front - index
-------------------- */
@media (min-width: 768px) {
    .fr-gmenu {
        margin-bottom: 50px;
    }
}

.fr-container {
    padding-bottom: 30px;
}

.fr-greeting {
    background-image: url(../images/stocks/cross.svg);
    background-position: center 15px;
    background-repeat: no-repeat;
    margin-bottom: 30px;
    padding: 30px 0;
}

.fr-greeting__message {
    font-size: 2.0rem;
    font-weight: 400;
    letter-spacing: .18em;
    margin: 0 0 30px;
    text-align: center;
}

.fr-greeting__desc {
    font-size: 1.4rem;
    font-weight: 200;
    margin: 0;
    text-align: center;
}

.fr-point {
    margin-bottom: 60px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .fr-point-container {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -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: stretch;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        margin-left: -15px;
        margin-right: -15px;
    }
}

.fr-point__item {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .fr-point__item {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin-bottom: 0;
        padding: 0 15px;
        width: 33.33333%;
    }
}

.fr-point__item-inner {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 15px;
    position: relative;
    width: 100%;
}

.fr-point__item-inner:before {
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.fr-point__item--1st .fr-point__item-inner {
    background-image: url(../images/pages/front/front-point-01-bg.jpg);
}

.fr-point__item--1st .fr-point__item-inner:before {
    background-color: rgba(0, 142, 58, .85);
}

.fr-point__item--2nd .fr-point__item-inner {
    background-image: url(../images/pages/front/front-point-02-bg.jpg);
}

.fr-point__item--2nd .fr-point__item-inner:before {
    background-color: rgba(3, 110, 181, .85);
}

.fr-point__item--3rd .fr-point__item-inner {
    background-image: url(../images/pages/front/front-point-03-bg.jpg);
}

.fr-point__item--3rd .fr-point__item-inner:before {
    background-color: rgba(192, 13, 35, .85);
}

.fr-point__item__title {
    margin: 0 0 30px;
    position: relative;
    text-align: center;
    z-index: 1;
}

.fr-point__item__desc {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
    position: relative;
    z-index: 1;
}

.fr-point__item__desc .large {
    font-size: 1.4rem;
}

.fr-point__item__desc .indent {
    display: inline-block;
    padding-left: 1em;
}

.fr-pickup:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 768px) {
    .fr-pickup__item {
        float: left;
    }
}

.fr-pickup__item--service {
    margin-bottom: 60px;
}

@media (min-width: 768px) {
    .fr-pickup__item--service {
        margin-bottom: 0;
        padding-right: 30px;
        width: 60%;
    }
}

@media (min-width: 768px) {
    .fr-pickup__item--info {
        padding-left: 30px;
        width: 40%;
    }
}

.fr-service__title {
    margin: 0 0 15px;
}

.fr-service__table {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    margin: 0 0 10px;
    max-width: 100%;
    width: 100%;
}

.fr-service__table thead tr th, .fr-service__table thead tr td {
    padding: 5px;
}

@media (min-width: 480px) {
    .fr-service__table thead tr th, .fr-service__table thead tr td {
        padding: 5px 15px;
    }
}

.fr-service__table thead tr th.fr-service__table__space {
    background-color: transparent;
    border-left: none;
    border-top: none;
}

.fr-service__table tbody tr th, .fr-service__table tbody tr td {
    padding: 5px;
}

@media (min-width: 480px) {
    .fr-service__table tbody tr th, .fr-service__table tbody tr td {
        padding: 15px;
    }
}

.fr-service__table tr th {
    background-color: #eaf6fd;
}

.fr-service__table tr th, .fr-service__table tr td {
    border-bottom: 1px solid #231815;
    border-left: 1px solid #231815;
    text-align: center;
}

.fr-service__table tr th:last-child, .fr-service__table tr td:last-child {
    border-right: 1px solid #231815;
}

.fr-service__table tr th img, .fr-service__table tr td img {
    line-height: 1;
}

.fr-service__table tr:first-child th, .fr-service__table tr:first-child td {
    border-top: 1px solid #231815;
}

.fr-service__note {
    line-height: 20px;
}

.fr-service__note:after {
    clear: both;
    content: '';
    display: block;
}

.fr-service__note__text {
    float: left;
    margin: 0 0 5px;
}

.fr-service__note__link {
    bottom: 0;
    color: #727171;
    float: right;
    font-size: 1.2rem;
    margin: 0 0 5px;
    right: 0;
    text-decoration: underline;
    -webkit-transition: color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: color .2s cubic-bezier(.645, .045, .355, 1);
            transition: color .2s cubic-bezier(.645, .045, .355, 1);
}

.fr-service__note__link:hover, .fr-service__note__link:focus {
    color: rgba(114, 113, 113, .85);
    text-decoration: none;
}

.fr-info__title {
    border-bottom: 1px dashed #727171;
    margin: 0 0 15px;
    padding: 0 0 15px;
}

.fr-info__list {
    margin: 0 0 15px;
}

.fr-info__list__item {
    margin: 0 0 10px;
}

.fr-info__list__item:after {
    clear: both;
    content: '';
    display: block;
}

.fr-info__list__item:last-child {
    margin-bottom: 0;
}

.fr-info__list__item__date {
    color: #172a85;
    display: block;
    float: left;
    font-size: 1.5rem;
    white-space: nowrap;
    width: 80px;
}

.fr-info__list__item__title {
    display: block;
    font-size: 1.4rem;
    margin-left: 100px;
    overflow: hidden;
    text-decoration: underline;
}

.fr-info__list__item-link:hover, .fr-info__list__item-link:focus {
    -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);
}

.fr-info__list__item-link:hover:hover, .fr-info__list__item-link:hover:focus, .fr-info__list__item-link:focus:hover, .fr-info__list__item-link:focus:focus {
    opacity: .85;
}

.fr-info__list__item-link:hover .fr-info__list__item__title, .fr-info__list__item-link:focus .fr-info__list__item__title {
    text-decoration: none;
}

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

.fr-info__more__link {
    color: #727171;
    display: inline-block;
    font-size: 1.2rem;
    margin: 0 0 0 auto;
    text-decoration: underline;
    -webkit-transition: color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: color .2s cubic-bezier(.645, .045, .355, 1);
            transition: color .2s cubic-bezier(.645, .045, .355, 1);
}

.fr-info__more__link:hover, .fr-info__more__link:focus {
    color: rgba(114, 113, 113, .85);
    text-decoration: none;
}

.fr-case-container__title {
    max-width: 1020px;
    margin: 0 auto 20px;
    padding: 0 10px;
}

@media (min-width: 768px) {
    .fr-case-container__title {
        padding: 0 30px;
    }
}

.fr-case-container {
    background-color: #eaf6fd;
    padding: 15px 0;
}

@media (min-width: 768px) {
    .fr-case-container {
        padding: 30px 0;
    }
}

.fr-case-container__list {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .fr-case-container__list {
        -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-pack: justify;
        -ms-flex-wrap: wrap;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        flex-wrap: wrap;
        
        padding: 0 30px;
    }
}

.fr-case-container__list__item {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    
    border-bottom: 1px solid #ccc;
    padding: 10px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .fr-case-container__list__item {
        width: 48%;
    }
}

.fr-case-container__list__item::after {
    background-image: url("../images/icons/icon-angle-right-small.svg");
    background-position: center;
    background-repeat: no-repeat;
    content: '';
    height: 20px;
    position: absolute;
    right: 20px;
    top: 40%;
    width: 10px;
    
    -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
    -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
    transition: right .2s cubic-bezier(.645, .045, .355, 1);
}

.fr-case-container__list__item:hover::after, .fr-case-container__list__item:focus::after {
    right: 15px;
}

.fr-case-container__list__item__ph {
    margin-right: 15px;
    width: 20%;
}

@media (min-width: 768px) {
    .fr-case-container__list__item__ph {
        width: 120px;
    }
}

.fr-case-container__list__item__desc {
    padding-right: 30px;
    width: 70%;
}

.fr-case-container__list__item__desc__tag {
    color: #fff;
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: center;
    width: 100px;
}

@media (min-width: 768px) {
    .fr-case-container__list__item__desc__tag {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding: 3px 0;
    }
}

.fr-case-container__list__item__desc__title {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .fr-case-container__list__item__desc__title {
        font-size: 1.6rem;
    }
}

.fr-case-container__action {
    max-width: 1020px;
    margin: 20px auto 0;
    padding: 0 15px;
    text-align: right;
}

@media (min-width: 768px) {
    .fr-case-container__action {
        padding: 0 30px;
    }
}

.fr-case-container__action__link {
    text-decoration: underline;
}



.fr-banner-amc {
	margin: 30px 0;
	text-align: center;
}

.fr-banner {
	margin: 30px 0 100px;
	text-align: center;
}
.fr-banner a{
    margin: 0 10px;
}

/* --------------------
 Footer
-------------------- */
.footer {
    background-color: #172a85;
    padding: 40px 0;
}

.footer a {
    color: #ffffff;
}

.footer a:hover, .footer a:focus {
    color: #ffffff;
}

.footer-sns {
    -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;
    -webkit-justify-content: center;
            justify-content: center;
    margin: 0 0 30px;
}

.footer-sns__item {
    padding: 0 5px;
}

.footer-sns__item__link {
    display: inline-block;
    padding: 0 3px;
    position: relative;
    -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);
}

.footer-sns__item__link:after {
    border-bottom: 3px solid #ffee00;
    bottom: -5px;
    content: '';
    display: block;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: width .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: width .2s cubic-bezier(.645, .045, .355, 1);
            transition: width .2s cubic-bezier(.645, .045, .355, 1);
    width: 0;
    z-index: 0;
}

.footer-sns__item__link:hover:after, .footer-sns__item__link:focus:after {
    width: 100%;
}

.footer-menu {
    margin: 0 0 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-menu {
        -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;
        -webkit-justify-content: center;
                justify-content: center;
    }
}

.footer-menu__item {
    display: inline-block;
    padding: 0 6px;
}

@media (min-width: 768px) {
    .footer-menu__item {
        border-right: 1px solid #ffffff;
        -webkit-box-flex: 0;
        display: block;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 1;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        padding: 0 6px;
    }
}

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

.footer-menu__item:last-child {
    border-right: none;
}

.footer-menu__item__link {
    color: #ffffff;
    display: inline-block;
    position: relative;
}

.footer-menu__item__link:after {
    border-bottom: 1px solid #fff100;
    bottom: 0;
    content: '';
    display: block;
    height: 0;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: width .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: width .2s cubic-bezier(.645, .045, .355, 1);
            transition: width .2s cubic-bezier(.645, .045, .355, 1);
    width: 0;
}

.footer-menu__item__link:hover, .footer-menu__item__link:focus {
    color: #ffffff;
}

.footer-menu__item__link:hover:after, .footer-menu__item__link:focus:after {
    width: 100%;
}

.footer-logo {
    margin: 0 0 30px;
    text-align: center;
}

.footer-logo__link {
    -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);
}

.footer-logo__link:hover, .footer-logo__link:focus {
    opacity: .85;
}

.footer-contact {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -.025em;
    margin: 0 0 30px;
    text-align: center;
}

.footer-contact__item {
    margin: 0 0 15px;
}

@media (min-width: 480px) {
    .footer-contact__item {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) {
    .footer-contact__item {
        display: inline-block;
        white-space: nowrap;
    }
}

.footer-contact__item:last-child {
    margin-bottom: 0;
}

.footer-copyright {
    color: #ffffff;
    font-size: 1.0rem;
    text-align: center;
}

/* --------------------
 Hero
-------------------- */
.hero {
    margin: 0 auto 30px;
    max-width: 1365px;
}

.hero__slider {
    margin: auto;
    max-width: 1365px;
    position: relative;
}

.hero__slider__item {
    position: relative;
}

.hero__slider__item:focus {
    outline: none;
}

.hero__slider__item img {
    margin: auto;
}

.hero__slider__item__message {
    position: absolute;
    z-index: 2;
}

@media (max-width: 767px) {
    .hero__slider__item__message {
        width: 60px;
    }
}

.hero__slider__item--1st .hero__slider__item__message {
    right: 15%;
    top: 15%;
}

@media (min-width: 768px) {
    .hero__slider__item--1st .hero__slider__item__message {
        right: 26%;
        top: 29%;
    }
}

.hero__slider__item--2nd .hero__slider__item__message {
    left: 15%;
    top: 15%;
}

@media (min-width: 768px) {
    .hero__slider__item--2nd .hero__slider__item__message {
        left: 23%;
        top: 29%;
    }
}

.hero__slider__item--3rd .hero__slider__item__message {
    right: 15%;
    top: 15%;
}

@media (min-width: 768px) {
    .hero__slider__item--3rd .hero__slider__item__message {
        right: 22%;
        top: 51%;
    }
}

.hero__slider__item--4th .hero__slider__item__message {
    left: 15%;
    top: 15%;
}

@media (min-width: 768px) {
    .hero__slider__item--4th .hero__slider__item__message {
        left: 32%;
        top: 24%;
    }
}

.hero__slider .slick-prev, .hero__slider .slick-next {
    -webkit-appearance: none;
    background: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    border: none;
    bottom: 0;
    display: block;
    height: 25px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 25px;
    z-index: 1;
}

@media (min-width: 768px) {
    .hero__slider .slick-prev, .hero__slider .slick-next {
        background-size: 50px 50px;
        height: 50px;
        width: 50px;
    }
}

.hero__slider .slick-prev:focus, .hero__slider .slick-next:focus {
    outline: none;
}

.hero__slider .slick-prev {
    background-image: url(../images/icons/icon-circled-left.svg);
    left: 8px;
    -webkit-transition: left .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: left .2s cubic-bezier(.645, .045, .355, 1);
            transition: left .2s cubic-bezier(.645, .045, .355, 1);
}

.hero__slider .slick-prev:hover {
    left: 3px;
}

@media (min-width: 1500px) {
    .hero__slider .slick-prev {
        left: -25px;
    }
    .hero__slider .slick-prev:hover {
        left: -30px;
    }
}

.hero__slider .slick-next {
    background-image: url(../images/icons/icon-circled-right.svg);
    right: 8px;
    -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
            transition: right .2s cubic-bezier(.645, .045, .355, 1);
}

.hero__slider .slick-next:hover {
    right: 3px;
}

@media (min-width: 1500px) {
    .hero__slider .slick-next {
        right: -25px;
    }
    .hero__slider .slick-next:hover {
        right: -30px;
    }
}

.sub-hero {
    background-image: url(../images/stocks/hero-sub-01.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 180px;
    margin: 0 auto 30px;
    max-width: 1365px;
    width: 100%;
}

@media (min-width: 768px) {
    .sub-hero {
        height: 273px;
    }
}

.sub-hero--message {
    background-image: url(../images/stocks/hero-sub-01.jpg);
}

.sub-hero--service {
    background-image: url(../images/stocks/hero-sub-02.jpg);
}

.sub-hero--equipment {
    background-image: url(../images/stocks/hero-sub-03.jpg);
}

.sub-hero--ozone {
    background-image: url(../images/stocks/hero-sub-03.jpg);
}

.sub-hero--case {
    background-image: url(../images/stocks/hero-sub-03.jpg);
}

.sub-hero--news {
    background-image: url(../images/stocks/hero-sub-04.jpg);
}


/* --------------------
 Page - message
-------------------- */
.message-doctor {
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .message-doctor {
        float: right;
        margin-bottom: 0;
        padding: 0 0 0 15px;
    }
}

.message-doctor__thumb {
    margin: 0 0 10px;
    text-align: center;
}

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

.message-philosophy__item {
    margin: 0 0 30px;
}

@media (min-width: 768px) {
    .message-philosophy__item {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -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: stretch;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.message-philosophy__item__num {
    -webkit-align-items: center;
            align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-align: center;
    -webkit-box-flex: 0;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-grow: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
    -ms-flex-pack: center;
    -ms-flex-positive: 0;
    -webkit-flex-shrink: 0;
            flex-shrink: 0;
    -webkit-justify-content: center;
            justify-content: center;
    margin: 0 0 15px;
    padding: 15px;
    position: relative;
    width: 100%;
}

@media (min-width: 768px) {
    .message-philosophy__item__num {
        margin-bottom: 0;
        width: 300px;
    }
}

.message-philosophy__item__num img {
    z-index: 1;
}

.message-philosophy__item__num:before {
    bottom: 0;
    content: '';
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.message-philosophy__item__num--01 {
    background-image: url(../images/pages/message/message-philosophy-01-bg.jpg);
}

.message-philosophy__item__num--01:before {
    background-color: rgba(0, 142, 58, .85);
}

.message-philosophy__item__num--02 {
    background-image: url(../images/pages/message/message-philosophy-02-bg.jpg);
}

.message-philosophy__item__num--02:before {
    background-color: rgba(3, 110, 181, .85);
}

.message-philosophy__item__num--03 {
    background-image: url(../images/pages/message/message-philosophy-03-bg.jpg);
}

.message-philosophy__item__num--03:before {
    background-color: rgba(192, 13, 35, .85);
}

.message-philosophy__item-content {
    padding: 0;
}

@media (min-width: 768px) {
    .message-philosophy__item-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        margin-left: 30px;
        padding: 10px 0;
    }
}

.message-philosophy__item-content__desc {
    margin: 0;
}

.message-philosophy__item-content a {
    text-decoration: underline;
    -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);
}

.message-philosophy__item-content a:hover, .message-philosophy__item-content a:focus {
    opacity: .85;
    text-decoration: none;
}

.message-philosophy__item__title {
    background-image: url(../images/icons/icon-circle.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 14px auto;
    font-size: 1.6rem;
    margin: 0 0 5px;
    padding-left: 20px;
}

.message-philosophy__item__desc {
    margin: 0 0 15px;
}

.message-philosophy__item__desc .colored {
    color: #d7000f;
}

.message-philosophy__item__desc:last-child {
    margin-bottom: 0;
}

/* --------------------
 Page - service
-------------------- */
.service-target {
    border: 3px solid #eaf6fd;
    margin: 0 0 50px;
    padding: 30px 10px;
    position: relative;
}

.service-target:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 480px) {
    .service-target {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.service-target__title {
    color: #172a85;
    display: block;
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1;
    margin: 0 0 100px;
    text-align: center;
}

.service-target-l {
    margin: 0 0 50px;
    position: relative;
}

.service-target-l:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 992px) {
    .service-target-l {
        float: left;
        margin-bottom: 0;
        width: 55%;
    }
}

.service-target-l__balloon {
    background-color: #bae2f8;
    border-radius: 10px;
    font-size: 1.2rem;
    left: 0;
    line-height: 14px;
    margin: auto;
    padding: 10px 15px 10px 15px;
    position: absolute;
    right: 0;
    top: -60px;
    -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);
    width: auto;
}

@media (min-width: 480px) {
    .service-target-l__balloon {
        font-size: 1.4rem;
        padding-right: 30px;
        width: 290px;
    }
}

.service-target-l__balloon:after {
    background-image: url(../images/icons/icon-triangle-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 14px;
    bottom: 0;
    content: '';
    display: block;
    height: 14px;
    margin: auto;
    position: absolute;
    right: 10px;
    top: 0;
    -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
            transition: right .2s cubic-bezier(.645, .045, .355, 1);
    width: 12px;
    z-index: 0;
}

.service-target-l__balloon:before {
    border: 10px solid transparent;
    border-top-color: #bae2f8;
    bottom: -20px;
    content: '';
    display: block;
    height: 20px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 20px;
    z-index: 0;
}

.service-target-l__balloon:hover, .service-target-l__balloon:focus {
    opacity: .85;
}

.service-target-l__balloon:hover:after, .service-target-l__balloon:focus:after {
    right: 7px;
}

.service-target-r:after {
    clear: both;
    content: '';
    display: block;
}

@media (min-width: 992px) {
    .service-target-r {
        float: left;
        width: 45%;
    }
}

.service-target__item {
    float: left;
}

.service-target__item__illust {
    height: 90px;
    line-height: 1;
    margin: 0 0 10px;
    text-align: center;
}

.service-target__item__title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    margin: 0 0 10px;
    text-align: center;
}

@media (min-width: 480px) {
    .service-target__item__title {
        font-size: 2.0rem;
    }
}

.service-target__item__tag {
    margin: auto;
}

.service-target__item__tag:after {
    clear: both;
    content: '';
    display: block;
}

.service-target__item__tag__item {
    color: #ffffff;
    display: block;
    float: left;
    font-size: 1.0rem;
    font-weight: 700;
    line-height: 1;
    padding: 3px 5px;
    text-align: center;
}

@media (min-width: 480px) {
    .service-target__item__tag__item {
        font-size: 1.2rem;
    }
}

.service-target__item__tag__item--blue {
    background-color: #8bb0dd;
}

.service-target__item__tag__item--lightblue {
    background-color: #7bcbde;
}

.service-target__item__tag__item--pink {
    background-color: #f4b5d0;
}

.service-target__item__tag__item--orange {
    background-color: #ffa96e;
}

.service-target__item__tag__item--purple {
    background-color: #a483c6;
}

.service-target__item__tag__item--green {
    background-color: #82c8a8;
}

.service-target__item__tag__item--red {
    background-color: #ff9f9f;
}

.service-target-l .service-target__item {
    padding: 0 5px;
    width: 50%;
}

.service-target-l .service-target__item__tag {
    max-width: 240px;
    width: 100%;
}

.service-target-l .service-target__item__tag__item {
    margin: 5px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .service-target-l .service-target__item__tag__item {
        margin-left: 5px;
        margin-right: 5px;
        width: 105px;
    }
}

@media (min-width: 768px) {
    .service-target-l .service-target__item__tag__item:last-child {
        width: 220px;
    }
}

.service-target-r .service-target__item {
    padding: 0 5px;
    width: 33.33333%;
}

.service-target-r .service-target__item__tag {
    max-width: 240px;
    width: 100%;
}

@media (min-width: 768px) {
    .service-target-r .service-target__item__tag {
        width: 120px;
    }
}

.service-target-r .service-target__item__tag__item {
    margin: 5px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .service-target-r .service-target__item__tag__item {
        width: 110px;
    }
}

.service-panel {
    margin: 0 -5px 50px;
}

@media (max-width: 767px) {
    .service-panel:after {
        clear: both;
        content: '';
        display: block;
    }
}

@media (min-width: 768px) {
    .service-panel {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -webkit-box-direction: normal;
        -webkit-box-orient: horizontal;
        -webkit-box-pack: justify;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        flex-wrap: wrap;
        -ms-flex-align: stretch;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -ms-flex-wrap: wrap;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.service-panel__item {
    float: left;
    height: 55px;
    margin: 0 0 10px;
    padding: 0 5px;
    text-align: center;
    width: 50%;
}

/*@media (max-width: 479px) {
    .service-panel__item:nth-child(7) {
        width: 100%;
    }
}*/

@media (min-width: 480px) and (max-width: 767px) {
    .service-panel__item:nth-child(5), .service-panel__item:nth-child(6), .service-panel__item:nth-child(7) {
        width: 33.33333%;
    }
}

@media (min-width: 480px) {
    .service-panel__item {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .service-panel__item {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        float: none;
        height: auto;
        margin: 0 0 10px;
        width: 25%;
    }
}

.service-panel__item-link {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    font-size: 1.4rem;
    height: 100%;
    -webkit-justify-content: center;
            justify-content: center;
    line-height: 1.1;
    padding: 5px 5px 25px;
    position: relative;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.service-panel__item-link small {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .service-panel__item-link {
        font-size: 1.8rem;
    }
    .service-panel__item-link small {
        font-size: 1.4rem;
    }
}

.service-panel__item-link:after {
    background-image: url(../images/icons/icon-triangle-bottom-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 11px;
    bottom: 8px;
    content: '';
    display: block;
    height: 11px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
            transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
    width: 12px;
    z-index: 0;
}

.service-panel__item-link:hover, .service-panel__item-link:focus {
    color: #ffffff;
}

.service-panel__item-link:hover:after, .service-panel__item-link:focus:after {
    bottom: 3px;
}

.service-panel__item-link--blue {
    background-color: #8bb0dd;
}

.service-panel__item-link--blue:hover, .service-panel__item-link--blue:focus {
    background-color: #6495d1;
}

.service-panel__item-link--lightblue {
    background-color: #7bcbde;
}

.service-panel__item-link--lightblue:hover, .service-panel__item-link--lightblue:focus {
    background-color: #52bbd4;
}

.service-panel__item-link--pink {
    background-color: #f4b5d0;
}

.service-panel__item-link--pink:hover, .service-panel__item-link--pink:focus {
    background-color: #ed89b4;
}

.service-panel__item-link--orange {
    background-color: #ffa96e;
}

.service-panel__item-link--orange:hover, .service-panel__item-link--orange:focus {
    background-color: #ff8b3b;
}

.service-panel__item-link--purple {
    background-color: #a483c6;
}

.service-panel__item-link--purple:hover, .service-panel__item-link--purple:focus {
    background-color: #8a60b6;
}

.service-panel__item-link--green {
    background-color: #82c8a8;
}

.service-panel__item-link--green:hover, .service-panel__item-link--green:focus {
    background-color: #5fb88f;
}

.service-panel__item-link--red {
    background-color: #ff9f9f;
}

.service-panel__item-link--red:hover, .service-panel__item-link--red:focus {
    background-color: #ff6c6c;
}

.service-panel__item-link--coral {
    background-color: #ff87aa;
}

.service-panel__item-link--coral:hover, .service-panel__item-link--coral:focus {
    background-color: #ff4f82;
}


.service-item {
    margin: 0 0 50px;
}

.service-item-head {
    border-bottom: 5px solid transparent;
}

.service-item-head__title {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    font-size: 1.4rem;
    height: 45px;
    -webkit-justify-content: center;
            justify-content: center;
    line-height: 1.1;
    text-align: center;
    width: 28.57143%;
}

@media (min-width: 480px) {
    .service-item-head__title {
        font-size: 1.6rem;
    }
}

@media (min-width: 768px) {
    .service-item-head__title {
        font-size: 1.8rem;
        width: 14.28571%;
    }
}

.service-item-main {
    padding: 15px;
}

@media (min-width: 768px) {
    .service-item-main-layout {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.service-item-main-layout .service-item-main-content {
    margin: 0 0 15px;
}

@media (min-width: 768px) {
    .service-item-main-layout .service-item-main-content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        margin: 0;
        padding-right: 15px;
        width: auto;
    }
}

.service-item-main-layout .service-item-main-thumb {
    margin: 0 0 15px;
    text-align: center;
}

@media (min-width: 768px) {
    .service-item-main-layout .service-item-main-thumb {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin: 0;
        text-align: right;
        width: 220px;
    }
}

.service-item-main__title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.service-item-main__desc {
    margin: 0 0 15px;
}

.service-item-main__desc a {
    text-decoration: underline;
    -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);
}

.service-item-main__desc a:hover, .service-item-main__desc a:focus {
    opacity: .85;
    text-decoration: none;
}

.service-item-main__pickup {
    background-color: #ffffff;
    margin: 0 0 15px;
    padding: 10px 15px;
}

@media (min-width: 992px) {
    .service-item-main__pickup {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -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: 10px;
    }
}

@media (min-width: 992px) {
    .service-item-main__pickup-col {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        float: none;
        width: auto;
    }
}

.service-item-main__pickup__item {
    background-image: url(../images/icons/icon-circle.svg);
    background-position: left 5px;
    background-repeat: no-repeat;
    background-size: 14px auto;
    margin: 0 0 5px;
    padding-left: 20px;
}

.service-item-main__youtube {
    background-color: #ffffff;
    margin: 0 0 15px;
    padding: 10px 15px;
}

.service-item-main__youtube__desc {
    margin: 0 0 15px;
}

.service-item-main__youtube-container {
    margin-left: -10px;
    margin-right: -10px;
}

.service-item-main__youtube-container:after {
    clear: both;
    content: '';
    display: block;
}

.service-item-main__youtube__item {
    float: left;
    margin-bottom: 15px;
    padding: 0 10px;
    text-align: center;
    width: 100%;
}

@media (min-width: 480px) {
    .service-item-main__youtube__item {
        width: 50%;
    }
}

@media (min-width: 768px) {
    .service-item-main__youtube__item {
        margin-bottom: 0;
        width: 25%;
    }
}

.service-item-main__youtube__item-link {
    display: inline-block;
    text-decoration: none;
    -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);
}

.service-item-main__youtube__item-link:hover, .service-item-main__youtube__item-link:focus {
    opacity: .85;
}

.service-item-main__youtube__item__video {
    margin: 0 0 5px;
    text-align: center;
}

.service-item-main__youtube__item__title {
    font-size: 1.4rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.service-item-main__case {
    background-color: #ffffff;
    margin: 15px 0;
    padding: 10px 10px 0;
}

.service-item-main__case__title {
    margin: 0 0 10px;
}

.service-item-main__case__list {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    flex-wrap: wrap;
    -ms-flex-align: start;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
}

.service-item-main__case__list__item {
    padding: 10px;
    width: 50%;
}

@media (min-width: 768px) {
    .service-item-main__case__list__item {
        padding: 15px 20px;
        width: 25%;
    }
}

.service-item-main__case__list__item__link {
    display: block;
    text-align: center;
}

.service-item--blue .service-item-head {
    border-bottom-color: #8bb0dd;
}

.service-item--blue .service-item-head__title {
    background-color: #8bb0dd;
    margin-left: 0;
}

.service-item--blue .service-item-main {
    background-color: rgba(139, 176, 221, .1);
}

.service-item--lightblue .service-item-head {
    border-bottom-color: #7bcbde;
}

.service-item--lightblue .service-item-head__title {
    background-color: #7bcbde;
    margin-left: 4.7619%;
}

@media (min-width: 768px) {
    .service-item--lightblue .service-item-head__title {
        margin-left: 12.5%;
    }
}

.service-item--lightblue .service-item-main {
    background-color: rgba(123, 203, 222, .1);
}

.service-item--pink .service-item-head {
    border-bottom-color: #f4b5d0;
}

.service-item--pink .service-item-head__title {
    background-color: #f4b5d0;
    margin-left: 14.28571%;
}

@media (min-width: 768px) {
    .service-item--pink .service-item-head__title {
        margin-left: 25%;
    }
}

.service-item--pink .service-item-main {
    background-color: rgba(244, 181, 208, .1);
}

.service-item--orange .service-item-head {
    border-bottom-color: #ffa96e;
}

.service-item--orange .service-item-head__title {
    background-color: #ffa96e;
    margin-left: 28.57143%;
}

@media (min-width: 768px) {
    .service-item--orange .service-item-head__title {
        margin-left: 37.5%;
    }
}

.service-item--orange .service-item-main {
    background-color: rgba(255, 169, 110, .1);
}

.service-item--purple .service-item-head {
    border-bottom-color: #a483c6;
}

.service-item--purple .service-item-head__title {
    background-color: #a483c6;
    margin-left: 42.85714%;
}

@media (min-width: 768px) {
    .service-item--purple .service-item-head__title {
        margin-left: 50%;
    }
}

.service-item--purple .service-item-main {
    background-color: rgba(164, 131, 198, .1);
}

.service-item--green .service-item-head {
    border-bottom-color: #82c8a8;
}

.service-item--green .service-item-head__title {
    background-color: #82c8a8;
    margin-left: 57.14286%;
}

@media (min-width: 768px) {
    .service-item--green .service-item-head__title {
        margin-left: 62.5%;
    }
}

.service-item--green .service-item-main {
    background-color: rgba(130, 200, 168, .1);
}

.service-item--red .service-item-head {
    border-bottom-color: #ff9f9f;
}

.service-item--red .service-item-head__title {
    background-color: #ff9f9f;
    margin-left: 65%;
}

@media (min-width: 768px) {
    .service-item--red .service-item-head__title {
        margin-left: 75%;
    }
}


.service-item--red .service-item-main {
    background-color: rgba(255, 159, 159, .1);
}

.service-item--coral .service-item-head {
    border-bottom-color: #ff87aa;
}

.service-item--coral .service-item-head__title {
    background-color: #ff87aa;
    margin-left: auto;
    margin-right: 0;
}

.service-item--coral .service-item-main {
    background-color: rgba(255, 135, 170, .1);
}

.service-dog-cat {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .service-dog-cat {
        float: right;
        margin-bottom: 0;
        padding: 0 0 0 15px;
    }
}

.service-dog-cat__thumb {
    margin: 0 0 10px;
    text-align: center;
}

.service-dog-cat-apply {
    margin: 0 0 50px;
}

.service-dog-cat-apply__item {
    margin: 0 0 10px;
    text-align: left;
}

@media (min-width: 425px) {
    .service-dog-cat-apply__item {
        text-align: center;
    }
}

.service-dog-cat-apply__item__link {
    font-size: 1.6rem;
    text-decoration: underline;
    -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);
}

.service-dog-cat-apply__item__link:before {
    content: '▶';
    padding-right: 8px;
}

.active .service-dog-cat-apply__item__link:before {
    content: '▼';
    padding-right: 8px;
}

.service-dog-cat-apply__item__link:hover, .service-dog-cat-apply__item__link:focus {
    cursor: pointer;
    opacity: .85;
    text-decoration: none;
}

.service-dog-cat-apply__item__decs {
    display: none;
    padding-bottom: 30px;
}

.service-dog-cat-apply__item__title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 15px;
}

.service-dog-cat-apply__item__title__text {
    background: transparent;
    background: -o-linear-gradient(bottom, #ffffff 0px, #ffffff 5px, #ffee00 5px, #ffee00 10px, transparent 10px, transparent 100%);
    background:    linear-gradient(to top, #ffffff 0px, #ffffff 5px, #ffee00 5px, #ffee00 10px, transparent 10px, transparent 100%);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.service-dog-cat-apply__item__subtitle {
    background-image: url(../images/icons/icon-circle.svg);
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 14px auto;
    font-size: 1.6rem;
    margin: 0 0 5px;
    padding-left: 20px;
}

.service-dog-cat-apply__item__close {
    cursor: pointer;
    margin: 20px 0;
    text-align: center;
    text-decoration: underline;
}

.service-dog-cat-apply__button {
    -webkit-align-items: center;
            align-items: center;
    background-color: #2b3667;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: center;
    color: #ffffff;
    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;
    font-size: 1.6rem;
    height: 50px;
    -webkit-justify-content: center;
            justify-content: center;
    margin: auto auto 30px;
    max-width: 320px;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.service-dog-cat-apply__button img {
    margin-right: 10px;
}

.service-dog-cat-apply__button:hover, .service-dog-cat-apply__button:focus {
    background-color: #3a498b;
    color: #ffffff;
}

.service-dog-cat-apply__note {
    text-align: center;
}


/* --------------------
 Page - equipment
-------------------- */
.equipment-panel {
    margin: 0 -5px 50px;
}

@media (max-width: 767px) {
    .equipment-panel:after {
        clear: both;
        content: '';
        display: block;
    }
}

@media (min-width: 768px) {
    .equipment-panel {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -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: stretch;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.equipment-panel__item {
    float: left;
    height: 55px;
    margin: 0 0 10px;
    padding: 0 5px;
    text-align: center;
    width: 50%;
}

@media (max-width: 479px) {
    .equipment-panel__item:nth-child(7) {
        width: 100%;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .equipment-panel__item:nth-child(5), .equipment-panel__item:nth-child(6), .equipment-panel__item:nth-child(7) {
        width: 33.33333%;
    }
}

@media (min-width: 480px) {
    .equipment-panel__item {
        width: 25%;
    }
}

@media (min-width: 768px) {
    .equipment-panel__item {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        float: none;
        height: auto;
        margin: 0;
        width: 14.28571%;
    }
}

.equipment-panel__item-link {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    font-size: 1.4rem;
    height: 100%;
    -webkit-justify-content: center;
            justify-content: center;
    line-height: 1.1;
    padding: 15px 5px 30px;
    position: relative;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
    width: 100%;
}

.equipment-panel__item-link small {
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .equipment-panel__item-link {
        font-size: 1.8rem;
    }
    .equipment-panel__item-link small {
        font-size: 1.4rem;
    }
}

.equipment-panel__item-link:after {
    background-image: url(../images/icons/icon-triangle-bottom-white.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 12px 11px;
    bottom: 8px;
    content: '';
    display: block;
    height: 11px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    -webkit-transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
            transition: bottom .2s cubic-bezier(.645, .045, .355, 1);
    width: 12px;
    z-index: 0;
}

.equipment-panel__item-link:hover, .equipment-panel__item-link:focus {
    color: #ffffff;
}

.equipment-panel__item-link:hover:after, .equipment-panel__item-link:focus:after {
    bottom: 3px;
}

.equipment-panel__item-link--blue {
    background-color: #8bb0dd;
}

.equipment-panel__item-link--blue:hover, .equipment-panel__item-link--blue:focus {
    background-color: #6495d1;
}

.equipment-panel__item-link--lightblue {
    background-color: #7bcbde;
}

.equipment-panel__item-link--lightblue:hover, .equipment-panel__item-link--lightblue:focus {
    background-color: #52bbd4;
}

.equipment-panel__item-link--pink {
    background-color: #f4b5d0;
}

.equipment-panel__item-link--pink:hover, .equipment-panel__item-link--pink:focus {
    background-color: #ed89b4;
}

.equipment-panel__item-link--green {
    background-color: #82c8a8;
}

.equipment-panel__item-link--green:hover, .equipment-panel__item-link--green:focus {
    background-color: #5fb88f;
}

.equipment-item {
    margin: 0 0 90px;
}

.equipment-item__title {
    border-bottom: 5px solid transparent;
    margin: 0 0 20px;
}

.equipment-item__title__text {
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-align: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    color: #ffffff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    -ms-flex-align: center;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: center;
    font-size: 1.4rem;
    height: 45px;
    -webkit-justify-content: center;
            justify-content: center;
    line-height: 1.1;
    text-align: center;
    width: 25%;
}

@media (min-width: 480px) {
    .equipment-item__title__text {
        font-size: 1.6rem;
    }
}

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

.equipment-item__desc {
    margin: 0 0 30px;
}

.equipment-item__menu {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

@media (min-width: 480px) {
    .equipment-item__menu {
        text-align: center;
    }
}

.equipment-item__menu__item {
    border-right: none;
    display: block;
    font-size: 1.4rem;
    letter-spacing: .15em;
    line-height: 1;
    margin: 0 0 5px;
    padding: 0 20px 0 0;
}

@media (min-width: 480px) {
    .equipment-item__menu__item {
        border-right: 1px solid transparent;
        display: inline-block;
        font-size: 1.6rem;
    }
}

@media (min-width: 480px) {
    .equipment-item__menu__item {
        padding-left: 20px;
    }
}

@media (min-width: 480px) {
    .equipment-item__menu__item:first-child {
        border-left: 1px solid transparent;
    }
}

.equipment-item__menu__item__link {
    background: transparent;
    background: -o-linear-gradient(bottom, #ffffff 0px, #ffffff 3px, #ffee00 3px, #ffee00 6px, transparent 6px, transparent 100%);
    background:    linear-gradient(to top, #ffffff 0px, #ffffff 3px, #ffee00 3px, #ffee00 6px, transparent 6px, transparent 100%);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 0 100%;
    font-weight: 300;
    position: relative;
    -webkit-transition: background-size .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-size .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-size .2s cubic-bezier(.645, .045, .355, 1);
}

.equipment-item__menu__item__link .inverse {
    color: #000000;
}

.equipment-item__menu__item__link .inverse:hover, .equipment-item__menu__item__link .inverse:focus {
    color: #000000;
}

.equipment-item__menu__item__link:hover, .equipment-item__menu__item__link:focus {
    background-size: 100% 100%;
}

.equipment-item__menu__item__link:hover {
    opacity: .85;
}

.equipment-item__menu__item__link.active {
    background-size: 100% 100%;
    font-weight: 500;
}

.equipment-item-detail-item {
    display: none;
}

.equipment-item-detail-item:after {
    clear: both;
    content: '';
    display: block;
}

.equipment-item-detail-item:first-child {
    display: block;
}

.equipment-item-detail-item__photo {
    margin: 0 auto 30px;
}

@media (max-width: 767px) {
    .equipment-item-detail-item__photo {
        max-width: 380px;
    }
}

@media (min-width: 768px) {
    .equipment-item-detail-item__photo {
        float: left;
        margin-bottom: 0;
        width: 380px;
    }
}

.equipment-item-detail-item__photo__slider {
    overflow: hidden;
}

.equipment-item-detail-item__photo__slider__item {
    position: relative;
}

.equipment-item-detail-item__photo__slider__item:focus {
    outline: none;
}

.equipment-item-detail-item__photo__slider__item img {
    margin: auto;
}

.equipment-item-detail-item__photo__slider .slick-list {
    left: -1px;
    position: relative;
}

.equipment-item-detail-item__photo__slider .slick-prev, .equipment-item-detail-item__photo__slider .slick-next {
    -webkit-appearance: none;
    background: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
    border: none;
    bottom: 0;
    display: block;
    height: 25px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 25px;
    z-index: 1;
}

.equipment-item-detail-item__photo__slider .slick-prev:focus, .equipment-item-detail-item__photo__slider .slick-next:focus {
    outline: none;
}

.equipment-item-detail-item__photo__slider .slick-prev {
    background-image: url(../images/icons/icon-circled-left.svg);
    left: 0;
    -webkit-transition: left .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: left .2s cubic-bezier(.645, .045, .355, 1);
            transition: left .2s cubic-bezier(.645, .045, .355, 1);
}

.equipment-item-detail-item__photo__slider .slick-prev:hover {
    left: -3px;
}

.equipment-item-detail-item__photo__slider .slick-next {
    background-image: url(../images/icons/icon-circled-right.svg);
    right: 0;
    -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
            transition: right .2s cubic-bezier(.645, .045, .355, 1);
}

.equipment-item-detail-item__photo__slider .slick-next:hover {
    right: -3px;
}

.equipment-item-detail-item__photo__slider .slick-track {
    -webkit-align-items: center;
            align-items: center;
    -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;
    height: 100%;
    -webkit-justify-content: center;
            justify-content: center;
}

@media (min-width: 768px) {
    .equipment-item-detail-item__main {
        margin-left: 430px;
        overflow: hidden;
        padding-top: 30px;
    }
}

.equipment-item-detail-item__main__title {
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 15px;
}

.equipment-item-detail-item__main__title__text {
    background: transparent;
    background: -o-linear-gradient(bottom, #ffffff 0px, #ffffff 5px, #ffee00 5px, #ffee00 10px, transparent 10px, transparent 100%);
    background:    linear-gradient(to top, #ffffff 0px, #ffffff 5px, #ffee00 5px, #ffee00 10px, transparent 10px, transparent 100%);
    background-position: bottom left;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.equipment-item:nth-child(1) .equipment-item__title__text {
    margin-left: 0;
}

.equipment-item:nth-child(2) .equipment-item__title__text {
    margin-left: 25%;
}

.equipment-item:nth-child(3) .equipment-item__title__text {
    margin-left: 50%;
}

.equipment-item:nth-child(4) .equipment-item__title__text {
    margin-left: 75%;
}

.equipment-item--blue .equipment-item__title {
    border-bottom-color: #8bb0dd;
}

.equipment-item--blue .equipment-item__title__text {
    background-color: #8bb0dd;
}

.equipment-item--blue .equipment-item__menu__item {
    border-color: #8bb0dd;
}

.equipment-item--blue .equipment-item__menu__item__link {
    color: #8bb0dd;
}

.equipment-item--lightblue .equipment-item__title {
    border-bottom-color: #7bcbde;
}

.equipment-item--lightblue .equipment-item__title__text {
    background-color: #7bcbde;
}

.equipment-item--lightblue .equipment-item__menu__item {
    border-color: #7bcbde;
}

.equipment-item--lightblue .equipment-item__menu__item__link {
    color: #7bcbde;
}

.equipment-item--pink .equipment-item__title {
    border-bottom-color: #f4b5d0;
}

.equipment-item--pink .equipment-item__title__text {
    background-color: #f4b5d0;
}

.equipment-item--pink .equipment-item__menu__item {
    border-color: #f4b5d0;
}

.equipment-item--pink .equipment-item__menu__item__link {
    color: #f4b5d0;
}

.equipment-item--green .equipment-item__title {
    border-bottom-color: #82c8a8;
}

.equipment-item--green .equipment-item__title__text {
    background-color: #82c8a8;
}

.equipment-item--green .equipment-item__menu__item {
    border-color: #82c8a8;
}

.equipment-item--green .equipment-item__menu__item__link {
    color: #82c8a8;
}

/* --------------------
 Page - ozone
-------------------- */
.ozone-about {
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .ozone-about {
        float: right;
        margin-bottom: 0;
        padding: 0 0 0 15px;
    }
}

.ozone-about__fig {
    margin: 0 0 10px;
    text-align: center;
}

.ozone-graph {
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .ozone-graph {
        float: right;
        margin-bottom: 0;
        padding: 0 0 0 15px;
    }
}

.ozone-graph__fig {
    line-height: 1;
    margin: 0 0 3px;
    text-align: center;
}

.ozone-graph__note {
    font-size: 1.4rem;
    line-height: 1.2;
    margin: 0;
    text-align: left;
}

@media (min-width: 768px) {
    .ozone-func__row {
        -webkit-align-items: stretch;
                align-items: stretch;
        -webkit-box-align: stretch;
        -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: stretch;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
        margin: 0 -10px 20px;
    }
}

.ozone-func__row__col {
    margin: 0 0 15px;
    padding: 0;
}

@media (min-width: 768px) {
    .ozone-func__row__col {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 1;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        padding: 0 10px;
        width: 33.33333%;
    }
}

.ozone-func-item {
    background-color: #eaf6fd;
    height: 100%;
    padding: 15px;
}

.ozone-func-item__title {
    color: #172a85;
    font-size: 2.0rem;
    font-weight: 700;
    margin: 0 0 5px;
}

@media (min-width: 768px) {
    .ozone-func-item__title {
        text-align: center;
    }
}

.ozone-func-item__desc {
    margin: 0;
}

.ozone-func-item__overview {
    margin: 30px 0 0;
}

.ozone-func-item__overview__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 10px;
    text-align: center;
}

.ozone-func-item__overview__table-wrapper {
    margin: 0 0 5px;
    padding: 0 30px;
}

@media (max-width: 767px) {
    .ozone-func-item__overview__table-wrapper {
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        padding: 0 0 10px;
        white-space: nowrap;
        width: 100%;
    }
    .ozone-func-item__overview__table-wrapper::-webkit-scrollbar-track {
        background-color: #f1f1f1;
        border-radius: 1px;
    }
    .ozone-func-item__overview__table-wrapper::-webkit-scrollbar {
        background-color: #f1f1f1;
        height: 12px;
        width: 12px;
    }
    .ozone-func-item__overview__table-wrapper::-webkit-scrollbar-thumb {
        background-color: #172a85;
    }
}

.ozone-func-item__overview__table {
    background-color: #ffffff;
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.ozone-func-item__overview__table > thead > tr > th, .ozone-func-item__overview__table > tbody > tr > th {
    text-align: center;
}

.ozone-func-item__overview__table > thead > tr > td, .ozone-func-item__overview__table > tbody > tr > td {
    text-align: right;
}

.ozone-func-item__overview__table > thead > tr > th, .ozone-func-item__overview__table > thead > tr > td, .ozone-func-item__overview__table > tbody > tr > th, .ozone-func-item__overview__table > tbody > tr > td {
    border-bottom: 1px solid #363636;
    border-right: 1px solid #363636;
    font-size: 1.4rem;
    font-weight: 300;
    padding: 10px 5px;
}

@media (min-width: 768px) {
    .ozone-func-item__overview__table > thead > tr > th, .ozone-func-item__overview__table > thead > tr > td, .ozone-func-item__overview__table > tbody > tr > th, .ozone-func-item__overview__table > tbody > tr > td {
        padding: 15px 10px;
    }
}

.ozone-func-item__overview__table > thead > tr > th:first-child, .ozone-func-item__overview__table > thead > tr > td:first-child, .ozone-func-item__overview__table > tbody > tr > th:first-child, .ozone-func-item__overview__table > tbody > tr > td:first-child {
    border-left: 1px solid #363636;
}

.ozone-func-item__overview__table > thead > tr:first-child > th, .ozone-func-item__overview__table > thead > tr:first-child > td, .ozone-func-item__overview__table > tbody > tr:first-child > th, .ozone-func-item__overview__table > tbody > tr:first-child > td {
    border-top: 1px solid #363636;
}

.ozone-func-item__overview__note {
    text-align: left;
}

@media (min-width: 768px) {
    .ozone-func-item__overview__note {
        padding: 0 30px;
        text-align: right;
    }
}

.ozone-effect__fig {
    margin-bottom: 30px;
}

@media (min-width: 480px) {
    .ozone-effect__fig {
        float: left;
        margin-bottom: 0;
        padding: 0 15px 0 0;
    }
}

.ozone-effect-case {
    margin: 0 0 30px;
}

.ozone-effect-case__title {
    color: #3e3a39;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 10px;
}

@media (min-width: 768px) {
    .ozone-effect-case-container {
        -webkit-align-items: center;
                align-items: center;
        -webkit-box-align: center;
        -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: center;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.ozone-effect-case__thumb {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .ozone-effect-case__thumb {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 15px;
    }
}

@media (min-width: 768px) {
    .ozone-effect-case__content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
    }
}

.ozone-effect-case-photo {
    text-align: center;
}

@media (min-width: 768px) {
    .ozone-effect-case-photo {
        -webkit-align-items: center;
                align-items: center;
        -webkit-box-align: center;
        -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: center;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.ozone-effect-case-photo__col {
    margin: 0 0 15px;
}

@media (min-width: 768px) {
    .ozone-effect-case-photo__col {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 1;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        margin-bottom: 0;
    }
    .ozone-effect-case-photo__col:first-child {
        padding-right: 10px;
    }
    .ozone-effect-case-photo__col:last-child {
        padding-left: 10px;
    }
}

.ozone-price__item {
    border-bottom: 1px solid #231815;
    padding: 10px 0;
    width: 100%;
}

@media (min-width: 768px) {
    .ozone-price__item {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.ozone-price__item__title {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 5px;
}

@media (min-width: 768px) {
    .ozone-price__item__title {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 15px;
        text-align: center;
        width: 200px;
    }
}

.ozone-price__item__content {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
}

@media (min-width: 768px) {
    .ozone-price__item__content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
    }
}

.ozone-summary {
    background-color: #eaf6fd;
    margin: 0 0 15px;
    padding: 15px;
}

@media (min-width: 768px) {
    .ozone-summary {
        padding: 20px;
    }
}

.ozone-summary__list {
    margin: auto auto 5px;
    max-width: 620px;
    width: 100%;
}

.ozone-summary__list__item {
    padding-left: 15px;
    position: relative;
}

.ozone-summary__list__item:before {
    background-color: #172a85;
    border-radius: 6px;
    content: '';
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 12px;
}

/* --------------------
 Page - case
-------------------- */
.case-search {
    background-color: #eeeeee;
    border-radius: 8px;
    margin: 0 0 60px;
    padding: 10px;
}

.case-search__title {
    margin-bottom: 10px;
    text-align: center;
}

.case-search__list {
    -webkit-align-items: flex-start;
            align-items: flex-start;
    -webkit-box-align: start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -webkit-box-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display:         flex;
    flex-wrap: wrap;
    -ms-flex-align: start;
    -ms-flex-wrap: wrap;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}

.case-search__list__button {
    position: relative;
    width: 50%;
}

@media (min-width: 768px) {
    .case-search__list__button {
        width: 25%;
    }
}

.case-search__list__button .tag--blue:hover, .case-search__list__button .tag--blue:focus {
    background-color: #6495d1;
}
.case-search__list__button .tag--lightblue:hover, .case-search__list__button .tag--lightblue:focus {
    background-color: #52bbd4;
}
.case-search__list__button .tag--pink:hover, .case-search__list__button .tag--pink:focus {
    background-color: #ed89b4;
}
.case-search__list__button .tag--orange:hover, .case-search__list__button .tag--orange:focus {
    background-color: #ff8b3b;
}
.case-search__list__button .tag--purple:hover, .case-search__list__button .tag--purple:focus {
    background-color: #8a60b6;
}
.case-search__list__button .tag--green:hover, .case-search__list__button .tag--green:focus {
    background-color: #5fb88f;
}
.case-search__list__button .tag--red:hover, .case-search__list__button .tag--red:focus {
    background-color: #ff9f9f;
}
.case-search__list__button .tag--coral:hover, .case-search__list__button .tag--coral:focus {
    background-color: #ff4f82;
}



.case-search__list__button__link {
    color: #fff;
    display: block;
    margin: 10px;
    padding: 10px 30px 10px 10px;
    -webkit-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
            transition: background-color .2s cubic-bezier(.645, .045, .355, 1);
}

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

.case-search__list__button__link::after {
    background-image: url("../images/icons/icon-loupe.svg");
    background-repeat: no-repeat;
    content: '';
    height: 22px;
    position: absolute;
    right: 20px;
    width: 22px;
}

.case-search__list__button__link:hover,
.case-search__list__button__link:focus {
    color: #fff;
}


.case-list {
    margin: 0 0 30px;
}

.case-list__item {
    border-bottom: 1px solid #cccccc;
    margin: 0 0 15px;
    padding: 15px 0;
}

.case-list__item:first-child {
    border-top: 1px solid #cccccc;
}

.case-list__item-link {
    display: block;
    padding: 0;
    -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);
}

@media (min-width: 480px) {
    .case-list__item-link {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: start;
        padding-left: 30px;
        padding-right: 90px;
        position: relative;
    }
    .case-list__item-link:after {
        background-image: url(../images/icons/icon-angle-right.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 12px 22px;
        bottom: 0;
        content: '';
        height: 22px;
        margin: auto;
        position: absolute;
        right: 35px;
        top: 0;
        -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
             -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
                transition: right .2s cubic-bezier(.645, .045, .355, 1);
        width: 12px;
    }
}

.case-list__item-link:hover, .case-list__item-link:focus {
    opacity: .85;
}

@media (min-width: 480px) {
    .case-list__item-link:hover:after, .case-list__item-link:focus:after {
        right: 30px;
    }
}

.case-list__item__thumb {
	height: 150px;
    margin: 0 0 15px;
	overflow: hidden;
	position: relative;
    text-align: center;
	width: 150px;
}

.case-list__item__thumb img{
	left: 50%;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
 }

@media (min-width: 480px) {
    .case-list__item__thumb {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 20px;
        text-align: left;
    }
}

@media (min-width: 480px) {
    .case-list__item__content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
    }
}

.case-list__item__content__tag {
    margin: 0 0 10px;
}

.case-list__item__content__title {
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0 0 10px;
    text-decoration: underline;
}

.case-list__item__content__desc {
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.case-list__item__content__more {
    margin: 0;
    text-align: right;
    text-decoration: underline;
}

.case-list__item-link:hover .case-list__item__content__title, .case-list__item-link:hover .case-list__item__content__more {
    text-decoration: none;
}

.case-detail-head {
    border-bottom: 1px solid #cccccc;
    margin: 0 0 30px;
    padding: 20px 0;
}

.case-detail-head:after {
    clear: both;
    content: '';
    display: block;
}

.case-detail-head__tag {
    float: left;
    margin: 0;
    padding-top: 5px;
    width: 100px;
}

.case-detail-head__title {
    font-size: 2.0rem;
    font-weight: 400;
    margin: 0 0 0 120px;
}

.case-detail-content > p {
    margin: 0 0 2em;
}

.case-detail-text  {
	margin-bottom: 30px;
}

.case-detail-item {
    margin: 0 0 2em;
}

@media (min-width: 480px) {
    .case-detail-item {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.case-detail-item__thumb {
    margin: 0 0 10px;
    text-align: center;
}

@media (min-width: 480px) {
    .case-detail-item__thumb {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin: 0;
        margin-right: 30px;
        text-align: left;
        width: 260px;
    }
}

.case-detail-item__content {
    margin: 0;
    text-align: center;
}

@media (min-width: 480px) {
    .case-detail-item__content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        text-align: left;
    }
}

.case-detail-action {
    margin-top: 50px;
    text-align: center;
}

.case-detail-action__link {
    color: #172a85;
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    text-decoration: underline;
}

.case-detail-action__link:before {
    color: #172a85;
    content: '◀';
    left: 0;
    position: relative;
    -webkit-transition: left .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: left .2s cubic-bezier(.645, .045, .355, 1);
            transition: left .2s cubic-bezier(.645, .045, .355, 1);
}

.case-detail-action__link:hover, .case-detail-action__link:focus {
    color: #172a85;
    opacity: .85;
    text-decoration: none;
}

.case-detail-action__link:hover:before, .case-detail-action__link:focus:before {
    left: -3px;
}

/* --------------------
 Page - news
-------------------- */
.news-list {
    margin: 0 0 30px;
}

.news-list__item {
    border-bottom: 1px solid #cccccc;
    padding: 15px 0;
}

.news-list__item:first-child {
    border-top: 1px solid #cccccc;
}

.news-list__item-link {
    display: block;
    padding: 0;
    -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);
	position: relative;
}
.news-list__item-link:after {
	background-image: url(../images/icons/icon-angle-right.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 12px 22px;
	bottom: 0;
	content: '';
	height: 22px;
	margin: auto;
	position: absolute;
	right: 20px;
	top: 0;
	-webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
		 -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
			transition: right .2s cubic-bezier(.645, .045, .355, 1);
	width: 12px;
}

@media (min-width: 480px) {
    .news-list__item-link {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display:         flex;
        -ms-flex-align: start;
        padding-left: 30px;
        padding-right: 90px;
        position: relative;
    }
    .news-list__item-link:after {
        background-image: url(../images/icons/icon-angle-right.svg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 12px 22px;
        bottom: 0;
        content: '';
        height: 22px;
        margin: auto;
        position: absolute;
        right: 35px;
        top: 0;
        -webkit-transition: right .2s cubic-bezier(.645, .045, .355, 1);
             -o-transition: right .2s cubic-bezier(.645, .045, .355, 1);
                transition: right .2s cubic-bezier(.645, .045, .355, 1);
        width: 12px;
    }
}

.news-list__item-link:hover, .case-list__item-link:focus {
    opacity: .85;
}

@media (min-width: 480px) {
    .news-list__item-link:hover:after, .case-list__item-link:focus:after {
        right: 30px;
    }
}

.news-list__item__date {
	color: #172a85;
}

@media (min-width: 480px) {
    .news-list__item__date {
        -webkit-box-flex: 0;
        -webkit-flex-grow: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
        -ms-flex-positive: 0;
        -webkit-flex-shrink: 0;
                flex-shrink: 0;
        margin-bottom: 0;
        margin-right: 20px;
        text-align: left;
    }
}

.news-list__item__content__title {
    font-size: 1.6rem;
    font-weight: 500;
    text-decoration: underline;
}

.news-list__item-link:hover .news-list__item__content__title, .news-list__item-link:hover .news-list__item__content__more {
    text-decoration: none;
}


.news-detail-head {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
    margin: 0 0 30px;
    padding: 20px 0;
}

@media (min-width: 480px) {
	.news-detail-head {
		padding: 20px 30px;
	}
}

.news-detail-head:after {
    clear: both;
    content: '';
    display: block;
}

.news-detail-head__title {
    font-size: 2.0rem;
    font-weight: 400;
    margin: 0 0 0 100px;
}

.news-detail-head__date {
	color: #172a85;
    float: left;
    margin: 0;
    padding-top: 5px;
    width: 100px;
}

.news-detail-item {
    margin: 0 0 2em;
}

@media (min-width: 480px) {
    .news-detail-item {
        -webkit-align-items: flex-start;
                align-items: flex-start;
        -webkit-box-align: start;
        -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: start;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
                justify-content: space-between;
    }
}

.news-detail-item__thumb {
    margin: 0 0 30px;
    text-align: center;
}

.news-detail-item__content {
    margin: 0;
    text-align: center;
}

@media (min-width: 480px) {
    .news-detail-item__content {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
                flex-grow: 1;
        -ms-flex-negative: 1;
        -ms-flex-positive: 1;
        -webkit-flex-shrink: 1;
                flex-shrink: 1;
        text-align: left;
    }
}

.news-detail-action {
    margin-top: 50px;
    text-align: center;
}

.news-detail-action__link {
    color: #172a85;
    font-size: 1.4rem;
    font-weight: 400;
    position: relative;
    text-decoration: underline;
}

.news-detail-action__link:before {
    color: #172a85;
    content: '◀';
    left: 0;
    position: relative;
    -webkit-transition: left .2s cubic-bezier(.645, .045, .355, 1);
         -o-transition: left .2s cubic-bezier(.645, .045, .355, 1);
            transition: left .2s cubic-bezier(.645, .045, .355, 1);
}

.news-detail-action__link:hover, .case-detail-action__link:focus {
    color: #172a85;
    opacity: .85;
    text-decoration: none;
}

.news-detail-action__link:hover:before, .news-detail-action__link:focus:before {
    left: -3px;
}



/* --------------------
 Page - access
-------------------- */
.access-map__viewer {
    height: 0;
    margin: 0 0 5px;
    padding-top: 62.5%;
    position: relative;
    width: 100%;
}

.access-map__viewer iframe {
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 0;
}

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

.access-map__action__link {
    text-decoration: underline;
}

.access-map__action__link:hover, .access-map__action__link:focus {
    text-decoration: none;
}

.mdical-info__table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

.mdical-info__table > tbody > tr > th, .mdical-info__table > tbody > tr > td {
    border-bottom: 1px solid #231815;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 15px;
}

@media (max-width: 479px) {
    .mdical-info__table > tbody > tr > th, .mdical-info__table > tbody > tr > td {
        display: block;
        width: 100%;
    }
}

.mdical-info__table > tbody > tr > th a, .mdical-info__table > tbody > tr > td a {
    text-decoration: underline;
}

.mdical-info__table > tbody > tr > th a:hover, .mdical-info__table > tbody > tr > th a:focus, .mdical-info__table > tbody > tr > td a:hover, .mdical-info__table > tbody > tr > td a:focus {
    text-decoration: none;
}

.mdical-info__table > tbody > tr > th {
    text-align: center;
    width: 200px;
}

@media (max-width: 479px) {
    .mdical-info__table > tbody > tr > th {
        background-color: rgba(234, 246, 253, .35);
        width: 100%;
    }
}

.mdical-info__table > tbody > tr > td {
    text-align: left;
}

@media (max-width: 479px) {
    .mdical-info__table > tbody > tr:first-child > th {
        border-top: 1px solid #231815;
    }
}
