@charset "UTF-8";
/*----------------------------------------------------
    Reset
----------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
    margin-left: 0;
    margin-top: 0;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*----------------------------------------------------
    Base
----------------------------------------------------*/
* {
    box-sizing: border-box;
}

p {
/*
    text-align: justify;
    text-justify: inter-ideograph;
*/
}

html {
    font-size: 62.5%;
}

body {
    background: #241915;
    -webkit-text-size-adjust: 100%;
    font-family:"ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
    font-weight: 500;
    word-break : break-all;
}

input, button, select, textarea {
    font-family: inherit;
    line-height: inherit;
    font-size: inherit;
}

caption,
th {
    text-align: left;
}

th {
    vertical-align: top;
}

h1, h2, h3, h4, h5, h6, p, th, td, li, div {
    color: #F0BF55;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, h6, p, th, td, li, div {
        letter-spacing: 0;
    }
}

a {
    color: #F0BF55;
    text-decoration: none;
}

a:hover {
    color: #d09F35;
    text-decoration: none;
}

b, strong {
    font-weight: 700;
}

img {
    vertical-align: bottom;
}

@media screen and (max-width: 768px) {
    img {
        height: auto;
        max-width: 100%;
    }
}

/*----------------------------------------------------
    Component
----------------------------------------------------*/
/* clearfix */
.clearfix {
    clear: both;
    zoom: 1;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

@media screen and (max-width: 768px) {
    .clearfix-sp {
        clear: both;
        zoom: 1;
    }

    .clearfix-sp:after {
        content: " ";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
}

/* rollover */
.rollover {
    animation: horizontalY 0.5s ease-in-out infinite alternate;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.rollover:hover {
    animation: horizontalY 0.2 ease-in-out infinite alternate;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    filter: alpha(opacity=70) !important;
    -moz-opacity: 0.7 !important;
    opacity: 0.7 !important;
}

/* pc/sp */
.pc {
    display: block;
}

.pc-i {
    display: inline;
}

.sp,
.sp-i {
    display: none;
}

@media screen and (max-width: 768px) {
    .pc,
    .pc-i {
        display: none;
    }

    .sp {
        display: block;
    }

    .sp-i {
        display: inline;
    }
}

.min {
    font-family: "¥Ò¥é¥®¥ÎÃ÷³¯ ProN W6", "HiraMinProN-W6", "HGÃ÷³¯E", "£Í£Ó £ÐÃ÷³¯", "MS PMincho", "MS Ã÷³¯", serif;
}

.innerlink {
    height: 1px;
    position: relative;
    top: -80px;
}

@media screen and (max-width: 768px) {
    .innerlink {
        top: -120px;
    }
}

/*----------------------------------------------------
    gmenu
----------------------------------------------------*/
.gmenu {
    background: url(../img/gmenu-bg.png) repeat-x left top;
    padding: 40px 0 15px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.gmenu-logo {
    display: none;
}

/* toggle */
.gmenu-toggle {
    display: none;
}

/* list */
.gmenu ul {
    text-align: center;
}

.gmenu li {
    display: inline-block;
    width: 245px;
}

.gmenu li:first-child {
    width: 60px;
}

.gmenu li a {
    color: #9B9593;
    display: inline-block;
    font-family:"メイリオ",Meiryo,Meiryo UI,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","Osaka－等幅","Osaka-Mono",Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
    line-height: 34px;
    position: relative;
    text-align: center;
    width: 100%;
}

.gmenu li a::after {
    content: '|';
    position: absolute;
    right: 0;
}

.gmenu li:first-child a::before {
    content: '|';
    position: absolute;
    left: 0;
}

.gmenu li a span {
    display: none;
}

.gmenu li a img {
    vertical-align: middle;
}

@media screen and (max-width: 1100px) {
    .gmenu li {
        width: 20%;
    }
}

@media screen and (max-width: 768px) {
    .gmenu {
        background: #fff;
        border-bottom: 1px solid #999;
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .gmenu-logo {
        display: inline-block;
        float: left;
        padding-top: 5px;
        padding-left: 10px;
    }

    .gmenu-logo img {
        height: 24px;
    }

    /* toggle */
    .gmenu-toggle {
        cursor: pointer;
        display: block;
        float: right;
        font-size: 24px;
        line-height: 40px;
        margin-right: 0;
        text-align: center;
        width: 40px;
    }

    /* list */
    .gmenu ul {
        display: none;
    }

    .gmenu li {
        width: 100%;
    }

    .gmenu li:first-child {
        width: 100%;
    }

    .gmenu li a {
        border-top: 1px solid #999;
        color: #000;
        padding: 10px;
    }

    .gmenu li a:after {
        content: none;
    }

    .gmenu li:first-child a:before {
        content: none;
    }

    .gmenu li a span {
        display: inline-block;
    }

    .gmenu li a img {
        display: none;
    }
}

/*----------------------------------------------------
    main-visual
----------------------------------------------------*/
.main-visual {
    background: url(../img/main-visual-bg.png) repeat-x left top;
}

.main-visual-in {
    background: url(../img/main-visual.png) no-repeat center top;
    position: relative;
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    opacity: 0.0;
}

.main-visual-logo {
    margin-left: -125px;
    margin-top: -160px;
    position: absolute;
    left: 50%;
    top: 50%;
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    opacity: 0.0;
}

/* sub */
.main-visual-sub {
    background: url(../img/main-visual-bg.png) repeat-x left top;
}

.main-visual-sub-in {
    background: url(../img/main-visual-sub.png) no-repeat center top;
    position: relative;
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    opacity: 0.0;
}

.main-visual-sub-logo {
    margin-left: -95px;
    margin-top: -83px;
    position: absolute;
    left: 50%;
    top: 50%;
    filter: alpha(opacity=0);
    -moz-opacity: 0.0;
    opacity: 0.0;
}

@media screen and (max-width: 768px) {
    .main-visual-in {
        background-size: 200% auto;
    }
    .main-visual-in img {
        height: 325px;
    }
    .main-visual-in img.main-visual-logo {
        height: auto;
        margin-left: -62px;
        margin-top: -80px;
        width: 120px;
    }

    .main-visual-sub-in {
        background-size: 200% auto;
    }
    .main-visual-sub-in img {
        height: 198px;
    }
    .main-visual-sub-in img.main-visual-sub-logo {
        height: 70px;
        margin-left: -25px;
        margin-top: -35px;
        width: auto;
    }
}

/*----------------------------------------------------
    top-catch
----------------------------------------------------*/
.top-catch {
    padding-top: 75px;
}


.top-catch-img {
    text-align: center;
}

.top-catch-logo {
    padding-top: 100px;
    text-align: center;
}

.top-catch-text {
    padding-top: 70px;
}

.top-catch-text p {
    font-size: 21px;
    padding-top: 40px;
    text-align: center;
}

.top-catch-text p:first-child {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .top-catch {
        padding-top: 60px;
    }

    .top-catch-in {
        padding: 0 20px;
    }

    .top-catch-text {
        padding-top: 60px;
    }

    .top-catch-text p {
        font-size: 18px;
        padding-top: 30px;
        text-align: left;
    }
}

/*----------------------------------------------------
    access
----------------------------------------------------*/
.access {
    padding-top: 120px;
}

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

/* address */
.access-address {
    font-size: 18px;
    padding-top: 25px;
    text-align: center;
}

/* map */
.access-map {
    padding-top: 30px;
}

/* qr */
.access-qr {
    margin: 0 auto;
    padding-top: 75px;
    width: 660px;
}

.access-qr-img {
    float: left;
    width: 155px;
}

.access-qr-body {
    float: right;
    width: 490px;
}

.access-qr-text {
    font-size: 17px;
}

.access-qr-remark {
    font-size: 17px;
    padding-top: 20px;
}

/* tel */
.access-tel {
    padding-top: 50px;
}

.contact-tel {
    padding-top: 0;
}

.contact-page .access-tel {
    display: none;
}

.access-tel-title {
    font-size: 24px;
    text-align: center;
}

.access-tel-img {
    padding-top: 10px;
    text-align: center;
}

.access-tel-remark {
    font-size: 18px;
    text-align: center;
}

/* mail */
.access-mail {
    padding-top: 30px;
}

.contact-page .access-mail {
    display: none;
}

.access-mail-title {
    font-size: 18px;
    text-align: center;
}

.access-mail-img {
    padding-top: 20px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .access {
        padding-top: 60px;
    }

    .access-in {
        padding: 0 20px;
    }

    .access-tel-remark {
        font-size: 14px;
    }

    /* qr */
    .access-qr {
        padding-top: 60px;
        width: 100%;
    }

    .access-qr-img {
        float: none;
        text-align: center;
        width: 100%;
    }

    .access-qr-body {
        float: none;
        padding-top: 20px;
        width: 100%;
    }

    .access-qr-text {
        font-size: 16px;
    }

    .access-qr-remark {
        font-size: 16px;
        padding-top: 20px;
    }
}

/*----------------------------------------------------
    banner
----------------------------------------------------*/
.banner {
    padding-top: 95px;
}

.banner-in {
    padding: 0 20px;
}

.banner-list {
    margin: 0 auto;
    max-width: 1130px;
    text-align: center;
}

.banner-list ul {
    margin: 0 -12px;
}

.banner-list li {
    display: inline-block;
    padding: 0 12px;
    position: relative;
    width: 33.3333333333%;
}

.banner-list li img {
    max-width: 100%;
}

.banner-instagram {
    margin: 0 auto;
    padding-top: 35px;
    position: relative;
    text-align: center;
    max-width: 1130px;
}

.banner-instagram img {
    max-width: 100%;
}

/* rollover */
.banner-list a,
.banner-instagram a {
    display: block;
    position: relative;
}

.banner-list a:after,
.banner-instagram a:after {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: -webkit-box-shadow 0.6s ease;
    transition: -webkit-box-shadow 0.6s ease;
    transition: box-shadow 0.6s ease;
    transition: box-shadow 0.6s ease, -webkit-box-shadow 0.6s ease;
}

.banner-list a:hover:after,
.banner-instagram a:hover:after {
  -webkit-box-shadow: rgba(218, 211, 203, 0.7) 0px 0px 0px 8px inset;
          box-shadow: rgba(218, 211, 203, 0.7) 0px 0px 0px 8px inset;
}

@media screen and (max-width: 768px) {
    .banner {
        padding-top: 60px;
    }

    .banner-list ul {
        margin: 0;
    }

    .banner-list li {
        display: block;
        margin: 0;
        padding: 0 0 20px;
        text-align: center;
        width: 100%;
    }

    .banner-instagram {
        padding: 0;
    }
}

/*----------------------------------------------------
    pagetop
----------------------------------------------------*/
.pagetop {
    padding-top: 40px;
}

.pagetop-in {
    margin: 0 auto;
    max-width: 1170px;
    padding: 0 20px;
    text-align: right;
}

/*----------------------------------------------------
    footer
----------------------------------------------------*/
.footer {
    background: #150F0D;
    padding-bottom: 30px;
    padding-top: 40px;
}

.footer-in {
    margin: 0 auto;
    max-width: 1170px;
}

.footer-contact {
    padding-right: 65px;
    text-align: right;
}

.footer-menu {
    padding-top: 25px;
    text-align: center;
}

.footer-menu li {
    display: inline-block;
    margin: 0 60px;
}

.footer-menu li a {
    font-family:"メイリオ",Meiryo,Meiryo UI,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Osaka","Osaka－等幅","Osaka-Mono",Arial,Verdana,"ＭＳ Ｐゴシック",sans-serif;
}

.footer-logo {
    padding-top: 100px;
    text-align: center;
}

.copyright {
    padding-top: 30px;
    text-align: center;
}

@media screen and (max-width: 1150px) {
    .footer-menu li {
        margin: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer-contact {
        padding-right: 0;
        text-align: center;
    }

    .footer-menu {
        padding-top: 25px;
        text-align: center;
    }

    .footer-menu li {
        display: block;
        margin: 0;
    }

    .footer-menu li a {
        border-bottom: 1px solid #554F4D;
        display: block;
        padding: 15px;
        text-align: center;
    }

    .footer-menu li:first-child a {
        border-top: 1px solid #554F4D;
    }

    .footer-logo {
        padding-left: 20px;
        padding-right: 20px;
    }

    .copyright {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/*----------------------------------------------------
    concept
----------------------------------------------------*/
.concept {
    padding: 110px 20px 0;
    margin: 0 auto;
    max-width: 1170px;
}

.concept img {
    max-width: 100%;
}

/* head */
.concept-title {
    text-align: center;
}

.concept-text {
    font-size: 21px;
    padding-top: 15px;
    text-align: center;
}

.concept-name {
    padding-top: 30px;
    text-align: center;
}

/* body */
.concept-body {
    padding-top: 100px;
}

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

.concept-text2 {
    font-size: 21px;
    padding-top: 70px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .concept {
        padding-top: 60px;
    }

    /* head */
    .concept-text {
        font-size: 18px;
    }

    /* body */
    .concept-body {
        padding-top: 60px;
    }

    .concept-text2 {
        font-size: 18px;
        padding-top: 30px;
        text-align: left;
    }
}

/*----------------------------------------------------
    concept-salon-gallery
----------------------------------------------------*/
.concept-salon-gallery {
    padding: 70px 20px 0;
    margin: 0 auto;
    max-width: 1170px;
}

.concept-salon-gallery-img {
    padding-top: 50px;
    text-align: center;
}

.concept-salon-gallery img {
    max-width: 100%;
}

/*----------------------------------------------------
    profile
----------------------------------------------------*/
.profile {
    padding: 85px 20px 0;
    margin: 0 auto;
    max-width: 940px;
}

.profile img {
    max-width: 100%;
}

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

.profile-detail {
    padding-top: 75px;
}

.profile-img {
    float: left;
    padding-top: 10px;
    padding-right: 45px;
    text-align: center;
    width: 50%;
}

.profile-info {
    float: left;
    width: 50%;
}

.profile-info > div {
    padding-top: 30px;
}

.profile-info > div:first-child {
    padding-top: 0;
}

.profile-info p {
    color: #DCBC82;
    font-size: 21px;
}

.profile-info .profile-message p {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .profile {
        padding-top: 60px;
    }

    .profile-title {
        padding-bottom: 20px;
    }

    .profile-img {
        float: none;
        padding-right: 0;
        width: 100%;
    }

    .profile-info {
        float: none;
        padding-top: 40px;
        width: 100%;
    }

    .profile-info p {
        font-size: 18px;
    }

    .profile-info .profile-message p {
        font-size: 16px;
    }
}

/*----------------------------------------------------
    license
----------------------------------------------------*/
.license {
    padding: 55px 20px 0;
    margin: 0 auto;
    max-width: 900px;
}

.license-title {
    margin-bottom: 10px;
}

.license img {
    max-width: 100%;
}

.license ul {
    margin: 0 -40px;
}

.license li {
    display: inline-block;
    padding: 0 40px;
    width: 50%;
}

.license li p {
    color: #DCBC82;
    font-size: 21px;
    padding-bottom: 15px;
}

@media screen and (max-width: 768px) {
    .license {
        padding-top: 60px;
    }

    .license ul {
        margin: 0;
    }

    .license li {
        display: block;
        padding: 0 0 20px;
        width: 100%;
    }

    .license li p {
        font-size: 18px;
    }
}

/*----------------------------------------------------
    menu
----------------------------------------------------*/
.menu {
    padding: 85px 0 0;
    margin: 0 auto;
}

.menu img {
    max-width: 100%;
}

.menu-title {
    padding-bottom: 40px;
    text-align: center;
}

.menu-each-title {
    background: #1F1412;
}

.menu-each-title-main {
    margin: 0 auto;
    position: relative;
    max-width: 830px;
}

.menu-each-title-main img {
    position: relative;
    top: -5px;
}

.menu-each-title-main span {
    color: #DCBC82;
    font-size: 21px;
    display: block;
    line-height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}

.menu-each {
    margin: 0 auto;
    padding-top: 15px;
    padding-bottom: 60px;
    width: 830px;
}

/* table */
.menu-each table {
    width: 100%;
}

.menu-each th {
    color: #DCBC82;
    font-size: 21px;
    padding-top: 10px;
    padding-left: 30px;
    padding-right: 15px;
    text-align: right;
    white-space: nowrap;
}

.menu-each td {
    color: #DCBC82;
    font-size: 21px;
    padding-top: 10px;
    text-align: right;
    width: 90%;
}

.menu-each .menu-each-remark td {
    font-size: 16px;
    padding-top: 60px;
}

.menu-each small {
    font-size: 16px;
    position: relative;
    top: -2px;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .menu {
        padding: 60px 20px 0;
    }

    .menu-title {
        padding-bottom: 20px;
    }

    .menu-each-title-main img {
        height: 30px;
        width: auto;
    }

    .menu-each-title-main span {
        font-size: 14px;
        line-height: 30px;
    }

    .menu-each {
        width: 100%;
    }

    .menu-massage {
        padding-bottom: 60px;
    }

    /* table */
    .menu-each table {
        width: 100%;
    }

    .menu-each th {
        font-size: 16px;
        padding-left: 10px;
        text-align: left;
    }

    .menu-each td {
        font-size: 16px;
        padding-top: 5px;
    }

    .menu-each small {
        font-size: 14px;
    }

    .menu-each .menu-each-remark td {
        font-size: 14px;
    }
}

/*----------------------------------------------------
    set
----------------------------------------------------*/
.set {
    padding: 25px 20px 0;
    margin: 0 auto;
}

.set img {
    max-width: 100%;
}

.set-title {
    padding-bottom: 25px;
    text-align: center;
}

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

@media screen and (max-width: 768px) {
    .set-title img {
        width: 50%;
    }
}

/*----------------------------------------------------
    contact
----------------------------------------------------*/
.contact {
    padding: 85px 20px 0;
    margin: 0 auto;
    max-width: 890px;
}

.contact img {
    max-width: 100%;
}

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

.contact-text {
    padding-top: 60px;
    padding-bottom: 25px;
}

.contact-text p {
    font-size: 24px;
    text-align: center;
}

.contact-remark {
    border: 2px dotted #F0BF55;
    padding: 25px 20px;
}

.contact-remark p {
    font-size: 21px;
}

@media screen and (max-width: 768px) {
    .contact-text p {
        text-align: left;
    }
}
