@charset "UTF-8";

:root {
    --color01: #333;
    --color02: #444;
    --color03: #666;
    --color04: #999;
    --color05: #bbb;
    --color06: #ccc;
    --color08: #fff;
    --color07: #ddd;
}


body,
html {
    overflow-x: hidden;
    background-color: #ddd;
}


body.open {
    overflow: hidden;
}

section {
    position: relative;
}

html {
    font-size: 16px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: .07em;
    color: #333;
}


#splash {
    width: 100%;
    height: 100%;
    background: #666;
    position: fixed;
    z-index: 9999999;
}

#splash-logo {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    text-align: center;
    width: 100%;
    font-family: "Teachers", sans-serif;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

/* ========= 画面遷移のためのCSS ===============

画面遷移アニメーション */

.splashbg {
    display: none;
}


/* bodyにappearクラスがついたら出現 */

body.appear .splashbg {
    content: "";
    width: 100%;
    height: 100vh;
    display: block;
    background-color: #666;
    transform: scaleY(0);

    /* 伸びる背景色の設定 */
    animation-name: PageAnime;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;

    animation-fill-mode: forwards;
}

@keyframes PageAnime {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.001% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}


#wrapper {
    opacity: 0;
}


/* bodyにappearクラスがついたら出現 */

body.appear #wrapper {
    opacity: 0;
    animation-name: PageAnimeAppear;
    animation-duration: 1s;
    animation-delay: 1s;

    animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}























.tc {
    font-family: "Teachers", sans-serif;
}

.knn-py-160 {
    padding: 160px 0;
}

.knn-my-160 {
    margin: 160px 0;
}

@media(max-width:1024px) {
    .knn-my-120\@tb {
        margin: 120px 0;
    }

    .knn-py-120\@tb {
        padding: 120px 0;
    }
}

@media(max-width:599px) {
    .knn-my-90\@sp {
        margin: 90px 0;
    }

    .knn-py-90\@sp {
        padding: 90px 0;
    }
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: #ddd;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px 30px;
    position: relative;
}

h1 {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
    z-index: -999;
    opacity: 0;
}

.h-logo {
    width: 200px;
}

.h-logo a {
    display: block;
    width: 100%;
}

.h-logo a img {
    width: 100%;
}

.nav-area {
    width: calc(100% - 280px);
}

.nav-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.nav-list .item {
    flex-grow: 1;
}

.nav-list .item>a,
.nav-list .item>span {
    font-size: 18px;
    display: inline-block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    transition: .4s;
}

.nav-list .item.for-contact>a {
    border: 1px solid #666;
    padding-right: 10px;
    padding-left: 10px;
}

.nav-list .item.for-parent {
    position: relative;
}

.hm-btn {
    display: none;
    width: 54px;
    height: 54px;
    background-color: #bbb;
    position: relative;
    z-index: 3;
}

.hm-btn>span {
    width: 40px;
    height: 3px;
    background-color: #fff;
    display: inline-block;
    position: absolute;
    border-radius: 2px;
    transition: .4s;
}

.hm-btn>span:nth-child(1) {
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.hm-btn>span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hm-btn>span:nth-child(3) {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.open .hm-btn>span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.open .hm-btn>span:nth-child(2) {
    opacity: 0;
}

.open .hm-btn>span:nth-child(3) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}


.h-add-box {
    border: 1px solid #666;
    padding: 15px;
    margin-bottom: 15px;
}

.in-logo {
    width: 150px;
    margin: 0 auto 5px auto;
    overflow: hidden;
}

.in-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.in-logo a img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 100%;
}

.add-dd,
.add-tel {
    color: #666;
    font-size: 12px;
}

.add-tel .tel {
    font-size: 20px;
}

@media(max-width:1024px) {
    .h-logo {
        width: 150px;
    }

    header {
        background-color: rgba(0, 0, 0, 0.5);
        /*バグ防止*/
    }

    .hm-btn {
        display: block;
    }

    .nav-area {
        width: 100%;
        max-width: 600px;
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        background-color: #fff;
        padding: 120px 30px 30px;
        overflow-y: scroll;
        transform: translateX(101%);
        transition: .4s;
        z-index: 2;
    }

    .header-inner::after {
        content: "";
        display: block;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-101%);
        z-index: 1;
        transition: .4s;
    }

    .open .nav-area {
        transform: translateX(0%);
    }

    .open .header-inner::after {
        transform: translateX(0%);
    }

    .nav-list {
        display: block;
        height: 100%;
        margin-bottom: 100px;
        /*Gナビ下部分余白*/
    }

    .nav-list .item {
        border-bottom: 1px dashed #666;
        margin-bottom: 10px;
    }

    .nav-list .item>a,
    .nav-list .item>span {
        font-size: 18px;
        text-align: left;
    }

    .nav-list .item>span {
        padding: 0;
    }

    .nav-list .item.for-parent {
        padding: 8px 0;
    }

    .nav-list .for-contact.item {
        max-width: 300px;
        margin: 15px auto 15px;
        border-bottom: none;
    }

    .nav-list .for-contact.item>a {
        text-align: center;
    }

    .btn.right\@tb>* {
        justify-content: flex-end;
    }
}


