@charset"utf-8";
/*指定共通css*/



body,
#wrapper {
    width: 100% !important;
    overflow-x: hidden !important;
}

.m-lr {
    margin-left: auto;
    margin-right: auto;
}

.grd-x {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c57d84+1,a2a8b3+51,8ec2cf+100 */
    background: #c57d84;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #c57d84), color-stop(51%, #a2a8b3), to(#8ec2cf));
    background: linear-gradient(to right, #c57d84 1%, #a2a8b3 51%, #8ec2cf 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c57d84', endColorstr='#8ec2cf', GradientType=1);
    /* IE6-9 */

}



.grd-y {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#8ec2cf+1,a2a8b3+51,c57d84+100 */
    background: #8ec2cf;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #8ec2cf), color-stop(51%, #a2a8b3), to(#c57d84));
    background: linear-gradient(to bottom, #8ec2cf 1%, #a2a8b3 51%, #c57d84 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8ec2cf', endColorstr='#c57d84', GradientType=0);
    /* IE6-9 */

}

.mt50 {
    margin-top: 50px;
}

.mt80 {
    margin-top: 80px;
}

.mt100 {
    margin-top: 100px;
}

.mt140 {
    margin-top: 140px;
}

.b16 {
    font-size: 16px;
    font-weight: bold;
}

.zoom img {
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.zoom:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.r {
    -webkit-box-orient: horizontal;
    flex-direction: row-reverse;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.title-v {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 0 30px;
    font-size: 36px;
}

@media (max-width: 1024px) {
    .title-v {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        margin: 0 0 30px 0;
        font-family: adobe-handwriting-ernie, ans-serif;
        font-weight: 400;
        font-style: normal;
    }
}

@media (max-width: 599px) {
    .mt50 {
        margin-top: 30px;
    }

    .mt80 {
        margin-top: 40px;
    }

    .mt140,
    .mt100 {
        margin-top: 50px;
    }
}

/*ヘッダー/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
#header {
    font-family: 'Libre Bodoni', serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.h1 {
    font-size: 12px;
    position: absolute;
    top: 5px;
    left: 5px;
    color: #797979;
    z-index:3;
    text-shadow: 0px 0px 3px rgba(255, 255, 255, 1);
}

.pc-none {
    display: none;
}

.logo-area {
    width: 95px;
    height: 95px;
    margin: 25px 0 0 25px;
}

h2 .salon-logo a img,
.links-card-inner .salon-logo img{
  filter: drop-shadow(1px 1px 1px gray);
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gnav {
    width: 85%;
    max-width: 1000px;
}

.gnav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 25px 0 0px 0px
}

.nav-1 {
    padding: 25px 5px;
    font-size: 18px;
    color: #797979;
    white-space: nowrap;
    display: block;
    position: relative;
    -webkit-transition: all .7s;
    transition: all .7s;
}

.nav-1:hover {
    opacity: 1;
    color: #797979;
}

.nav-1::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    /*背景の形状*/
    width: 0;
    height: 1px;
    background: #fff;
    opacity: 0;
    /*はじめは透過を0に*/
}

@keyframes bgappear {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background-color: #fff;
    }
}

@-webkit-keyframes bgappear {
    0% {
        width: 0%;
        height: 1px;
    }

    50% {
        width: 100%;
        height: 1px;
    }

    100% {
        width: 100%;
        height: 100%;
        background-color: #fff;
    }
}

.nav-1:hover::after {
    /*背景の形状*/
    width: 100%;
    opacity: 1;
    background-color: #fff;
    /*アニメーションの指定*/
    -webkit-animation: bgappear 0.5s forwards;
    animation: bgappear 0.5s forwards;
}





.nav-1:hover {
    /*テキストを最前面へ*/
    z-index:2;
}

.bgg {
    background-color: #797979;
    color: white;
    padding: 25px 20px;
}

.drop-switch {
    position: relative;
}

.drop-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    font-size: 20px;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #797979;
    background-color: rgba(255, 255, 255, 0.7);
}

.drop-switch:hover .drop-menu {
    display: block;
}

.nav-2 {
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px 0;
    position: relative;
}

.nav-2::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    /*背景の形状*/
    width: 0;
    height: 100%;
    background: #797979;
    /*アニメーションの指定*/
    -webkit-transition: all .6s;
    transition: all .6s;
    opacity: 0;
    /*はじめは透過0*/
}

.nav-2:hover::after {
    /*背景の形状*/
    width: 100%;
    /*横幅を伸ばす*/
    opacity: 1;
    /*不透明に*/
}

.nav-2:hover {
    color: #fff;
    opacity: 1;
}

.btn-area {
    display: none;
}

#header-boss.hide {
    background-color: rgba(255, 255, 255, 0.7);
}

.hide .logo-area{
  margin: 12.5px 0 12.5px 25px
}

    @-webkit-keyframes bgappear {
        0% {
            width: 0%;
            height: 1px;
        }

        50% {
            width: 100%;
            height: 1px;
        }

        100% {
            width: 100%;
            height: 100%;
            background: #fff;
        }
    }

    @keyframes bgappear {
        0% {
            width: 0%;
            height: 1px;
        }

        50% {
            width: 100%;
            height: 1px;
        }

        100% {
            width: 100%;
            height: 100%;
            background: #fff;
        }
    }

@media(max-width:1024px) {

    #header-boss.hide {
        background: none;
    }

    .btn-area {
        display: block;
        background-color: rgba(255, 255, 255, 0.7);
    }

    .pc-none {
        display: block;
    }

    .nav-2 .pc-none {
        display: inline-block;
        margin-right: 10px;
    }

    .gnav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 50%;
        background-color: #797979;
        height: 100vh;
        -webkit-transition: all .6s;
        transition: all .6s;
        z-index: 99;
    }

    .gnav-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 50px;
        height: 100%;
        margin: 60px 0 0px 0px;
    }

    .nav-1 {
        padding: 15px 0 15px 20px;
        color: #fff;
    }

    .nav-1::after {
        background: #fff;
    }

    .nav-1:hover::after {
        /*背景の形状*/
        width: 100%;
        opacity: 1;
        /*アニメーションの指定*/
        -webkit-animation: bgappear 0.5s forwards;
        animation: bgappear 0.5s forwards;
    }




    .nav-1:hover {
        color: #797979;
    }

    .drop-menu {
        display: block;
        position: relative;
        width: 100%;
        font-size: 20px;
        -webkit-transition: all .4s;
        transition: all .4s;
        color: #fff;
        top: 0;
        left: 0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
        background-color:rgba(255,255,255,0);
    }

    .drop-switch:hover .drop-menu {
        display: block;
    }

    .nav-2 {
        text-align: left;
        padding: 10px 0px 10px 60px;
    }

    .nav-2::after {
        background: #fff;
    }

    .nav-2:hover {
        color: #797979;
    }

    .btn-area {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 100;
    }

    .openbtn {
        position: relative;
        /*ボタン内側の基点となるためrelativeを指定*/
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*ボタン内側*/
    .openbtn span {
        display: inline-block;
        -webkit-transition: all .4s;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 10%;
        height: 3px;
        border-radius: 2px;
        background: #797979;
        width: 80%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15%;
    }

    .openbtn span:nth-of-type(2) {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .openbtn span:nth-of-type(3) {
        top: 75%;
    }

    /*activeクラスが付与されると線が回転して×に*/

    .active .openbtn span:nth-of-type(1) {
        top: 18px;
        left: 0px;
        -webkit-transform: translateY(6px) rotate(-45deg);
        transform: translateY(6px) rotate(-45deg);
        width: 100%;
        background: #fff;
    }

    .active .openbtn span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .active .openbtn span:nth-of-type(3) {
        top: 30px;
        left: 0px;
        -webkit-transform: translateY(-6px) rotate(45deg);
        transform: translateY(-6px) rotate(45deg);
        width: 100%;
        background: #fff;
    }

    .active .gnav {
        right: 0;
        padding-bottom:200px;
    }

    .header-main::after {
        content: '';
        display: none;
        height: 100vh;
        width: 100vw;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -10000;
        background-color: rgba(0, 0, 0, 0.4);
        -webkit-transition: all .4s;
        transition: all .4s;
        opacity: 0;
    }

    .header-main.active::after {
        z-index: 98;
        opacity: 1;
        display: inline-block;
    }
}

@media(max-width:599px) {
    .gnav {
        width: 100%;
    }
    .logo-area {
    margin: 40px 0 0 15px;
}

.btn-area{
  top:40px;
}
}

#main {
    background-color: #797979;
    position:relative;
    z-index:1;
}


