@charset "UTF-8";



blockquote,
q {
    quotes: none
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: '';
    content: none
}





html {
    min-height: 100vh;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    text-rendering: optimizeSpeed
}

html.is-menu-active {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none
}



body.is-menu-active {
    overflow: hidden
}



input,
select,
textarea,
button {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    background: 0 0;
    border: 0;
    outline: 0;
    border-radius: 0;
    -webkit-transition: .5s cubic-bezier(.645, .045, .355, 1);
    transition: .5s cubic-bezier(.645, .045, .355, 1);
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: subpixel-antialiased;
    -moz-osx-font-smoothing: unset
}



input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
    cursor: default
}

input,
select,
textarea {
    line-height: 1.6
}

select::-ms-expand {
    display: none
}



picture {
    display: block;
    max-width: 100%;
    height: auto
}

svg {
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transform-box: fill-box
}

svg path,
svg rect,
svg circle,
svg polygon {
    transform-box: fill-box;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.l-cover {
    overflow: hidden
}

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .15)
}

.l-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 50px;
    padding-left: 15px
}



.l-header__button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: #25bdcf
}

.l-header__button .line {
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 24px;
    height: 2px;
    margin: auto;
    background: #fff;
    -webkit-transition: .5s cubic-bezier(.645, .045, .355, 1);
    transition: .5s cubic-bezier(.645, .045, .355, 1)
}

.l-header__button .line:nth-child(1) {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px)
}

.is-menu-active .l-header__button .line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.is-menu-active .l-header__button .line:nth-child(2) {
    opacity: 0
}

.l-header__button .line:nth-child(3) {
    -webkit-transform: translateY(6px);
    transform: translateY(6px)
}

.is-menu-active .l-header__button .line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.l-footer {
    text-align: center;
    font-size: 15px;
    color: #fff;
    background: #555
}

.l-footer__inner {
    padding: 90px 0
}

.is-menu-active .l-footer {
    pointer-events: none
}

.l-footer__back {
    display: block;
    margin-bottom: 2em;
    text-decoration: underline
}

.l-main {
    margin-top: 90px
}

.l-main__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px 90px
}

.l-main__inner p {
    font-size: 15px
}

.is-menu-active .l-main {
    pointer-events: none
}

.c-menu {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 500;
    width: 80%;
    height: 100%;
    background: #25bdcf;
    -webkit-transition: .5s cubic-bezier(.645, .045, .355, 1);
    transition: .5s cubic-bezier(.645, .045, .355, 1)
}

.is-menu-active .c-menu {
    overflow-y: auto;
    pointer-events: auto;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.c-menu__inner {
    opacity: 0;
    visibility: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 90px;
    margin-bottom: 90px;
    padding: 0 15px;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: .5s cubic-bezier(.645, .045, .355, 1) .25s;
    transition: .5s cubic-bezier(.645, .045, .355, 1) .25s
}

.is-menu-active .c-menu__inner {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    transform: none
}

.c-menu__inner a {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff
}

.c-menu__inner a + a {
    border-top: 1px solid rgba(255, 255, 255, .3)
}

.c-item {
    width: 48%;
    margin-bottom: 30px
}

.c-item__visual {
    height: 150px;
    background: #ccc
}

.c-item__title {
    margin-top: 9px;
    font-size: 18px;
    line-height: 1.6
}

.c-item__description {
    font-size: 12px;
    line-height: 1.6
}

.c-overlay {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 400;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    -webkit-transition: .5s cubic-bezier(.645, .045, .355, 1);
    transition: .5s cubic-bezier(.645, .045, .355, 1);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px)
}

.is-menu-active .c-overlay {
    pointer-events: auto;
    opacity: 1;
    visibility: visible
}

.u-noscroll {
    overflow: hidden;
    height: 100%
}

.u-overflowHidden {
    overflow: hidden
}

.u-noevent {
    pointer-events: none
}

.u-exSp {
    display: none
}

.u-preload * {
    -webkit-transition: none !important;
    transition: none !important
}

.u-preline {
    white-space: pre-line
}

@media screen and (min-width:801px) {


    a[href^=tel] {
        pointer-events: none;
        cursor: default
    }

    .l-header__inner {
        padding-left: 0
    }

    .l-main__inner {
        padding: 0 0 90px
    }

    .c-menu {
        width: 375px
    }

    .c-item {
        width: 32%
    }

    .c-item__visual {
        height: 200px
    }

    .u-frame {
        max-width: calc(100% - 13.88889vw);
        margin-right: auto;
        margin-left: auto
    }

    .u-exSp {
        display: block
    }

    .u-sp {
        display: none
    }
}



@media only screen and (-webkit-min-device-pixel-ratio:2),
(-webkit-min-device-pixel-ratio:2),
(min-resolution:2dppx) {


    input,
    select,
    textarea,
    button {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale
    }
}

@media screen\0 {


}

@media (any-hover:hover) {
    .is-menu-active .c-overlay {
        cursor: pointer
    }
}