@media(max-width:599px) {
    .header-inner {
        padding: 10px;
    }

    .nav-area {
        padding: 75px 10px 10px;
    }

    .h-add-box {
        padding: 10px;
    }

    .h-logo {
        width: 100px;
    }

    #splash .h-logo {
        width: 150px;
    }
}

main {
    background-color: #ddd;
}

.top-mv {
    width: 100%;
    position: relative;
}

.main-visual {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.main-visual::after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 65%;
    position: relative;
    z-index: -100;
}

.main-visual>.mv-slick {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(90%) contrast(70%) grayscale(100%);
}

.mv-slick * {
    height: 100%;
}

.mv-slick .slideitem img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width:100%;
    margin: 0;
    display: inline-block;
}

.catch-area {
    margin-top: -40px;
    position: relative;
    z-index: 1;
}

.big-eng {
    font-family: "Teachers", sans-serif;
    font-weight: 800;
    font-size: 70px;
    line-height: 1em;
    text-shadow: 1px 1px 0 #ccc,
        -1px 1px 0 #ccc,
        -1px -1px 0 #ccc,
        1px -1px 0 #ccc,
        1px 1px 0 #ccc,
        -1px 1px 0 #ccc,
        -1px -1px 0 #ccc,
        1px -1px 0 #ccc;
}

.mini-eng {
    margin-top: 15px;
    font-family: "Teachers", sans-serif;
    letter-spacing: .05em;
    font-weight: 600;
    font-size: 16px;
    line-height: 2em;
    max-width: 490px;
}

.for-sp .big-eng {
    font-size: 55px;
    line-height: .9em;
}

.for-sp .mini-eng {
    font-weight: 600;
    line-height: 1.7em;
    width: 90%;
}

@media(max-width:1024px) {

    .main-visual::after {
        padding-top: 100%;
    }

    .catch-area {
        margin-top: -70px;
    }

    .big-eng {
        font-size: 60px;
    }
}

@media(max-width:599px) {

    .main-visual::after {
        padding-top: 100%;
    }


    .catch-area {
        margin-top: -90px;
        filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
    }
}


.deco-sec .inner900>* {
    position: relative;
    z-index: 2;
}

.deco-sec .inner900 .decobox {
    z-index: 1;
    position: absolute;
}

.decobox img {
    z-index: 2;
}

.decobox span {
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
}

.decobox01 {
    width: 280px;
    top: 60px;
    left: -150px;
}

.decobox01 span {
    background-color: #666;
    bottom: -30px;
    right: -30px;
}

.decobox02 {
    width: 260px;
    top: -30px;
    right: -60px;
}

.decobox03 {
    width: 260px;
    bottom: -30px;
    left: -60px;
}

.decobox04 {
    width: 280px;
    bottom: 60px;
    right: -150px;
}

.decobox04 span {
    background-color: #bbb;
    top: -30px;
    left: -30px;
}


@media(max-width:1024px) {
    .knn-py-160 {
        padding: 90px 0;
    }

    .deco-sec .inner900>* {
        position: relative;
        z-index: 2;
        filter: drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff) drop-shadow(0px 0px 1px #fff);
    }

    .deco-sec .inner900 .decobox {
        opacity: 0.4;
        filter: none;
    }

    .decobox01 {
        width: 30%;
        min-width: 180px;
        top: 0px;
        left: 0px;
    }

    .decobox01 span {
        bottom: -10px;
        right: -10px;
    }

    .decobox02 {
        width: 35%;
        min-width: 200px;
        top: -15px;
        right: 0px;
    }

    .decobox03 {
        width: 35%;
        min-width: 200px;
        bottom: -15px;
        left: 0px;
    }

    .decobox04 {
        width: 30%;
        min-width: 180px;
        bottom: 0px;
        right: 0px;
    }

    .decobox04 span {
        top: -10px;
        left: -10px;
    }
}

@media(max-width:599px) {
    .decobox01 {
        min-width: 150px;
    }

    .decobox02 {
        min-width: 180px;
    }

    .decobox03 {
        min-width: 180px;
    }

    .decobox04 {
        min-width: 150px;
    }
}



.slide_01 li {
    padding: 10px;
}

.gallery-list .item a {
    display: block;
    width: 100%;
    position: relative;
}


.float-left {
    float: left;
}

.float-right {
    float: right;
}