/*メインビジュアル/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.main-v {
    position: relative;
}

.main-v .video,
.main-v .video-sp{
    height: 100vh;
}

.main-v .mainimg .video video,
.main-v .mainimg .video-sp video{
    height: 100%;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.main-v .video-sp{
  display:none!important;
}

@media(max-width:599px){
  .main-v .video{
    display:none!important;
  }
  
  .main-v .video-sp{
  display:block!important;
}
}

.salon-logos {
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    top: 60%;
    left: 20px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.salon-logo {
    margin-top: 30px;
}

.salon-logo img {
    object-fit:contain;
}

@media(max-width:599px) {
    .salon-logos {
        width: 200px;
        top: 65%;
    }
}

/*タイトル/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.title-1 {
    width: 100%;
    text-align: center;
}

.blush {
    font-family: adobe-handwriting-ernie, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 55px;
    -webkit-transform: skew(15deg, -15deg);
    transform: skew(15deg, -15deg);
    display: inline-block;
    opacity: 0.5;
}

.title-main {
    font-family: 'Libre Bodoni', serif;
    font-size: 35px;
    letter-spacing: 1px;
    margin-top: -40px;
}

.sub-title-1 {
    font-size: 22px;
    letter-spacing: 3px;
    line-height: 1.5em;
    font-family: 'Libre Bodoni', serif;
}

.txt-1 {
    letter-spacing: 2px;
    line-height: 2.5em;
    font-size: 14px;
}

.txt-under{
    letter-spacing: 2px;
    line-height: 1.5em;
    font-size: 14px;
}

@media(max-width:599px){
  .sub-title-1 {
    font-size: 16px;
    letter-spacing: 3px;
    line-height: 1.5em;
}
.txt-1 {
    font-size: 12px;
}
}





/*トップページ//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.home-concept {
    color: #fff;
    padding-top: 90px;
}

.links-card-inner {
    position: relative;
    -webkit-filter: grayscale(1);
    filter: gray;
    filter: grayscale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width:100%;
    display:block;
}

.links-card-inner .img{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:1;
}

.links-card-inner:hover {
    -webkit-filter: none;
    filter: none;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}

.links-card-inner .salon-logo {
    margin-top: 0;
    width: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index:2;
    display:block;
}

.links-card-inner .salon-logo img{
  position:relative;
}

.links-card-inner .more-b {
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    color: #fff;
    z-index:2;
}

.dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
}

.dli-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.links-card .txt-1 {
    color: #fff;
    margin-top: 20px;
}

@media(max-width:599px){
  .home-concept {
    color: #fff;
    padding-top:60px;
}
.links-card .txt-1 {
    margin-top: 10px;
}
}










.grid-1 .img {
    width: 80%;
    max-width: 1400px;
    margin-left: 0;
    margin-right: auto;
}

.grid-2 .img {
    width: 80%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: 0;
}

.grid-main-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 80%;
    margin-left: auto;
    margin-right: 0;
    margin-top: -280px;
    position: relative;
    z-index: 2;
}

.grid-main-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    width: 80%;
    margin-left: 0;
    margin-right: auto;
    margin-top: -280px;
    position: relative;
    z-index: 2;
}

.grid-title-1 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: sideways;
    text-orientation: sideways;
    font-size: 60px;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    background-color: #888;
    color: #fff;
    opacity: 0.6;
    padding-top: 200px;
    padding-right: 200px;
    padding-bottom: 30px;
    margin-right: -60px;
    position: relative;
    z-index: 3;
}

.grid-title-2 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: sideways;
    text-orientation: sideways;
    font-size: 60px;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    background-color: #888;
    color: #fff;
    opacity: 0.6;
    padding-top: 30px;
    padding-right: 200px;
    padding-bottom: 150px;
    transform:scale(-1);
    margin-left: -60px;
    position: relative;
    z-index: 3;
}

.grid-inn-1 {
    background-color: #fff;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-top: 120px;
    position: relative;
    z-index: 4;
}

.grid-inn-2 {
    background-color: #fff;
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    height: 100%;
    margin-top: 120px;
    position: relative;
    z-index: 4;
}

.grid-inn-title {
    font-size: 28px;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    margin-bottom: 10px;
}

.gl-box {
    width: calc(100% - 60px);
    padding: 40px 40px 40px 80px;
}

.gr-box {
    width: 60px;
    background-color: black;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: sideways;
    text-orientation: sideways;
    color: #fff;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
    border: 1px solid #000;
}

.gr-box:hover {
    background-color: #fff;
    color: #000;
    opacity: 1;
}

.grids {
    position: relative;
    z-index: 1;
}

.grids::after {
    content: '';
    display: inline-block;
    height: 85%;
    width: 100%;
    background-color: #ccc;
    position: absolute;
    bottom: 0;
    z-index: -1;
}

@media(max-width:1024px) {

    .grid-main-1,
    .grid-main-2 {
        margin-top: 0;
        width: 100%;
    }

    .grid-inn-1,
    .grid-inn-2 {
        margin-top: 0px;
        width: 90%;
    }

    .grid-title-1 {
        padding-right: 0;
        padding-bottom: 200px;
        margin-top: -250px;
        margin-right: 0;
    }

    .grid-title-2 {
        padding-left: 0;
        padding-top: 150px;
        padding-bottom: 150px;
        margin-top: -250px;
        margin-left: 0;
    }

    .gl-box {
        padding: 40px 30px 40px 30px;
    }
}

@media(max-width:599px) {

    .grid-1 .img,
    .grid-2 .img {
        width: 100%;
    }

    .grid-title-1,
    .grid-title-2 {
        display: none;
    }

    .grid-inn-1,
    .grid-inn-2 {
        width: 100%;
    }

    .sc-menu {
        font-size: 60px;
        font-family: din-2014, sans-serif;
        font-weight: 800;
        font-style: normal;
        background-color: #888;
        color: #fff;
        opacity: 0.6;
        position: absolute;
        width: 100%;
        top: 50%;
        text-align: center;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}



.gallery {
    background-color: #fff;
    padding: 90px 0;
}

.gallery .inner>.up-d-flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gallery .up-d-com {
    width: 30%;
}

.gal-main {
    width: 70%;
}

.gal-main>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.grd-h {
    overflow: hidden;
}

.grd-h-2 {
    width: 45%;
}

.grd-h-2:nth-child(2) {
    margin-top: 80px;
}

.grd-h a {
    display: block;
    position: relative;
    opacity: 1;

}

.grd-h a:hover:before {
    content: "";
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#8ec2cf+1,a2a8b3+51,c57d84+100 */
    background: #8ec2cf;
    /* Old browsers */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #8ec2cf), color-stop(51%, #a2a8b3), to(#c57d84));
    background: linear-gradient(to bottom, #8ec2cf 1%, #a2a8b3 51%, #c57d84 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8ec2cf', endColorstr='#c57d84', GradientType=0);
    /* IE6-9 */
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8;
}