@media(max-width:1024px) {
    .float-left {
        float: none;
        display: block;
    }

    .float-right {
        float: none;
        display: block;
    }
}

.backlight>* {
    position: relative;
    z-index: 2;
}

.backlight::after {
    content: "";
    height: 50%;
    width: 100%;
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: 90px;
    z-index: 1;
}

.bg-sec {
    background-color: #666;
    padding: 120px 0;
}

.bg-sec * {
    color: #fff;
}

.bg-sec>* {
    position: relative;
    z-index: 2;
}

.bg-sec>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6;
    z-index: 1;
}

.logo-info {
    height: 55px;
}

.logo-info>img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.salon-info-detail li {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #bbb;
    margin-top: 15px;
}

.salon-info-detail li .info-dt {
    width: 100px;
}


.salon-info-detail li .info-dd {
    width: calc(100% - 100px);
}

.mk2.salon-info-detail li .info-dt {
    width: 140px;
}

.mk2.salon-info-detail li .info-dd {
    width: calc(100% - 140px);
}

.iframe-box {
    width: 100%;
    height: 100%;
    filter: grayscale(100%);
}

.iframe-box iframe {
    width: 100%;
    height: 100%;
}

@media(max-width:1024px) {
    .iframe-box {
        height: 300px;
    }

}

@media(max-width:599px) {

    .salon-info-detail li {
        display: block;
    }

    .bg-sec {
        padding: 90px 0;
    }

    .salon-info-detail li .info-dt {
        text-align: center;
        line-height: 1em;
        padding: 5px;
        background-color: #666;
        color: #fff;
        margin-bottom: 5px;
    }

    .salon-info-detail li .info-dd {
        width: 100%;
    }

    .mk2.salon-info-detail li .info-dt {
        width: 100%;
    }

    .mk2.salon-info-detail li .info-dd {
        width: 100%;
    }
}

footer .item a {
    display: inline-block;
    padding: 8px 0;
    width: 100%;
}

.fixed-cont {
    position: fixed;
    top: 475px;
    right: 0;
    z-index: 97;
}

.fixed-btn-01 {
    width: 120px;
    height: 120px;
}

.fixed-btn-01>a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #444;
    color: #fff;
}

.fixed-btn-01>a .fixed-texts {
    width: 100%;
    text-align: center;
}

.fixed-btn-02 {
    width: 120px;
    height: 120px;
}

.fixed-btn-02>a {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #999;
    color: #fff;
}

.fixed-btn-02>a .fixed-texts {
    width: 100%;
    text-align: center;
}

.fixed-btn-01>a::after,
.fixed-btn-02>a::after {
    position: absolute;
    top: -200%;
    left: -150%;
    content: "";
    height: 500%;
    width: 70px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6) 40%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    transform: rotate(60deg);
    animation: 1.5s shine infinite linear;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}


@media(max-width:1024px) {
    .fixed-cont {
        top: auto;
        right: 0;
        bottom: 0;
        display: flex;
    }

    .fixed-btn-02 {
        width: 200px;
        height: 60px;
    }

    .fixed-btn-01 {
        width: 200px;
        height: 60px;
    }
}


@media(max-width:599px) {
    .fixed-texts .row02 {
        font-size: 10px;
        line-height: 1em;
    }

    .fixed-btn-01>a {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: #444;
        color: #fff;
    }

    .fixed-cont {
        width: 100%;
    }

    .fixed-btn-01 {
        width: 50%;
        height: 50px;
    }

    .fixed-btn-02 {
        width: 50%;
        height: 50px;
    }

    footer .item a {
        text-align: center;
    }
}

.mv-section {
    width: 100%;
    height: 500px;
    position: relative;
}


@media(max-width:1024px) {
    .mv-section {
        height: 400px;
    }
}

@media(max-width:599px) {
    .mv-section {
        height: 300px;
    }
}

.bg-block-double .img {
    z-index: 2;
}

.bg-block-double::after,
.bg-block-double::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 100px;
    position: absolute;
    z-index: 1;
}

.bg-block-double::after {
    background-color: #666;
    bottom: -30px;
    right: -30px;
}

.bg-block-double::before {
    background-color: #bbb;
    top: -30px;
    left: -30px;
}

@media(max-width:1024px) {
    .bg-block-double::after {
        bottom: -10px;
        right: -10px;
    }

    .bg-block-double::before {
        top: -10px;
        left: -10px;
    }
}

.knn-mincho {
    font-family: "Yu Mincho Light",
        "YuMincho",
        "Yu Mincho",
        "游明朝体",
        serif;
}

.mini-title {
    display: block;
    font-size: 16px;
    font-weight: bold;
    font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
    padding-left: 90px;
    position: relative;
    margin-top: 10px;
    letter-spacing: .1em;
}

.mini-title::before {
    content: "";
    display: block;
    width: 80px;
    height: 1px;
    background-color: #bbb;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.menu-list-item {
    display: flex;
    padding-bottom: 15px;
    border-bottom: 1px solid #444;
}

.menu-list-title {
    width: calc(100% - 130px);
    font-weight: bold;
    padding-left: 30px;
    position: relative;
}

.menu-list-title::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: #444;
    position: absolute;
    border-radius: 50%;
    top: 3px;
    left: 0;
}

.mk2 .menu-list-title::before {
    background-color: #bbb;
}


.menu-list-price {
    width: 130px;
    text-align-last: right;
}

@media(max-width:599px) {

    .menu-list-item {
        display: block;
    }

    .menu-list-title {
        width: 100%;
    }

    .menu-list-price {
        width: 100%;
    }

}

.new-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
}

.new-box * {
    color: #666;
}

@media(max-width:599px) {

    .mini-title {
        padding-left: 60px;
    }

    .mini-title::before {
        width: 50px;
    }

    .new-box {
        padding: 20px 10px;
        border-radius: 10px;
    }
}












@media(max-width:599px) {
    .flow-img i {
        display: none;
    }

    .num-ball {
        width: 22px;
        height: 22px;
        line-height: 22px;
    }

    .recruit-list .item a {
        padding: 10px;
    }
}

#lightboxOverlay {
    max-width: 100vw;
}

.bg-sec>img {
    filter: brightness(90%) contrast(70%) grayscale(100%);
}

.slide_01 .btn-slick {
    width: 25px;
    height: 25px;
    font-size: 12px;
    color: #fff;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    background: #444;
    -webkit-box-shadow: 0 0 3px #000;
    box-shadow: 0 0 3px #000;
    position: absolute;
    top: 55%;
    z-index: 1;
}

.slide_01 .btn-slick.btn-back {
    left: 25px;
}

.slide_01 .btn-slick.btn-back:after {
    content: "◀︎";
}

.slide_01 .btn-slick.btn-next {
    right: 18px;
}

.slide_01 .btn-slick.btn-next:after {
    content: "▶︎";
}

.form {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background-color: #eee;
    padding: 30px;
}


.form input,
.form textarea,
.form select {
    padding: 10px 10px;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    border: none;
    margin: 0;
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
}

.form input {
    max-width: 400px;
}

.form textarea {
    height: 300px;
}

.form .rec-label {
    display: inline-block;
    padding: 3px 10px 4px 10px;
    font-size: 12px;
    border-radius: 30px;
    background-color: #777;
    color: #fff;
    line-height: 1em;
}

.form dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #777;
}

.form dl+dl {
    margin-top: 30px;
}

.form dt {
    width: 30%;
    padding-right: 20px;
}

.form dd {
    width: 70%;
    margin-left: 0;
}

.form .checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    padding: 0 10px 0 24px;
    position: relative;
    margin-right: 15px;
}

.form .checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 0;
    box-shadow: none;

}

.form .checkboxer input {
    display: none;
}

.form .checkboxer input:checked+label::after {
    content: "✓";
    width: 0;
    height: 0;
    display: inline-block;
    font-weight: 900;
    font-size: 24px;
    color: #777;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: -2px;
    left: 2px;
}

.onk {
    padding-left: 25px;
    position: relative;
}

.onk>.onk-t {
    position: absolute;
    font-size: 20px;
    top: 8px;
    left: 0;
}

.form input.btn_submit {
    display: block;
    background-color: #777;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    border: 2px solid#fff;
    transition: .4s;
    margin-top: 30px;
}

.form input.btn_submit:hover {
    background-color: #fff;
    color: #777;
    border: 2px solid#777;
    transition: .4s;
}

.date-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 340px;
}

.form .date-flex .date {
    width: 140px;
}

@media (max-width: 599px) {
    .form {
        padding: 30px 10px;
    }

    .form textarea {
        height: 150px;
    }

    .form dt {
        width: 100%;
        padding-right: 0px;
        font-size: 14px;
        display: flex;
        margin-bottom: 10px;
    }

    .form .rec-label {
        margin-left: 5px;
    }

    .form dd {
        width: 100%;
        font-size: 14px;
    }

    .form dd.radiobtn input+label {
        margin-left: 0px;
    }

    .form dd.radiobtn label::before {
        top: 0;
    }

    .form .checkboxer label::before {
        top: 1px;
    }

    .form .checkboxer input:checked+label::after {
        font-size: 20px;
        top: 0;
    }
}

.btnnew {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btnnew a {
    display: block;
    width: 200px;
    font-size: 16px;
    color: #fff;
    background-color: #777;
    padding: 20px 0;
    border-radius: 20px;
    text-align: center;
}