.txt-in {
  padding:20px;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: auto;
    z-index: 2;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.txt-in .left-in {
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.txt-in .top-in {
    visibility: hidden;
    -webkit-transform: translateY(-500%);
    transform: translateY(-500%);
}

.txt-in .right-in {
    visibility: hidden;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
}

.txt-in .right-in:before {
    content: "";
    border-top: 2px solid #fff;
    width: 110px;
    display: block;
    margin: 10px auto 0;
    padding: 5px 0;
}

.grd-h ul li {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    text-align: center;
    color: #fff;
    width: 100%;
}

.grd-h a:hover .txt-in .left-in,
.grd-h a:hover .txt-in .right-in {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.grd-h a:hover .txt-in .top-in {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
}

.more {
    font-family: 'Libre Bodoni', serif;
    color: #fff;
    background-color: #000;
    letter-spacing: 2px;
    padding: 10px;
    border: 1px solid black;
    display: inline-block;
}

.more:hover {
    color: #000;
    background-color: #fff;
    opacity: 1;
}

.more2 {
    font-family: 'Libre Bodoni', serif;
    color: #000;
    background-color: #fff;
    letter-spacing: 2px;
    padding: 10px;
    display: inline-block;
}

.more2:hover {
    color: #fff;
    background-color: #000;
    opacity: 1;
}

@media(max-width:1024px) {
    .gallery .inner>.up-d-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .gallery .up-d-com {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-evenly;
        width: 100%;
    }

    .gallery .up-d-com .title-1 {
        width: auto;
    }

    .gal-main {
        width: 100%;
    }
}


.home-topics,
.home-blog,
.home-insta {
    color: #fff;
}


.inner-small {
    max-width: 800px;
}

.topics-left {
    width: 100px;
}

.topics-right {
    width: calc(100% - 255px);
    margin-left: 15px;
}

.topics-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.top-topics-main li a,
.topics-main li a {
    border-bottom: 1px solid #fff;
        flex-wrap:wrap;
}

.top-topics-main li:nth-child(2),
.top-topics-main li:nth-child(3) {
    margin-top: 30px;
}





.top-blog-main {
    position: relative;
    color: #000;
    z-index: 1;
}

.top-blog-main::after {
    content: '';
    position: absolute;
    display: inline-block;
    z-index: -1;
    background-color: #ccc;
    top: -30px;
    width: 150%;
    height: 140%;
    right: 60px;
}

.home-blog .more2 {
    position: relative;
    z-index: 1;
}

.blog-item {
    position: relative;
}

.pos-tempo {
    position: absolute;
    top: -20px;
    left: 0;
    background-color: black;
}

@media(max-width:599px) {
    .top-blog-main::after {
        height: 105%;
    }
    .topics-left {
    width: 150px;
}
}





.top-insta-main {
    position: relative;
    z-index: 1;
}

.top-insta-main::after {
    content: '';
    position: absolute;
    display: inline-block;
    z-index: -1;
    background-color: #ccc;
    top: 80px;
    width: 200%;
    max-width: 100vw;
    height: 110%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.home-insta .more {
    position: relative;
    z-index: 1;
}




.banner-main {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.banner-main .banner-img {
    width: 100%;
    height: 100%
}


.banner-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}


.banner-main::after {
    content: '';
    display: inline-block;
    width: calc(100% - 60px);
    min-height: calc(100% - 60px);
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 1px solid #fff;

}

.banner-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 28px;
    letter-spacing: 1px;
    color: #fff;
    border: 1px solid #fff;
    position: absolute;
    padding: 5px 15px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

@media(max-width:599px) {
    .banner-main {
        height: 250px;
    }
}

#footer {
    background-color: #797979;
    padding-top: 90px;
}


.footer-flex1 {
width:100%;
}

.float-1 {
    width: 20%;
    float:left;
}

.footer-logo .img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.footer-flex2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-flex2 .salon-logo {
    width: 25%;
    max-width: 300px;
    margin: 0 20px;
}

.float-2{
  width:75%;
  float:right;
}

.footer-flex3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.footer-flex3 li {
    margin: 0 10px;
    font-family: 'Libre Bodoni', serif;
    color: #fff;
    margin-top: 30px;
}

.float-3{
  width:75%;
  float:right;
}

.copy {
    font-size: 14px;
    color: #fff;
    padding-bottom: 15px;
}

@media(max-width:1024px) {
    .footer-logo .img {
        width: 80%;
    }
}

@media(max-width:599px) {
  
    .float-1{
      width:40%;
      padding:10%;
    }

    .footer-logo .img {
        width: 100%;
    }

    .footer-flex2 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width:60%;
    }

    .footer-flex2 .salon-logo {
        width: 60%;
        max-width: 300px;
        margin: 10px auto;
    }
    
    .float-3{
      width:100%;
      float:none;
    }
}

.mv-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mv-img {
    width: 80%;
    height: 80vh;
    overflow: hidden;
}

.mv-img .img {
    height: 100%;
    width: 100%;
}

.mv-img img {
    width: 100%;
    height: 90%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.mv-title {
    width: 30%;
    margin-right: -10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.mv-title-text {
    font-family: 'Libre Bodoni', serif;
    font-size: 55px;
    white-space: nowrap;
    margin: 0 0 10px 20px;
    color: #333;
}



.deg-box1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}

.deg-1 {
    width: 60%;
    margin-right: -10%;
    position: relative;
    z-index: 1;
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 60px;
}

.deg-2 {
    width: 80%;
    margin-left: -30%;
    position: relative;
    z-index: 0;
    color: #FFF;
}

.deg-4 {
    width: 60%;
    margin-left: -10%;
    position: relative;
    z-index: 1;
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 60px;
}

.deg-3 {
    width: 80%;
    margin-right: -30%;
    position: relative;
    z-index: 0;
    color: #FFF;
}


.deg-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.deg-img-1::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #ccc;
    -webkit-transform: skewY(75deg);
    transform: skewY(75deg);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.deg-img-2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #ccc;
    -webkit-transform: skewY(75deg);
    transform: skewY(75deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
}

.deg-img-3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #797979;
    -webkit-transform: skewY(75deg);
    transform: skewY(75deg);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.deg-img-4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #797979;
    -webkit-transform: skewY(75deg);
    transform: skewY(75deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
}

.deg-img .img {
    height: 100%;
    width: 100%;
}

.deg-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.deg-img-2 img{
     transform: scale(-1, 1);
}

/*.on-list li::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/ハサミアイコン9.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
}*/

.color2 {
    background-color: #ccc;
}

.blush-2 {
    font-family: adobe-handwriting-ernie, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    display: inline-block;
}

.ver-2-main {
    position: relative;
}

.ver-2-inn {
    position: relative;
    z-index: 1;
    margin: 60px;
    color: #fff;
}

.ver-2-main .img {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}


.ver-2-main .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-filter: brightness(70%);
    filter: brightness(70%);
}

.brt {
    -webkit-filter: brightness(85%);
    filter: brightness(85%);
}

.brt2 {
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
}

.mv-title-text img {
    -webkit-filter: brightness(30%);
    filter: brightness(30%);
    max-width: 300px;
    margin-bottom:60px;
}


@media(max-width:1024px) {
    .mv-img {
        height: 60vh;
    }

    .mv-title-text {
        font-size: 40px;
        margin: 0 0 60px 20px;
    }

    .deg-box1 {
        position: relative;
    }

    .deg-box1 .deg-1 {
        width: 100%;
        margin-right: 0;
        padding: 60px 10px;
    }

    .deg-box1 .deg-2 {
        position: absolute;
        height: 100%;
        width: 100%;
        margin-left: 0;
        top: 0;
        left: 0;
    }

    .deg-box1 .deg-4 {
        width: 100%;
        margin-left: 0;
        padding: 60px 10px;
    }

    .deg-box1 .deg-3 {
        position: absolute;
        height: 100%;
        width: 100%;
        margin-right: 0;
        top: 0;
        left: 0;
    }
}

@media(max-width:599px) {
    .title-main {
        font-size: 28px;
    }

    .blush {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .ver-2-inn {
        padding: 60px 10px;
    }

    .deg-img-1::before,
    .deg-img-2::before,
    .deg-img-3::before {
        display: none;
    }

    .mv-title-text img {
        min-width: 100px;
        max-width: 200px;
    }
}


.s-1 .gl-box,
.s-2 .gl-box {
    width: 100%;
    padding: 40px;
}

.s-1 .gl-box .grid-inn-title,
.s-2 .gl-box .grid-inn-title {
    font-family: 'Libre Bodoni', serif;
}


.grid-inn-a {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-top: 120px;
    position: relative;
    z-index: 4;
}

.grid-inn-b {
    background-color: rgba(255, 255, 255, 0.6);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    height: 100%;
    margin-top: 120px;
    position: relative;
    z-index: 4;
}


.menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-bottom: 1px dotted #333;
}

@media(max-width:599px){
  .menu ul {
    flex-direction:column;
}

.menu ul li:nth-child(2){
  text-align:center;
}
}

.grid-inn-a .gr-box:hover,
.grid-inn-b .gr-box:hover {
    background-color: #000;
    color: #fff;
}

.small-text {
    font-size: 12px;
    margin-left: 5px;
}

.salons-1 .img {
    width: 70%;
    margin-right: auto;
    margin-left: auto;

}

.salons-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

.salons-1 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-family: 'Libre Bodoni', serif;
}

.salons-1 ul .w-3 {
    width: 30%;
}

.salons-1 ul .w-7 {
    width: 70%;
}

.salons-1 .img img {
    -webkit-filter: brightness(30%);
    filter: brightness(30%);
}

.salons-2 .img,
.salons-2 .img img {
    border-radius: 50%;
}

.salon-cat {
    height: 50px;
    margin-right: auto;
    margin-left: auto;
    display: inline-block;
}

.salon-cat .img {
    height:100%;
}

.salon-cat .img img {
    -o-object-fit: contain;
    -o-object-position: center;
    object-position: center;
    object-fit: contain;
    height: 100%;
}

.w-w {
    background-color: #fff;
}

.w-c {
    color: #fff;
}

.blk {
    color: #000 !important;
}

.logos {
    width: 50%;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
}

.logos-s img {
    -webkit-filter: brightness(30%);
    filter: brightness(30%);
}

.menu-mt .grid-inn-a,
.menu-mt .grid-inn-b {
    margin-top: 30px;
}

.w-w .grid-inn-a,
.w-w .grid-inn-b {
    background-color: rgba(0, 0, 0, 0.4);
}

.cat-box1 {
    border: 1px solid #fff;
}

.cat-title1 {
    font-family: 'Libre Bodoni', serif;
    color: #fff;
    font-size: 22px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

.salon-cat-item {
    color: #fff;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
    margin-bottom: 30px;
}

.left-txt {
    margin-top: 15px;
    font-size: 20px;
    color: #fff;
    font-family: 'Libre Bodoni', serif;
    text-align: center;
}

.right-txt {
    color: #fff;
    text-align: center;
}

.product-item img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.product-item a:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.product-item a:hover {
    opacity: 1;
}

.product-item .txt-1 li {
    position: relative;
    z-index: 2;
}

.product-item .txt-1 {
    position: relative;
}

.product-item .txt-1::after {
    position: absolute;
    height: 0;
    width: 100%;
    content: '';
    display: inline-block;
    background-color: #333;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 0;
}

.product-item a:hover .txt-1::after {
    height: 100%;
}


.gallery-1 {
    margin: 0;
}

.gallery-1 .slick-prev,
.gallery-1 .slick-next {
    position: absolute;
    /*絶対配置にする*/
    z-index: 3;
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;
    /*矢印の色*/
    border-right: 2px solid #ccc;
    /*矢印の色*/
    height: 25px;
    width: 25px;
}

.gallery-1 .slick-prev {
    /*戻る矢印の位置と形状*/
    left: 2.5%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.gallery-1 .slick-next {
    /*次へ矢印の位置と形状*/
    right: 2.5%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn1 li {
    cursor: pointer;
    outline: none;
    background: #333;
}

.choice-btn1 li img {
    opacity: 0.4;
    /*選択されていないものは透過40%*/
}



.choice-btn1 .slick-current img {
    opacity: 1;
    /*選択されているものは透過しない*/
}

.choice-btn1 .slick-track {
    -webkit-transform: unset !important;
    transform: unset !important;
    /*画面幅サイズ変更に伴うサムネイル固定*/
}

.pro-brands {
    font-family: adobe-handwriting-ernie, ans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    display: inline-block;
    margin-bottom: -20px;
    color: white;
}

.pro-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: white;
}

.pro-cat {
    background-color: black;
    color: #fff;
    font-family: din-2014, sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 16px;
    border-radius: 30px;
    display: inline-block;
    padding: 0 20px;
    margin: 20px 0;
}

.pro-price {
    color: white;
    border-bottom: 1px dotted #333;
}

.pro-comment {
    color: white;
}






































/*=====concept=====*/
.concept h3 {
    line-height: 160%;
}

.concept .txt {
    font-size: 16px;
    line-height: 200%;
}

.concept02 {
    position: relative;
}

.concept02 .pic {
    max-width: 46%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.concept02 .ofimg:before {
    padding-top: 77%;
}

.concept02 .ofimg:after {
    content: "";
    background: url(../images/concept/k01.png) no-repeat;
    width: 80px;
    height: 100%;
    display: block;
    min-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: 100% 100%;
}

.concept02.concept03 .ofimg:after {
    background: url(../images/concept/k02.png) no-repeat;
    left: auto;
    right: 0;
    background-size: 100% 100%;
}

.concept02 .txt-wrap {
    padding-left: calc(50% - 500px);
    width: 50%;
}

.color-t {
    font-size: 200px;
    opacity: 0.5;
    letter-spacing: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.concept02.concept03 .txt-wrap {
    padding-left: 0;
    padding-right: calc(50% - 500px);
}

@media (max-width: 768px) {
    .concept02 .pic {
        max-width: 90%;
    }

    .concept02 .ofimg:before {
        padding-top: 40%;
    }

    .concept02 .txt-wrap,
    .concept02.concept03 .txt-wrap {
        padding: 5%;
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .color-t {
        right: auto;
        -webkit-transform: translateY(50%);
        transform: translateY(50%);
        left: 10%;
    }

    .concept02 .ofimg:after {
        width: 10%;
    }
}

@media (max-width: 599px) {
    .color-t {
        font-size: 100px;
    }

    .concept .txt {
        font-size: 12px;
    }
}

/*=====technique=====*/
.technique .point-wrap {
    margin-top: 250px;
    -webkit-transform: translateY(-1.5%);
    transform: translateY(-1.5%);
}

.technique .box-wrap .ofimg {
    width: 40%;
    height: 100%;
}

.technique .box-wrap .txt-wrap {
    width: 55%;
    padding-top: 100px;
}

.technique .box-wrap {
    padding-bottom: 140px;
}

.technique .box-wrap:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;

}

.technique .num {
    font-size: 150px;
    line-height: 100%;
}

.technique .box-wrap .box {
    position: relative;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.technique .box-wrap .box:before {
    content: "";
    width: 3px;
    height: 300px;
    background: #8ec2cf;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #8ec2cf), color-stop(51%, #a2a8b3), to(#c57d84));
    background: linear-gradient(to bottom, #8ec2cf 1%, #a2a8b3 51%, #c57d84 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8ec2cf', endColorstr='#c57d84', GradientType=0);
    position: absolute;
    top: 5%;
    left: 0;
}

.technique .box-wrap h3 {
    line-height: 160%;
}

.technique .box-wrap .txt {
    font-size: 16px;
    line-height: 200%;
}

@media (max-width: 599px) {
    .technique .box-wrap {
        padding-bottom: 80px;
    }

    .technique .point-wrap {
        margin-top: 150px;
    }

    .technique .box-wrap .ofimg {
        width: 60%;
    }

    .technique .box-wrap .txt-wrap {
        width: 100%;
        padding-top: 20px;
    }

    .technique .num {
        font-size: 80px;
    }

    .technique .box-wrap .box {
        padding-left: 20px;
    }

    .technique .box-wrap .txt {
        font-size: 12px;
    }

    .technique .box-wrap:nth-of-type(even) .num {
        text-align: right;
    }
}

/*=====info=====*/
.info .box-wrap {
    width: calc(100% - 96px);
}

.info01 dl {
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.info01 dt {
    width: 20%;
    font-size: 16px;
}

.info01 dd {
    font-size: 16px;
    width: 80%;
}

.info02 ul {
    padding-top: 30px;
}

.info02 li {
    width: 31%;
    margin-bottom: 30px;
    background: #717171;
}

.info02 li img {
    opacity: 0.4;
}

.info03 .txt {
    line-height: 200%;
    padding-bottom: 40px;
}

@media (max-width: 1024px) {

    .info02 .box-wrap,
    .info03 .box-wrap {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .info .info01 .box-wrap {
        width: 100%;
    }

    .info01 dt {
        width: 30%;
        font-size: 12px;
    }

    .info01 dd {
        font-size: 12px;
        width: 70%;
    }

    .info02 li {
        width: 32%;
        margin-bottom: 10px;
    }

    .info03 .txt {
        line-height: 160%;
        padding-bottom: 20px;
    }
}

/*=====menu=====*/
/*=====アンカーリンク=====*/
.anchor-list li {
    width: 48%;
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.anchor-list li a {
    font-size: 24px;
    font-weight: bold;
}

.anchor-list li a .jp {
    font-size: 12px;
    font-weight: normal;
    display: block;
    line-height: 100%;
}

/*==========================*/

.Menu .rotatewrap .box-wrap:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.Menu .rotatewrap .box-wrap:nth-of-type(odd) .title-v {
    margin: 0 0 0 30px;
}

.Menu .rotatewrap .box-wrap:nth-of-type(even) .title-v {
    margin: 0 30px 0 0;
}

.Menu .list {
    width: calc(100% - 110px);
}

.Menu .list dl {
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    margin-bottom: 17px;
}

.Menu .box-wrap:not(:first-of-type) {
    margin-top: 100px;
}

.Menu .list dl:first-of-type {
    border-top: 1px dashed #cdcdcd;
    padding-top: 15px;
}

.Menu .list dl.br {
    border-top: 1px dashed #cdcdcd;
    padding-top: 15px;
    margin-top: 15px;
}

.Menu .list dt {
    font-size: 16px;
    width: 70%;
    line-height: 160%;
}

.Menu .list dd {
    font-size: 16px;
    width: 20%;
    text-align: right;
}

@media (max-width: 1024px) {
    .anchor-list {
        width: 95%;
        margin: 0 0 0 auto;
    }

    .anchor-list li a {
        font-size: 20px;
    }

    .Menu .rotatewrap .box-wrap .title-v,
    .Menu .rotatewrap .box-wrap:nth-of-type(odd) .title-v {
        display: block;
        width: 100%;
        margin: 0;
        padding-bottom: 20px;
    }

    .Menu .list {
        width: 100%;
    }

    .Menu .list dd {
        width: 30%;
    }
}

@media (max-width: 599px) {
    .anchor-list {
        width: 100%
    }

    .anchor-list li {
        width: 100%;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .anchor-list li a {
        font-size: 16px;
        line-height: 100%;
    }

    .anchor-list li a .jp {
        font-size: 12px;
    }

    .Menu .list dt {
        font-size: 12px;
        width: 100%;
    }

    .Menu .list dd {
        width: 100%;
        padding-top: 5px;
    }
}

/*=====gallery=====*/
.Gallery .list li.grd-h {
    width: 23%;
    margin-right: 2.5%;
    padding-bottom: 25px;
    overflow: hidden;
}

.Gallery .list li.grd-h:nth-of-type(4n) {
    margin-right: 0;
}

@media (max-width: 599px) {
    .Gallery .list li.grd-h {
        width: 47%;
        margin-right: 6%;
    }

    .Gallery .list li.grd-h:nth-of-type(4n) {
        margin-right: 6%;
    }

    .Gallery .list li.grd-h:nth-of-type(2n) {
        margin-right: 0;
    }
}

/*=====gallery_detail=====*/
.gallery_detail-box {
    margin-top: 300px;
}

.gallery-title {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    color: #717171;
    letter-spacing: 0;
    margin: 50px 0;
}

.gallery-slide .slick-slide:not(.slick-center) img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}

.gallery-slide span.alt {
    display: none;
}

.gallery-text {
    text-align: center;
    line-height: 300%;
    margin: 50px 0;
}

.style-data {
    margin: 50px 0;
}

.style-data dt,
.style-data dd {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-size: 16px;
}

.style-data dt:after {
    content: '/';
    display: inline-block;
    margin: 0 10px;
}

.gallery-staff-position,
.gallery-staff-name {
    font-size: 20px;
    text-align: center;
    color: #717171;
    margin: 15px 0;
}

.gallery-list {
    border-top: 2px dotted #cdcdcd;
    padding: 15px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.gallery-info .gallery-list:last-of-type {
    border-bottom: 2px dotted #cdcdcd;
}

.gallery-list dt,
.gallery-list dd {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-size: 17px;
}

.gallery-list dt {
    width: 25%;
    font-weight: bold;
}

.gallery-list dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.dot:after {
    content: '・';
    display: inline-block;
}

.dot:last-of-type:after {
    display: none;
}

.color-level li {
    margin: 4px;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 25px;
    height: 25px;
    line-height: 100%;
    background-color: #c9c9c9;
}

.color-level.５ li.５,
.color-level.６ li.６,
.color-level.７ li.７,
.color-level.８ li.８,
.color-level.９ li.９,
.color-level.１０ li.１０,
.color-level.１１ li.１１,
.color-level.１２ li.１２,
.color-level.１３ li.１３,
.color-level.１４ li.１４,
.color-level.１５ li.１５,
.color-level.１６ li.１６ {
    background-color: #8dc2d0;
    color: #fff;
}

.blog-list li {
    position: relative;
}

.blog-list li a {
    display: block;
}

.blog-list li>a:hover {
    opacity: 1;
}

.blog-date {
    font-size: 26px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
}

.blog-author {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0;
}

.blog-title {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 1024px) {
    .gallery_detail-box {
        margin-top: 200px;
    }

    .gallery-title {
        font-size: 30px;
        margin: 40px 0;
    }

    .gallery-staff {
        max-width: 60%;
        margin: 0 auto 30px auto;
    }

    .gallery-info {
        min-width: 350px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        padding: 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .gallery-list dt {
        width: 35%;
    }
}

@media (max-width: 599px) {
    .gallery_detail-box {
        margin-top: 30px;
    }

    .gallery-title {
        font-size: 26px;
        margin: 30px 0;
    }

    .gallery-staff {
        width: 80%;
        max-width: 80%;
    }

    .gallery-info {
        min-width: 100%;
    }

    .gallery-list {
        padding: 10px 0;
    }

    .gallery-list dt,
    .gallery-list dd {
        font-size: 12px;
    }

    .blog-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .blog-list li>a {
        width: 40%;
    }

    .blog-info-box {
        width: 60%;
        padding: 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .blog-date {
        font-size: 18px;
    }

    .blog-author {
        font-size: 12px;
    }

    .blog-title {
        font-size: 14px;
    }
}

/*=====gallery_detail end=====*/
/*==========pager==========*/
.page ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page a {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    padding: 0 13px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.page .prev a {
    font-size: 16px;
    padding: 0 60px 0 0;
}

.page .next a {
    font-size: 16px;
    padding: 0 0 0 60px;
    position: relative;
}

.page .prev a:before {
    content: "";
    background: url(../images/gallery/sen.png) no-repeat;
    width: 20px;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;

}

.page .next a:after {
    content: "";
    background: url(../images/gallery/sen.png) no-repeat;
    width: 20px;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 10px;
}

.page .now a {
    color: #c67c83;
}

@media (max-width: 599px) {
    .page .next a {
        font-size: 14px;
        padding: 0 0 0 10px;
    }

    .page .prev a {
        font-size: 14px;
        padding: 0 10px 0 0;
    }

    .page a {
        font-size: 20px;
        padding: 0 7px;
    }
}

/*==========staff==========*/
.slider-001 {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
}

.slider-001 img {
    width: 100%;
    /*スライダー内の画像を横幅100%に*/
    height: auto;
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slider-001 .slick-prev,
.slider-001 .slick-next {
    position: absolute;
    /*絶対配置にする*/
    top: 42%;
    cursor: pointer;
    /*マウスカーソルを指マークに*/
    outline: none;
    /*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #fff;
    /*矢印の色*/
    border-right: 2px solid #fff;
    /*矢印の色*/
    height: 15px;
    width: 15px;
}

.slider-001 .slick-prev {
    /*戻る矢印の位置と形状*/
    left: -1.5%;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.slider-001 .slick-next {
    /*次へ矢印の位置と形状*/
    right: -1.5%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}




.Staff .list>ul>li {
    width: 23%;
    margin-right: 2.5%;
}

.Staff .list>ul>li:last-of-type {
    margin-right: 0;
}

.Staff .list>ul>li a:hover {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    display: block;
}

.Staff .list>ul>li .txt li {
    text-align: center;
}

.Staff .list>ul>li .txt li.position {
    font-weight: bold;
}

.Staff .list>ul>li .txt li.en {
    font-weight: bold;
    font-size: 20px;
    line-height: 100%;
    padding-top: 10px;
    margin-bottom: 5px;
}

.Staff .concept {
    width: 95%;
    margin: 0 0 0 auto;
}

.Staff .concept h3 {
    font-size: 20px
}

@media (max-width: 599px) {
    .Staff .concept {
        width: 100%
    }

    .Staff .list>ul>li {
        width: 47%;
        margin-right: 6%;
        padding-bottom: 30px;
    }

    .Staff .list>ul>li:nth-of-type(even) {
        margin-right: 0;
    }

    .Staff .list>ul>li .txt li.en {
        font-size: 16px;
        padding-top: 3px;
        margin-bottom: 0px;
    }
}

/*==========staff_detail==========*/
.staff-detail {
    padding-top: 150px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.staff-detail .pic {
    width: 38%;
    position: relative;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.staff-detail .pic .name {
    font-size: 60px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translateY(50%) rotate(-15deg);
    transform: translateY(50%) rotate(-15deg);
    right: 0;
    text-align: center;
    line-height: 100%;
}

.staff-detail .txt-wrap {
    width: 58%;
}

.staff-detail .txt-wrap .name {
    border-bottom: 1px solid #cdcdcd;
}

.staff-detail .txt-wrap .name dt {
    font-weight: bold;
}

.staff-detail .txt-wrap .name dd {
    font-weight: bold;
    font-size: 30px;
    padding-bottom: 10px;
}

.staff-detail .txt-wrap .list dl {
    padding: 15px 0;
    border-bottom: 1px dashed #cdcdcd;
}

.staff-detail .txt-wrap .list dt {
    width: 25%;
    font-size: 16px;
    font-weight: bold;
}

.staff-detail .txt-wrap .list dd {
    width: 75%;
}

.Staff-detail h3 {
    text-align: center;
}

.staff-detail02>ul>li {
    width: 23%;
    margin-right: 2.5%;
    overflow: hidden;
}

.staff-detail02>ul>li:last-of-type,
.staff-blog>ul>li:nth-of-type(3) {
    margin-right: 0;
}

.staff-blog>ul>li {
    width: 32%;
    margin-right: 2%;
    position: relative;
}

.staff-blog>ul>li:nth-of-type(4) {
    display: none;
}

.staff-blog>ul>li .day {
    font-size: 24px;
    font-weight: bold;
    position: absolute;
    top: 0;
    right: 3%;
    z-index: 1;
    -webkit-transform: translateY(-60%);
    transform: translateY(-60%);
    line-height: 100%;
}

.staff-blog>ul>li dt {
    font-weight: bold;
    font-size: 16px;
    padding-top: 20px;
}

.staff-blog>ul>li dd {
    font-size: 18px;
    font-weight: bold;
    line-height: 120%;
}

.staff-blog>ul>li a:hover .of img {
    z-index: -1;
}

.staff-back {
    background: #e5e5e5;
    text-align: center;
}

.staff-back a {
    padding: 30px 0;
    display: block;
    font-size: 16px;
    font-weight: bold;
}

.staff-back .s-back {
    display: block;
    padding-top: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.staff-back .s-back:before {
    content: "";
    background: url(../images/staff_detail/sen.png) no-repeat;
    width: 45px;
    height: 1px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
}

@media (max-width: 599px) {
    .Staff-detail .rotatewrap {
        margin-top: 0;
    }

    .staff-detail {
        padding-top: 0;
    }

    .staff-detail .pic {
        width: 60%;
        margin: 0 0 0 auto;
    }

    .staff-detail .txt-wrap,
    .staff-detail .txt-wrap .list dd {
        width: 100%;
    }

    .staff-detail .txt-wrap .name dd {
        font-size: 22px;
        padding-bottom: 5px;
    }

    .staff-detail .txt-wrap .list dt {
        width: 100%;
        font-size: 12px;
    }

    .staff-detail02>ul>li,
    .staff-blog>ul>li,
    .staff-blog>ul>li:nth-of-type(3) {
        width: 47%;
        margin-right: 6%;
        padding-bottom: 30px;
    }

    .staff-detail02>ul>li:nth-of-type(even),
    .staff-blog>ul>li:nth-of-type(even) {
        margin-right: 0;
    }

    .staff-blog>ul>li:nth-of-type(4) {
        display: inline-block;
    }

    .staff-blog>ul>li .day {
        font-size: 16px;
    }

    .staff-blog>ul>li dt {
        font-size: 12px;
        padding-top: 5px;
    }

    .staff-blog>ul>li dd {
        font-size: 12px;
    }

    .staff-back a {
        padding: 10px 0;
    }

    .staff-back .s-back {
        padding-top: 0;
    }
}

/*==========faq==========*/
.faq .subchild .pic {
    width: 100%;
    margin: 0 0 0 auto;
    position: relative;
}

.faq .subchild .pic:after {
    content: "";
    background: #e5e5e5;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 15px;
    left: -15px;
    z-index: -1;
}

.faq .box-wrap:not(:first-of-type) {
    padding-top: 60px;
}

.faq dt {
    font-size: 20px;
    font-weight: bold;
    font-family: 'Noto Serif JP', serif;
    width: 100%;
    padding-left: 80px;
    position: relative;
}

.faq dt:before {
    content: "Q";
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 20px;
    /* margin-left: -80px; */
    width: 60px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
}

.faq dd {
    width: 100%;
    padding-left: 80px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 35px;
    font-family: 'Noto Serif JP', serif;
    position: relative;
}

.faq dd:before {
    content: "A";
    background: #717171;
    color: #fff;
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 55px;
    /* margin-left: -80px; */
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 599px) {
    .faq dt {
        font-size: 18px;
        padding-left: 50px;
    }

    .faq dt:before {
        font-size: 38px;
        width: 40px;
        margin-right: 10px;
    }

    .faq dd {
        padding-left: 50px;
        margin-top: 20px;
    }


}

/*==========voice==========*/
.voice .subchild .pic {
    position: relative;
}

.voice .subchild .pic:after {
    content: "";
    background: #e5e5e5;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 15px;
    right: -20px;
    z-index: -1;
    padding-right: 999px;
    margin-right: -999px;
}

.voice .box-wrap {
    border-bottom: 2px solid #cdcdcd;
}

.voice .box-wrap:not(:first-of-type) {
    padding-top: 40px;
}

.voice .box-wrap .ofimg {
    width: 31%;
    height: 100%;
}

.voice .box-wrap .ofimg:after {
    content: "";
    background: url(../images/voice/logo.png) no-repeat;
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate(0%, -50%);
    margin: auto;
    z-index: 1;
    height: 85px;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    background-size: 95% 100%;
}

.voice .box-wrap .ofimg img {
    opacity: 0.25;
}

.voice .box-wrap .txt-box {
    width: 64%;
    padding-top: 20px;
}

.voice .box-wrap .txt-box dl {
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.voice .box-wrap .txt-box dl:last-of-type {
    border-bottom: none;
}

.voice .box-wrap .txt-box dt {
    font-size: 16px;
    font-weight: bold;
    width: 25%;
}

.voice .box-wrap .txt-box .w100 dt,
.voice .box-wrap .txt-box .w100 dd {
    width: 100%;
    padding-bottom: 10px;
}

.voice .box-wrap .txt-box dd {
    width: 75%;
}

@media (max-width: 1024px) {
    .voice .box-wrap .txt-box dt {
        width: 35%;
    }

    .voice .box-wrap .txt-box dd {
        width: 65%;
    }
}

@media (max-width: 599px) {
    .voice .subchild .pic {
        width: 100%
    }

    .voice .box-wrap .ofimg {
        width: 55%;
        margin: 0 auto;
    }

    .voice .box-wrap .txt-box {
        width: 100%;
    }

    .voice .box-wrap .txt-box dt {
        font-size: 12px;
    }
}

/*==========product==========*/
.product h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.product .box-wrap:not(:first-of-type) {
    padding-top: 100px;
}

.product .box-wrap>ul>li {
    width: 23%;
    margin-right: 2.5%;
}

.product .box-wrap>ul>li:nth-of-type(4n) {
    margin-right: 0;
}

.product .box-wrap>ul>li .pic {
    height: 230px;
    overflow: hidden;
}

.product .box-wrap>ul>li .pic img {
    width: auto;
    height: 100% !important;
}

.product .box-wrap>ul>li .title {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    padding-top: 10px;
    line-height: 160%;
}

.product .box-wrap>ul>li li ul {
    padding-top: 30px;
}

.product .box-wrap>ul>li li ul li {
    font-family: 'Noto Serif JP', serif;
}

@media (max-width: 599px) {
    .product h3 {
        font-size: 28px;
    }

    .product .box-wrap>ul>li {
        width: 47%;
        margin-right: 6%;
    }

    .product .box-wrap>ul>li:nth-of-type(even) {
        margin-right: 0;
    }

    .product .box-wrap>ul>li .pic {
        height: 150px;
    }

    .product .box-wrap>ul>li .title {
        font-size: 14px;
    }

    .product .box-wrap>ul>li li ul {
        padding-top: 10px;
        padding-bottom: 50px;
    }
}

/*==========blog==========*/
.blog .side-wrap dd {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

/*==========blog_detail==========*/
.blog-detail .day-wrap {
    width: 180px;
    height: 180px;
    background: #717171;
    position: relative;
}

.blog-detail .day-wrap .day {
    width: 72%;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: auto;
}

.blog-detail .day-wrap .day .youbi {
    font-size: 24px;
    display: block;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-align: center;
    line-height: 100%;
}

.blog-detail .day-wrap .day .num {
    font-size: 100px;
    display: block;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-align: center;
    line-height: 0;
    padding: 30px 0 60px;
}

.blog-detail .day-wrap .day li {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    line-height: 100%;
}

.blog-detail .txt-wrap {
    width: 70%;
}

.blog-detail .txt-wrap .cate {
    font-weight: bold;
}

.blog-detail .txt-wrap .title {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0;
    padding: 20px 0 40px;
}

@media (max-width: 1024px) {
    .blog-detail .txt-wrap {
        width: 100%;
        padding-top: 20px;
    }
}

@media (max-width: 599px) {
    .blog-detail .day-wrap {
        width: 100px;
        height: 100px;
    }

    .blog-detail .day-wrap .day .youbi,
    .blog-detail .day-wrap .day li {
        font-size: 12px;
    }

    .blog-detail .day-wrap .day .num {
        font-size: 30px;
        padding: 10px 0 20px;
    }

    .blog-detail .txt-wrap .title {
        font-size: 18px;
        padding: 0px 0 20px;
    }
}

/*==========news==========*/
.bn-list-wrap {
    width: 68%;
}

.news .bn-list-wrap dl {
    border-bottom: 1px dashed #cdcdcd;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.news .bn-list-wrap dt {
    display: inline-block;
    font-size: 16px;
}

.news .bn-list-wrap dt.day {
    font-weight: bold;
}

.news .bn-list-wrap dt.day:after {
    content: "|";
    display: inline-block;
    padding: 0 15px;
    text-align: center;
}

.news .bn-list-wrap dd {
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-block;
}

@media (max-width: 1024px) {
    .bn-list-wrap .page .prev a {
        padding: 0 30px 0 0;
    }

    .bn-list-wrap .page a {
        padding: 0 8px;
    }

    .bn-list-wrap .page .next a {
        padding: 0 0 0 30px;
    }
}

@media (max-width: 599px) {
    .bn-list-wrap {
        width: 100%;
    }

    .news .bn-list-wrap dl {
        padding-bottom: 0px;
        margin-bottom: 10px;
    }

    .news .bn-list-wrap dt {
        font-size: 12px;
    }

    .news .bn-list-wrap dd {
        font-size: 16px;
    }

    .bn-list-wrap .page .next a {
        padding: 0 0 0 10px;
    }

    .bn-list-wrap .page .prev a {
        padding: 0 10px 0 0;
    }
}

/*==========news_detail==========*/
.news .bn-list-wrap .list-detail dt {
    display: block;
}

.news .bn-list-wrap .list-detail dl {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.list-detail dt.cate {
    text-align: center;
    padding-bottom: 20px;
}

.list-detail dt.cate span {
    border: 1px solid #717171;
    padding: 7px 24px;
    margin: 0 1%;
}

.list-detail dt.day {
    text-align: center;
    font-size: 24px;
}

.news .bn-list-wrap .list-detail dd {
    text-align: center;
    padding-bottom: 50px;
    white-space: inherit;
    text-overflow: inherit;
}

.news .bn-list-wrap .list-detail dt.day:after {
    content: none;
}

@media (max-width: 599px) {
    .news .bn-list-wrap .list-detail dd {
        padding-bottom: 20px;
    }

    .list-detail dt.cate span {
        margin: 1%;
        white-space: nowrap;
        display: inline-block;
    }
}

/*==========ニュース・ブログのサイド==========*/
.side-wrap {
    width: 24%;
    transform: translateY(250px);
    -webkit-transform: translateY(250px);
    -moz-transform: translateY(250px);
    -ms-transform: translateY(250px);
    -o-transform: translateY(250px);
}

.side-wrap dl {
    padding-bottom: 50px;
}

.side-wrap dt {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 15px;
}

.side-wrap dd {
    border-bottom: 1px dashed #cdcdcd;
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.back {
    margin-top: 60px;
    text-align: center;
}

.back a {
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.back a:before {
    content: "";
    background: url(../images/news/sen.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
    width: 45px;
    height: 1px;
    margin-right: 10px;
}

@media (max-width: 1024px) {
    .side-wrap {
        transform: translateY(20%);
        -webkit-transform: translateY(20%);
        -moz-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -o-transform: translateY(20%);
    }
}

@media (max-width: 599px) {
    .side-wrap {
        width: 100%;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        padding-top: 50px;
    }

    .side-wrap dd {
        font-size: 12px;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

}

/*recruit*/
.rev:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.rev:nth-of-type(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.recruit .bread {
    padding-bottom: 30px;
}

.recruit-intro {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin: 50px auto;
}

.recruit-intro-title {
    width: auto;
    font-size: 80px;
    font-weight: bold;
    color: #929191;
    letter-spacing: 10px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-bottom: 0;
    margin-right: 30px;
}

.recruit-intro-title::first-letter {
    font-size: 100px;
    color: #8dc2d0;
}

.of185:before {
    padding-top: 185%;
}

.recgallery {
    position: relative;
    width: 680px;
}

.recgallery:before {
    display: block;
    content: "";
    padding-top: 83%;
}

.recgallery li {
    position: absolute;
    margin: 1%;
}

.recgallery li:nth-of-type(7n+1) {
    width: 45%;
    top: 0;
    left: 0;
}

.recgallery li:nth-of-type(7n+2) {
    width: 52%;
    top: 0;
    right: 0%;
}

.recgallery li:nth-of-type(7n+3) {
    width: 45%;
    top: 36%;
    left: 0%;
}

.recgallery li:nth-of-type(7n+4) {
    width: 28%;
    top: 20%;
    left: 46%;
}

.recgallery li:nth-of-type(7n+5) {
    width: 23%;
    top: 20%;
    right: 0%;
}

.recgallery li:nth-of-type(7n+6) {
    width: 74%;
    bottom: 0%;
    left: 0%;
}

.recgallery li:nth-of-type(7n+7) {
    width: 23%;
    bottom: 0%;
    right: 0%;
}

.recgallery li:nth-of-type(7n+1).ofimg:before {
    padding-top: 64%;
}

.rotatewrap {
    margin-top: 100px;
}

.rec1:nth-of-type(even) .box {
    padding-right: 0;
    padding-left: calc(50% - 500px);
}

.rec1 .box {
    padding-right: calc(50% - 500px);
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rec1 .box .txt {
    line-height: 200%;
}

.rec2 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.table-wrap {
    width: 920px;
}

.rec2 .comment {
    width: 100%;
    margin-bottom: 20px;
    text-align: right;
}

.rec2 table {
    border-collapse: collapse;
    table-layout: fixed;
}

.month td {
    width: 50px;
}

.month .space {
    width: 100px;
}

/*thead*/

.rec2 thead td {
    text-align: center;
}

.rec2 thead td:nth-of-type(n+3) {
    padding: 5px;
}

.rec2 thead td:nth-of-type(n+3) span {
    display: block;
    width: 50px;
    line-height: 50px;
    background: #e4e2e0;
    border-radius: 100%;
    margin: auto;
}

/*tbody tr*/

.rec2 tbody tr:nth-of-type(3) {
    border-top: dashed 1px #cdcdcd;
}

.rec2 tbody tr:nth-of-type(5) {
    border-top: dashed 1px #cdcdcd;
}

.rec2 tbody tr:nth-of-type(6) {
    border-bottom: dashed 1px #cdcdcd;
}

/*tbody td*/

.rec2 tbody tr td:first-of-type {
    width: 60px;
    font-size: 16px;
    text-align: center;
}

.rec2 tbody td {
    padding: 20px 5px;
    vertical-align: top;
}

.rec2 tbody tr.lesson td:nth-of-type(2) {
    color: #8dc2d0;
}

.rec2 tbody tr.salonwork td:nth-of-type(2) {
    color: #c67c83;
}

.rec2 tbody tr.lesson:nth-of-type(3) td {
    position: relative;
}

.rec2 tbody tr.lesson:nth-of-type(3) td:nth-of-type(1):before {
    display: block;
    content: "▼";
    color: #cdcdcd;
    line-height: 1;
    position: absolute;
    top: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.rec2 tbody tr.lesson:nth-of-type(5) td {
    position: relative;
}

.rec2 tbody tr.lesson:nth-of-type(5) td:nth-of-type(1):before {
    display: block;
    content: "▼";
    color: #cdcdcd;
    line-height: 1;
    position: absolute;
    top: -3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*tbody td span*/

.rec2 tbody tr.lesson td span {
    display: block;
    font-size: 12px;
    line-height: 120%;
    border-top: solid 2px #8dc2d0;
    padding: 5px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rec2 tbody tr.salonwork td span {
    font-size: 12px;
    line-height: 120%;
    display: block;
    border-top: solid 2px #c67c83;
    padding: 5px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.rec3 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 100px auto;
}

.rec3 .box li {
    border: solid 2px;
    padding: 20px;
}

.rec3 .box li dl dt {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.rec4 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.rec4 ul {
    width: 920px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.rec4 .ofimg {
    width: calc(100% - 50px);
    margin-left: 50px;
}

.rec4 ul li {
    position: relative;
}

.rec4 ul li:after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    margin: auto;
    z-index: -1;
}

.rec4 ul li:nth-of-type(even):after {
    -webkit-transform: translate(-50%, 100%) rotate(-45deg);
    transform: translate(-50%, 100%) rotate(-45deg);
    top: 100%;
}

.rec4 ul li:nth-of-type(odd):after {
    -webkit-transform: translate(50%, 100%) rotate(45deg);
    transform: translate(50%, 100%) rotate(45deg);
    top: 90%;
    right: 100%;
    left: 0;
}

.rec4 ul li:nth-of-type(1):after {
    -webkit-transform: translate(100%, -50%);
    transform: translate(100%, -50%);
    top: 45%;
    right: 0;
    left: auto;
}

.rec4 ul li:last-of-type:after {
    display: none;
}

.rec4 .item dl {
    width: 70%;
    background: #e5e5e5;
    padding: 4%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    position: relative;
    z-index: 1;
    margin-top: -50px;
}

.rec4 .item:nth-of-type(4n+2) {
    margin-top: 10%;
}

.rec4 .item:nth-of-type(4n+4) {
    margin-top: 20%;
}

.rec4 .item dl dt {
    font-size: 20px;
    margin-bottom: 5px;
}

.rec5 {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.rec5 .box {
    width: 920px;
}

.rec5 dl {
    border-bottom: solid 1px;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.rec5 dl:first-of-type {
    border-top: solid 1px;
    padding-top: 15px;
    margin-top: 15px;
}

.rec5 dl dt {
    width: 200px;
}

.rec5 dl dd {
    width: calc(100% - 200px);
}

@media (max-width: 1024px) {

    .rev:nth-of-type(odd),
    .rev:nth-of-type(even) {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .recruit-intro-title {
        font-size: 60px;
        margin-right: 15px;
        letter-spacing: 5px;
    }

    .recruit-intro-title::first-letter {
        font-size: 80px;
    }

    .rec1 .box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .table-wrap {
        width: 100%;
        overflow-y: scroll;
    }

    .table-wrap table {
        width: 920px;
    }

    .rec3 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .rec3 .box li {
        border: 1px solid #000;
        padding: 10px;
    }

    .rec3 .box li .pic {
        width: 50%;
        margin: 0 auto 15px auto;
    }

    .rec3 .box li .w65 {
        width: 100%;
    }

    .rec4 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .rec4 .ofimg {
        width: calc(100% - 30px);
        margin-left: 30px;
    }

    .rec4 ul {
        width: 100%;
    }

    .rec4 .item dl {
        width: 80%;
    }
}

@media only screen and (max-width: 599px) {
    .recruit-intro {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .recruit-intro-title {
        -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
        writing-mode: horizontal-tb;
        font-size: 50px;
        margin-bottom: 10px;
    }

    .recruit-intro-title::first-letter {
        font-size: 60px;
    }

    .rec3 .box li .pic {
        width: 80%;
    }

    .rec4 ul li {
        margin-top: 0;
        margin-bottom: 50px;
    }

    .rec4 .item:nth-of-type(4n+2),
    .rec4 .item:nth-of-type(4n+4) {
        margin-top: 0;
    }

    .rec4 ul li:nth-of-type(even):after,
    .rec4 ul li:nth-of-type(odd):after,
    .rec4 ul li:nth-of-type(1):after {
        -webkit-transform: translate(0, 50%) rotate(45deg);
        transform: translate(0, 50%) rotate(45deg);
        top: 100%;
        bottom: 0;
        left: 0;
        right: 0;
    }

    .rec4 ul li:nth-of-type(even):after {
        -webkit-transform: translate(0, 50%) rotate(-45deg);
        transform: translate(0, 50%) rotate(-45deg);
    }

    .rec5 dl dt {
        width: 100%;
        margin-bottom: 5px;
    }

    .rec5 dl dd {
        width: 100%;
    }
}

/*=====contact=====*/
.form-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.form {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.contact-item dt,
.contact-item dd {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-size: 16px;
}

.contact-item {
    padding: 10px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: 1px dotted #cdcdcd;
}

.contact-item dt {
    width: 35%;
    font-weight: bold;
}

.contact-item dt .must {
    color: #c67c83;
    display: block;
    line-height: 120%;
}

.contact-item dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.contact-item dd input {
    margin: 5px;
    width: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.contact-item dd input,
.contact-item dd textarea {
    background-color: #eee;
    padding: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
}

.contact-item .input-address {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-item .address-num {
    width: 100%;
}

.contact-item .address-num input {
    width: 30%;
}

.contact-item dd textarea {
    width: 100%;
    height: 200px;
}

.contact-btns {
    margin-top: 50px;
}

.contact-btns li {
    width: 230px;
    margin: 10px;
}

.contact-btns li button {
    color: #fff;
    width: 100%;
    padding: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    background: #c57d84;
    background: -webkit-gradient(linear, left top, right top, color-stop(1%, #c57d84), color-stop(51%, #a2a8b3), to(#8ec2cf));
    background: linear-gradient(to right, #c57d84 1%, #a2a8b3 51%, #8ec2cf 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c57d84', endColorstr='#8ec2cf', GradientType=1);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.contact-btns li button:hover {
    opacity: 0.6;
    cursor: pointer;
}

.privacy-policy {
    margin-top: 50px;
}

.privacy-policy-text {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding-left: calc(50% - 500px);
    padding-right: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.privacy-policy-text .text {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    line-height: 200%;
}

.pp-list {
    margin: 50px 0;
}

.pp-list dt,
.pp-list dd {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    font-weight: bold;
}

.pp-list dt {
    font-size: 20px;
}

.pp-list dd ul {
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pp-list dd ul li {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
    list-style: disc;
    list-style-position: outside;
}

@media (max-width: 1024px) {

    .form-wrap,
    .privacy-policy-text {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .contact-item dt,
    .contact-item dd {
        font-size: 14px;
    }

    .contact-item dt {
        width: 42%;
    }

    .privacy-policy-text {
        padding: 0 15px;
    }
}

@media (max-width: 599px) {

    .contact-item dt,
    .contact-item dd {
        width: 100%;
    }

    .contact-item dt .must {
        display: inline-block;
        margin-left: 15px;
    }
}

/*=====contact end=====*/





/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.c-btn-area {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 5;
}

.circle {
    font-size: 12px;
    position: relative;
    margin: 15px auto;
    width: 155px;
    height: 155px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
}

.c-inner {
    position: relative;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    -webkit-animation: rotateAnim 7s linear infinite;
    animation: rotateAnim 7s linear infinite;
}


@-webkit-keyframes rotateAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotateAnim {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.pop-btn {
    z-index: 3;
    position: relative;
}

.btnshine {
    /*キラッと光る基点とするためrelativeを指定*/
    position: relative;
    /*ボタンの形状*/
    display: inline-block;
    background: #333;
    color: #fff;
    margin: 10px 20px;
    text-decoration: none;
    outline: none;
    overflow: hidden;
}

/*キラッと光る*/
.btnshine::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -75%;
    /*キラッと光る形状*/
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
    -webkit-animation: shine 0.7s;
    animation: shine 0.7s;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

.circle span {
    position: absolute;
    inset: 0;
    font-weight: 700;
}

.popup {
    position: relative;
    width: 140px;
    height: 140px;
    background-color: #fff;
    border-radius: 50%;
    z-index:3;
}

.ab .popup {
    position: relative;
    background-color:#000;
}

.ab .c-inner .text{
  color:#fff;
}

.turn {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.popup .arrow-area {
    width: 70%;
    display: inline-block;
    position: absolute;
    top: 45%;
    left: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.yazirusi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.yazirusi::after {
    content: '';
    width: 60%;
    height: 20px;
    border-bottom: solid 2px;
    border-right: solid 2px;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}

.ab .yazirusi::after{
    content: '';
    width: 60%;
    height: 20px;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: skew(45deg);
    transform: skew(45deg);
}

.pop-btn:hover {
    opacity: 1;
}

.pop-btn:hover .popup .arrow-area {
    left: 85%;
}

.logo-btn {
    width: 0;
    height: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    position: absolute;
    top: 30%;
    left: 40%;
    z-index: 2;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 10px;
    background-color: #333;
}

.pop-btn:hover .logo-btn,
.logo-btn:hover {
    width: 180px;
    height: auto;
    top: -100%;
    left: -100%;
    opacity: 1;
    padding: 10px;
    z-index:4;
}

.pro-2 .pro-tempo {
    color: white;
    border: 1px solid white;
    text-align: center;
    padding-top: 15px;
    margin-bottom: 20px;
}

.pro-2 .pro-tempo .up-d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.pro-tempo p {
    display: none;
    margin: 0;
    padding: 0;
}

.pro-tempo .CielKrone {
    width: 100px;
    height: 50px;
    display: block;
    background-image: url('/upload/tenant_1/6e23ef3e6ebfad25249f04193337969e.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 20px;
}

.pro-tempo .LaVieDoll {
    width: 100px;
    height: 50px;
    display: block;
    background-image: url('/upload/tenant_1/f3b7c3706f53d3058bfebe779782f4da.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 20px;
}

.pro-tempo .Abelle {
    width: 100px;
    height: 50px;
    display: block;
    background-image: url('/upload/tenant_1/a16f181b00ff5d6c565c600ee2cdaf27.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 20px;
}

.pro-tempo .Lecheri {
    width: 100px;
    height: 50px;
    display: block;
    background-image: url('/upload/tenant_1/c14ec742c15146c2953618b7ceb6a5c2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 20px;
}

.top-in.pro-tempo .Abelle,
.top-in.pro-tempo .LaVieDoll,
.top-in.pro-tempo .CielKrone,
.top-in.pro-tempo .Lecheri{
    margin: 0 auto;
}

.pro-tt .pro-tempo .Abelle,
.pro-tt .pro-tempo .LaVieDoll,
.pro-tt .pro-tempo .CielKrone,
.pro-tt .pro-tempo .Lecheri{
    padding: 0 20px;
    margin: 20px;
}

.rec-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 22px;
    letter-spacing: 1px;
    color: black;
    text-align: center;
    margin-bottom: 20px;
}

.rec-main {
    padding: 45px;
    background-color: rgba(255, 255, 255, 0.4);
}

.gl-box .rec-main {
    padding: 0px;
    background-color: rgba(255, 255, 255, 0);
}

.rec-det {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px dotted black;
}

.rec-det dt {
    width: 100px;
    margin-right: 15px;
}

.rec-det dd {
    width: calc(100% - 115px);
}

.rec-det .pro-tempo>* {
    -webkit-filter: brightness(0);
    filter: brightness(0)
}

.recruits {
    position: relative;
    padding-top: 90px;
    padding-bottom: 90px;
}

.r-bg {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.r-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.gr-box.pro-tempo>* {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.gr-box.pro-tempo:hover {
    background-color: #000;
    color: white;
}


.kiji-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kiji-1 {
    width: 75%;
}

.kiji-2 {
    width: 25%;
}

.cat-box {
    margin-left: 15px;
}

.cat-list li {
    background-color: rgba(255, 255, 255, 0.7);
}

.cat-list .cat-title {
    background-color: #000;
    text-align: center;
    padding: 3px 0;
}

.cat-title span {
    color: #fff;
    font-family: din-2014,
        sans-serif;
    font-weight: 800;
    font-style: normal;
    font-size: 22px;
}

.cat-list li a {
    border: 1px solid #797979;
    display: block;
    width: 100%;
    margin-top: -1px;
    padding: 5px;
    position: relative;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #797979;
}

.cat-list li a span {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
}

.cat-list li a:hover {
    color: #fff;
    opacity: 1;
}

.cat-list li a::after {
    content: '';
    background-color: #797979;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    padding: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 1;
}

.cat-list li a:hover::after {
    width: 100%;
}

.to-3 {
    margin-top: 30px;
}

.p-cat {
    display:flex;
    flex-wrap:wrap;
}

.split-tag .dot{    
  font-size: 12px;
    color: #fff;
    padding: 3px 10px;
    background-color: #000;
    border-radius: 20px;
    margin-right:3px;
    margin-bottom:2px;
  
}
    
  .split-tag .dot::after{
    display:none;
  }  

@media(max-width:1024px) {
    .kiji-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .kiji-1 {
        width: 100%;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .kiji-2 {
        width: 100%;
    }

    .cat-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
        margin-top: 90px;
    }

    .to-3 {
        margin-top: 0;
    }

    .cat-list {
        width: 45%;
    }
}

@media(max-width:599px) {
    .cat-box {
        display: block;
    }

    .to-3 {
        margin-top: 30px;
    }

    .cat-list {
        width: 95%;
    }

    .topics-main li {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .topics-right {
        min-width: 300px;
        width: 100%;
        margin-left: 0;
    }
}

.f-title {
    font-family: 'Libre Bodoni', serif;
    font-size: 25px;
    letter-spacing: 1px;
}


.pagenav ul {
    max-width: 300px;
    margin: 0 auto;

}

.pagenav li {
    width: 14%;
    font-weight: 700;
    font-size: 16px;
    text-align: center;

}

.pagenav li a {
    width: 2em;
    height: 2em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    border: 1px solid;
            color:#fff;
}

.pagenav .now {
    padding: 15px;
    color: #fff;
    border: none;
    background: #000;
}

[data-element-id].gnav .pc-none.big{
  display:block!important;
  position:relative;
  border:3px solid blue;
}

[data-element-id].gnav .pc-none.big::before{
  display:inline-block;
  content:'SP時のみ表示';
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background-color:blue;
  color:yellow;
  font-size:11px;
  text-align:center;
}

[data-element-id].gnav{
  max-width:1600px!important;
}

[data-element-id].gnav-list{
  justify-content: space-evenly;
}

[data-element-id].drop-menu{
  display:block!important;
}

[data-element-id].blush {
    transform: skew(0, 0);
}

[data-element-id].drop-menu li{
  display:block!important;
  position:relative;
  border:3px solid green;
  margin-bottom:15px;
}

[data-element-id].drop-menu li::before{
  display:inline-block;
  content:'選択時のみ表示';
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background-color: green;
  color:yellow;
  font-size:11px;
   text-align:center;
}

[data-element-id].gal-main ul>div{
  width:100%;
  display:flex;
  justify-content: space-evenly;
}

[data-element-id]#header{
  position:absolute;
}

[data-element-id].c-btn-area {
    position:absolute;
    bottom:60px;
}

[data-element-id] .logo-btn {
    width: 180px;
    height: auto;
    top: -100%;
    left: -100%;
    opacity: 1;
    padding: 10px;
    z-index: 4;
}

[data-element-id].data-list1 li:nth-child(3){
  display:none;
}
[data-element-id].data-list1 li:nth-child(4){
  display:none;
}
[data-element-id].data-list1 li:nth-child(5){
  display:none;
}
[data-element-id].data-list1 li:nth-child(6){
  display:none;
}
[data-element-id].data-list1 li:nth-child(7){
  display:none;
}
[data-element-id].data-list1 li:nth-child(8){
  display:none;
}
[data-element-id].data-list1 li:nth-child(9){
  display:none;
}
[data-element-id].data-list1 li:nth-child(10){
  display:none;
}

.salon-cat .up-d-flex{
    width:100%;
  height:100%;
}

.salon-cat .up-d-flex div{
  font-size:40px;
  color:white;
  font-family: 'Libre Bodoni', serif;
  text-align:center;
  width:100%;
  height:100%;
}

.pro9 .pro-tempo {
    color: black;
    border: 1px solid black;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 20px;
    font-family: 'Libre Bodoni', serif;
    width:70%;
    -webkit-filter: brightness(0%);
    filter: brightness(0%);
}

[data-element-id] .slick-slide>div>div{
  display:flex!important;
  flex-wrap:nowrap;
  flex-direction:row;
  overflow:hidden;
}

[data-element-id] .slider-001.js-contc>div li{
  width:300px;
}


/*フォーム*/
.Form {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 599px) {
    .Form {
        margin-top: 40px;
    }
}

.Form-Item {
    width: 100%;
    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-top: 20px;
    padding-bottom: 20px;
    font-family: 'Libre Bodoni', serif;
}

@media screen and (max-width: 599px) {
    .Form-Item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 14px;
        padding-right: 14px;
    }
}

.Form-Item-Label {
    width: 100%;
    max-width: 250px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 599px) {
    .Form-Item-Label {
        max-width: inherit;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        font-size: 15px;
    }
}

.Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
}

@media screen and (max-width: 599px) {
    .Form-Item-Label.isMsg {
        margin-top: 0;
    }
}

.Form-Item-Label-Required {
    width: 48px;
    display: inline-block;
    margin-left: 5px;
    padding-top: 5px;
    padding-bottom: 3px;
    font-size: 12px;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    background: #000;
}

@media screen and (max-width:599px) {
    .Form-Item-Label-Required {
        width: 32px;
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 10px;
        border-radius: 4px;
    }
}

.Form-Item-Input {
    width: 100%;
    max-width: 400px;
    height: 48px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color:#000;
}

.Form-Item-Input2 {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: 10px;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 18px;
}

.Form-Item-Input2 label {
    margin: 0 10px;
}

@media screen and (max-width:599px) {
    .Form-Item-Input {
        height: 40px;
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        margin-top: 18px;
        margin-left: 0;
        font-size: 15px;
    }

    .Form-Item-Input2 {
        width: 100%;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-top: 20px;
        margin-left: 0;
        padding-left: 1em;
        padding-right: 1em;
        font-size: 18px;
    }
}

.Form-Item-Textarea {
    width: 100%;
    height: 216px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    color:#000;
}

.sp-only{
  display:none;
}



@media screen and (max-width: 599px) {
  .sp-only{
    display:block;
  }
    .sp-none {
        display: none !important;
    }

    .Form-Item-Textarea {
        height: 200px;
        -webkit-box-flex: inherit;
        -ms-flex: inherit;
        flex: inherit;
        margin-top: 18px;
        margin-left: 0;
        font-size: 15px;
    }
}



@media screen and (max-width: 480px) {
    .Form-Btn {
        width: 160px;
        margin-top: 24px;
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 16px;
    }
}

.Form-Item {
    position: relative;
}

.uk-text-danger {
    width: 100%;
}

.actual_object_error_wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.mini-input {
    padding: 0 3px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ccc;
    pointer-events: none;
}




.h50{
  height:50px!important;
  text-align:center;
}

.h50 img{
  height:100%!important;
  margin-left:auto;
  margin-right:auto;
}

.telarea .tel{
  font-size:20px;
  font-family: 'Libre Bodoni', serif;
}




/* .breadcrumbs {
    margin-left: 20px;
    padding: 10px 0;
} */

.breadcrumbs-list {
    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;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: absolute;
    left: 105%;
    width: 200%;
    top:93.5%;
    margin-left:3px;
}

@media(max-width:599px){
  .breadcrumbs-list {
    margin: 0;
    padding: 15px 2%;
    left: 0;
    width: 100vw;
    top: 100%;
}

.mv-title {
    width: 80%;
    margin-right: -60%;
}

.ver-2-inn {
    margin: 0px;
}
}

.breadcrumbs-list li {
    font-size: 13px;
    font-family: 'Libre Bodoni', serif;
    color: #fff;
}

.breadcrumbs-list li:last-child {
  border-bottom:none;
}

.breadcrumbs-list li+li::before {
    content: "\f105";
    display: inline-block;
    margin: 0 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: inherit;
    line-height: 100%;
}

.txt-under.pro-comment.up-clearfix h2 {
    font-weight: bold;
    font-size: 1.5em;
    text-decoration: underline;
    text-decoration-color: #000;
    text-decoration-thickness: 3px;
    -webkit-text-decoration-style: solid;
    text-decoration-style: solid;
}

.txt-under.pro-comment.up-clearfix h3 {
    font-weight: bold;
    font-size: 1.2em;
}

.txt-under.pro-comment.up-clearfix h4 {
    font-weight: bold;
    background-color:black;
    padding:1px 3px;
    display:inline-block;
}

.insta-link{
  width:100%;
  text-align:center;
  margin-top:15px;
}

.insta-link a{
  width:30%;
  display:inline-block;
}

.insta-link a .img img{
  filter: brightness(100%);
}

#input-confirm-form-10 .Form-Item-Input2 {
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
}

/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
@media(max-width:599px){
  
.popup {
    width: 108px;
    height: 108px;
}

.circle {
    width: 120px;
    height:120px;
}

.c-btn-area {
    right: 10px;
    bottom: 10px;
}



}
/*///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
.image-thumb{
  display:flex;
}

.image-thumb li {
    width: calc(100% / 6);
    margin: 3px;
}

.image-thumb li.active-img {
    outline: 2px solid var(--color-border_02);
}

.image-thumb li:hover {
    cursor: pointer;
}


.black-back *{
  filter:brightness(0);
}

.txt-1.pro-brands.fead-up{
  line-height:1.5em;
}

h2 span{
  display:block;
  width:100%;
  height:100%;
}



/*2023/1/18追記：株式会社ユニソンプラネット神野*/
.brand-links a{
  display:inline-block;
  border:1px solid #fff;
  width:100%;
  height:100%;
  padding:15px 15px 50px 15px;
  position:relative;
}

.brand-links a::after{
  font-family: 'Libre Bodoni', serif;
  color: #fff;
  content:"-view more";
  display:inline-block;
  width:100%;
  padding:7px 15px 7px 0;
  position:absolute;
  font-size:20px;
  background-color:#000;
  bottom:0;
  left:0;
  color:#fff;
  text-align:right;
  transition:all .4s;
}

.brand-links a:hover::after{
  color: #000;
  background-color:#fff;
  color:#000;
}

.brand-name{
  font-family: 'Libre Bodoni', serif;
  color: #fff;
  text-align:center;
  font-size:18px;
  margin-bottom:10px;
}

.brand-img{
  max-width:300px;
  margin-left:auto;
  margin-right:auto;
}

.banner-ec{
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
  margin-bottom:60px;
  position:relative;
}

.banner-ec>*{
  display:inline-block;
  width:100%;
  height:100%;
  overflow:hidden;
  background-color:#fff;
  position:relative;
  z-index:2;
  padding:45px;
  transition:all .4s;
  transform:translate(-10px , -5px);
}

.banner-ec::after{
  content:"";
  display:inline-block;
  width:100%;
  height:100%;
  background-color:#333;
  position:absolute;
  top:0;
  right:0;
  z-index:1;
  transition:all .4s;
  transform:translate(10px , 5px);
}

.banner-ec:hover>*{
  transform:translate(0 , 0);
  opacity:1;
}

.banner-ec:hover::after{
  transform:translate(0 , 0);
  height:calc(100% - 7px);
  opacity:1;
}


.banner-ec>*>img{
  position:absolute;
  right:0px;
  bottom:0;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:bottom right;
  opacity:0.4;
}

.banner-ec-inner{
  position:relative;
  z-index:2;
}

.banner-ec-title{
  font-family: 'Libre Bodoni', serif;
  font-size:35px;
  margin-bottom:30px;
}

.banner-ec-sub{
  font-size:16px;
  color:#000;
  font-weight:bold;
}

.banner-ec-sub2{
  margin-top:5px;
  font-size:14px;
  color:#000;
  font-weight:bold;
}

@media(max-width:1024px){
  .banner-ec>*{
  padding:30px;
}

.banner-ec-sub {
    font-size:14px;
}

.banner-ec-sub2{
  font-weight:normal;
}
}

@media(max-width:599px){
  .banner-ec-title {
    font-size: 25px;
}

  .banner-ec>*{
  padding:30px 15px;
}

.banner-ec>*>img{
  opacity:0.25;
}
}



.links-card-inner>object{
  display:inline-block;
  position:absolute;
  width:30%;
  min-width:160px;
  top:15px;
  right:15px;
  z-index:2;
}

.links-card-inner>object>a{
  display:flex;
  align-items:center;
  justify-content: center;
  flex-direction:column;
  width:100%;
  height:100%;
  background-color:#797979;
  color:#fff;
  font-size:16px;
  font-weight:bold;
  padding:5px 10px;
  border:3px solid #797979;
  border-radius:15px;
  transition:.4s;
}

.links-card-inner>object>a>img{
  position:relative;
  display:block;
  width:70%;
  height:60px;
  object-fit: contain;
  object-position:center;
  transition:.4s;
}

.links-card-inner>object>a:hover{
  background-color:#fff;
  color:#797979;
  opacity:1;
}

.links-card-inner>object>a:hover>img{
  filter: brightness(30%);
}

.square-content{
  position: relative;
  display: block;
  width: 100%;
}
.square-content>img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    object-fit:cover;
    object-position:center;
}

.square-content:after {
    content: "";
    display: block;
    padding-top: 100%;
}

@media(max-width:599px){
  .pop-btn:hover .logo-btn,
.logo-btn:hover {
    top: -200%;
    left: -100%;
}
}


/* 2023.03.14 */

.logochimei{
  text-align: center;
    color: #fff;
    margin-top: 10px;
    font-family: adobe-handwriting-ernie, sans-serif;
}

.logochimei2{
  font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
}

.leftlogoimg{
  margin-bottom: 0px !important;
}

.logochimei03{
  display: block;
}

.leftlogoimg02{
  margin-bottom: 10px;
}

.saloninformation{
  justify-content: space-between;
}

.saloninformation03{
  width: 32%;
}

.saloninformation03 iframe{
height: 360px;
}

.saloninformationblock{
  max-width: 1100px;
}

@media(max-width:599px){
.saloninformation {
  display: block;
}

.saloninformation03 {
    width: 97%;
    margin: auto;
}

.map01 {
  margin-bottom: 15px;
}

.cielh2sp{
  margin-bottom: 5px !important;
}
}

.abellsns{
  width: 40px !important;
}



@media(max-width:599px){
.abellsns {
    margin-bottom: 30px;
}
}

/**モーダル**/
#modalArea {
  position: absolute;
  background: #333;
  padding: 8%;
  top: -55%;
  left: -4px;
  border-radius: 10px;
}

#modalArea ul li {
  width: 100%;
}

/* 2025/04/21 */
.c-btn-area.verbrown {
    right: auto;
    bottom: auto;
    top: 25px;
    left: 135px;
}

#wrapper.fixed .c-btn-area.verbrown {
    top: 5px;
}

.c-btn-area.verbrown .popup {
    background-color: #57462B;
    width: 110px;
    height: 110px;
}

.c-btn-area.verbrown .circle {
    width: 120px;
    height: 120px;
}

.c-btn-area.verbrown.ab .text02 {
    color: #fff;
}

.c-btn-area.verbrown .circle span {
    font-size: 10px;
    font-weight: 900;
}

.c-btn-area.verbrown .yazirusi::after {
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
}

.c-btn-area.verbrown .text02 {
  color: #fff;
  font-weight: bold;
}

.c-btn-area.verbrown.ab .popup {
    background-color: #000;
}

.c-btn-area.verbrown .pop-btn:hover .logo-btn,
.c-btn-area.verbrown .logo-btn:hover {
    top: 150%;
    left: 100%;
}

@media(max-width:1024px){
.c-btn-area.verbrown {
    right: 20px;
    bottom: 20px;
    top: auto;
    left: auto;
}

.c-btn-area.verbrown .pop-btn:hover .logo-btn,
.c-btn-area.verbrown .logo-btn:hover {
    top: -150%;
    left: -150%;
}

#wrapper.fixed .c-btn-area.verbrown {
    top: auto;
}
}

@media(max-width:599px){
.c-btn-area.verbrown .pop-btn:hover .logo-btn,
.c-btn-area.verbrown .logo-btn:hover {
    top: -200%;
    left: -100%;
}
}

[data-element-id] .c-btn-area.verbrown {
    right: 20px;
    bottom: 20px;
    top: auto;
    left: auto;
}

/*20260611*/
.pro-tempo .LaVieDoll {
 background-image: url('/upload/tenant_1/白いロゴ.png');
}
