@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Roboto&display=swap');

@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: 400;
    src: url("./font/NotoSansJP-Regular.woff") format("woff"),
        url("./font/NotoSansJP-Regular.eot") format("eot");
    font-display: swap;
}

@font-face {
    font-family: "NotoSansJP";
    font-style: normal;
    font-weight: 500;
    src: url("./font/NotoSansJP-Medium.woff") format("woff"),
        url("./font/NotoSansJP-Medium.eot") format("eot");
    font-display: swap;
}

/*
Theme Name: Lilio
Description: Lilio official（リリオ） | 名古屋市瑞穂区にある美容室 メイク カット カラー トリートメント
Version: 1.0
License: Lilio
License URI: https: //www.hairmake-lilio.com/
*/
/****************************************

リセットCSSここから

*****************************************/

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

html {
    font-size: 62.5%;
    /*1em=10px */
    overflow-y: scroll;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
picture,
menu,
nav,
section,
main {
    display: block;
}

ul,
ol {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
g_navi blockquote:after {
    content: '';
    content: none;
}

q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    vertical-align: top;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/****************************************

body設定(主に書式)

*****************************************/

body {
    color: #000;
    background: #FCFBFA;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: normal;
    min-width: 1200px;
    font-family: 'Roboto', "NotoSansJP",
        "Meiryo",
        "游ゴシック Medium",
        "Yu Gothic",
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro",
        sans-serif;
}

@media screen and (max-width: 767px) {
    body {
        min-width: initial;
    }
}

/****************************************

ページ共通

*****************************************/
#wrapper {
    width: 100%;
    min-height: 100%;
    float: none;
    margin: 0 auto;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    #wrapper {
        width: 100%;
        min-height: 100%;
        float: none;
        margin: 0 auto;
        overflow: hidden;
    }
}

/****************************************

フォント指定

*****************************************/

li,
tt,
tr,
dt,
dd,
p {
    font-size: 1.4rem;
    color: #000;
    line-height: 1.8;
}

h1 {
    line-height: 1.5;
    font-size: 3.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

h2 {
    line-height: 1.5;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

h3 {
    line-height: 1.5;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {

    li,
    tt,
    tr,
    dt,
    dd,
    p {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.6rem;
    }
}

/****************************************

リンク指定&オンマウス時のアクション

*****************************************/
a:link,
a:visited {
    color: #FF9FAB;
    text-decoration: underline;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

a:hover,
a:active {
    color: #FF5B70;
    text-decoration: underline;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

a:hover img.img_opacity {
    opacity: 0.75;
    filter: alpha(opacity=75);
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

a img.img_opacity {
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

a:hover img.img_up {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

a img.img_up {
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn {
    width: 200px;
    margin: auto;
}

.btn a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 6px;
    color: #000;
    background: #FCFBFA;
    border: 1px solid #000;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-align: center;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    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;
}

.btn a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 1px solid #000;
    border-color: #000 #000 transparent transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.btn a:hover {
    background: #000;
    color: #fff;
}

.btn a:hover:before {
    border-color: #fff #fff transparent transparent;
}

a.deconone:link,
a.deconone:visited,
a.deconone:hover,
a.deconone:active {
    text-decoration: none;
}

@media screen and (max-width: 767px) {
    .btn a {
        font-size: 1.2rem;
    }
}

/****************************************

pcヘッダー

*****************************************/
@media print,
screen and (min-width: 768px) {

    #sp_header,
    #sp_navi,
    #toggle,
    .sp_header_box {
        display: none;
    }

    header {
        width: 100%;
        position: relative;
    }

    #pc_header {
        z-index: 100;
    }

    .pc_header_box {
        width: 100%;
        background: #FFE7EA;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .pc_header_box .h_logo {
        margin-left: 30px;
    }

    .pc_header_box .h_info {
        margin-left: 40px;
    }

    .h_btn a {
        position: relative;
        display: inline-block;
        text-decoration: none;
        width: 160px;
        height: 100%;
        left: 0;
        top: 0;
        padding: 14px;
        color: #fff;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-align: center;
        -webkit-transition: 0.3s linear;
        -o-transition: 0.3s linear;
        transition: 0.3s linear;
        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;
    }

    .h_btn.h_btn_blk a {
        background: #000;
    }

    .h_btn.h_btn_blk a:hover {
        background: #4B4B4B;
    }

    .h_btn.h_btn_pnk a {
        background: #FF9FAB;
    }

    .h_btn.h_btn_pnk a:hover {
        background: #FF8292;
    }

    .h_btn a img {
        margin-right: 10px;
    }
}

/****************************************

spヘッダー

*****************************************/
@media screen and (max-width: 767px) {
    .pc_header_box {
        display: none;
    }

    #sp_header {
        width: 100%;
        z-index: 100;
    }

    img {
        width: 100%;
        height: auto;
    }

    header {
        width: 100%;
        position: relative;
    }

    .sp_header_box {
        width: 100%;
        padding: 20px 10px 15px 10px;
        background: #FFE7EA;
    }

    .sp_header_box .h_logo {
        width: 200px;
        line-height: 1;
    }

    #toggle {
        position: absolute;
        right: 15px;
        top: 15px;
        width: 40px;
        height: 35px;
        cursor: pointer;
        z-index: 9999;
        padding: 6px;
    }

    #toggle div {
        position: relative;
    }

    #toggle span {
        display: block;
        position: absolute;
        /*#navToggledivに対して*/
        width: 100%;
        height: 1px;
        background: #000;
        -webkit-transition: .35s ease-in-out;
        -o-transition: .35s ease-in-out;
        transition: .35s ease-in-out;
    }

    #toggle span:nth-child(1) {
        top: 0;
    }

    #toggle span:nth-child(2) {
        top: 11px;
    }

    #toggle span:nth-child(3) {
        top: 22px;
    }

    .open_navi #toggle span {
        background: #fff;
    }

    /*spanの絶対位置指定の親にします*/
    .open_navi #toggle {
        position: fixed;
    }

    .open_navi #toggle span:nth-of-type(1) {
        -webkit-transform: translateY(11px) rotate(-315deg);
        -ms-transform: translateY(11px) rotate(-315deg);
        transform: translateY(11px) rotate(-315deg);
    }

    .open_navi #toggle span:nth-of-type(2) {
        opacity: 0;
    }

    .open_navi #toggle span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(315deg);
        -ms-transform: translateY(-11px) rotate(315deg);
        transform: translateY(-11px) rotate(315deg);
    }

    #sp_navi {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100vw;
        overflow-y: scroll;
        text-align: left;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: .7s ease-in-out;
        -o-transition: .7s ease-in-out;
        transition: .7s ease-in-out;
    }

    .open_navi #sp_navi {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: .7s ease-in-out;
        -o-transition: .7s ease-in-out;
        transition: .7s ease-in-out;
    }

    .open_navi #wrapper {
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-filter: blur(3px);
        filter: blur(3px);
        -webkit-transition: .7s ease-in-out;
        -o-transition: .7s ease-in-out;
        transition: .7s ease-in-out;
    }

    #sp_navi .menu {
        padding-top: 80px;
        text-align: center;
    }

    #sp_navi .menu .menu-item {
        width: 100%;
        text-align: center;
        border-top: #666 1px solid;
        border-bottom: #666 1px solid;
        cursor: pointer;
        color: #fff;
        margin: 0 auto;
        font-size: 1.5rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #sp_navi .menu .menu-item-home {
        border-top: #666 1px solid;
    }

    #sp_navi .menu-item a,
    #sp_navi .menu-item span {
        display: block;
        padding: 15px 0 14px;
    }

    #sp_navi .menu-item a:link,
    #sp_navi .menu-item a:visited,
    #sp_navi .menu-item a:hover,
    #sp_navi .menu-item a:active {
        color: #fff;
        text-decoration: none;
    }

    #sp_navi .sub-menu {
        width: 100%;
        text-align: center;
        display: none;
    }

    #sp_navi .sub-menu li {
        width: 100%;
        text-align: center;
    }

    #sp_navi .sub-menu li a {
        display: block;
        padding: 11px 0 10px;
        background: rgba(255, 255, 255, 0.2);
        font-size: 1.4rem;
    }

    #sp_navi .sub-menu li a:link,
    #sp_navi .sub-menu li a:visited,
    #sp_navi .sub-menu li a:hover,
    #sp_navi .sub-menu li a:active {
        color: #fff;
        text-decoration: none;
    }

    #sp_navi .sub-menu li a:hover {
        color: #ccc;
        background: none;
    }

    #sp_navi .menu-item-has-children {
        position: relative;
    }

    #sp_navi .menu-item-has-children::before {
        content: '';
        width: 14px;
        height: 14px;
        border: 0px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        position: absolute;
        top: 14px;
        right: 20px;
    }

    #sp_navi .menu-item-has-children.menu_open::before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: .2s ease-in-out;
        -o-transition: .2s ease-in-out;
        transition: .2s ease-in-out;
        top: 22px;
    }
}

/****************************************

pc用 横ナビ

*****************************************/
@media screen and (max-width: 767px) {
    #g_navi {
        display: none;
    }
}

#g_navi {
    width: 100%;
    margin: 0 15px 0 auto;
}

#g_navi .menu {
    width: 100%;
    margin: auto;
    *zoom: 1;
    list-style-type: none;
    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;
    text-align: center;
}

#g_navi .menu:before {
    content: "";
    display: table;
}

#g_navi .menu:after {
    content: "";
    display: table;
    clear: both;
}

#g_navi .menu>li {
    position: relative;
    margin: 0 15px;
}

#g_navi .menu li a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.06em;
    color: #000;
    padding: 10px 0;
}

#g_navi .menu li ul {
    width: calc(100% + 60px);
    list-style: none;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: -30px;
    padding: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#g_navi .menu li ul li {
    width: 100%;
    border-right: none;
    padding: 0;
}

#g_navi .menu li ul li a {
    width: 100%;
    padding: 15px 5px;
    border-top: 1px solid #ccc;
    font-size: 1.4rem;
    font-weight: normal;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    color: #fff;
    line-height: 1.4;
}

#g_navi .menu li ul li a:hover {
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    opacity: 0.6;
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}

#g_navi .menu li:hover ul {
    visibility: visible;
    opacity: 0.9;
}

#g_navi .menu li ul li a {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

#g_navi .menu li:hover ul li a {
    visibility: visible;
    opacity: 1;
}

@media print,
screen and (min-width:768px) {
    .menu>li>a {
        padding: 0;
        position: relative;
        display: inline-block;
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
    }

    .menu>li>a:after {
        position: absolute;
        left: 0;
        bottom: 0;
        content: '';
        width: 100%;
        height: 2px;
        background-color: #FF9FAB;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: center top;
        -ms-transform-origin: center top;
        transform-origin: center top;
        -webkit-transition: .6s;
        -o-transition: .6s;
        transition: .6s;
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .menu>li>a:hover:after {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        opacity: 1;
        filter: alpha(opacity=90);
    }
}

/****************************************

メインビジュアル

*****************************************/
#mv_top {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

#mv_top .mv_img {
    position: relative;
    width: 1920px;
    left: calc(50% - 960px);
}

#mv {
    width: 100%;
    height: 240px;
    background: #EFD9DC;
    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;
}

@media screen and (max-width: 767px) {
    #mv_top .mv_img {
        width: 180%;
        position: relative;
        left: -40%;
    }

    #mv {
        height: 85px;
    }

    #mv .mv_img {
        width: auto;
        height: 8vw;
    }
}

/****************************************

content 共通設定

*****************************************/

.breadcrumb_area {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #EFD9DC;
}

.breadcrumb {
    width: 1100px;
    margin: auto;
    text-align: left;
}

.breadcrumb p {
    font-size: 1.2rem;
    color: #999;
}

.breadcrumb a {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.breadcrumb a::after {
    position: absolute;
    bottom: 0px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #FF5B70;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
}

.breadcrumb a:hover::after {
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
}

.img_object-fit {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
    opacity: 1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.img_object-fit:hover {
    opacity: 0.7;
}

@media print,
screen and (min-width: 768px) {
    main#top_main {
        width: 100%;
        margin: auto;
    }

    main#page_main {
        width: 1100px;
        margin: 70px auto 120px;
    }

    .pc_none {
        display: none !important;
    }

    .flex {
        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;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .flex_r {
        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;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .flex_c {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    a[href^="tel:"] {
        pointer-events: none;
        text-decoration: none;
    }
}

@media screen and (max-width: 767px) {

    .breadcrumb_area {
        padding: 6px 3%;
    }

    .breadcrumb {
        width: 100%;
    }

    .breadcrumb p {
        font-size: 1rem;
    }

    .sp_none {
        display: none !important;
    }

    .sp_mb10 {
        margin-bottom: 10px;
    }

    .sp_mb20 {
        margin-bottom: 20px;
    }

    .sp_img {
        margin: 0 12%;
    }

    main#top_main {
        width: 100%;
        margin: auto;
    }

    main#page_main {
        margin: 40px 5% 60px;
    }

    a[href^="tel:"] {
        text-decoration: none;
    }
}

/****************************************

contentトップ用

*****************************************/
.top_box01 {
    width: 100%;
    background: #FFE7EA;
    padding: 60px 0;
}

.top_box01 h2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/top_tit01.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 30px;
    height: 127px;
}

@media screen and (max-width: 767px) {
    .top_box01 {
        padding: 40px 0;
    }

    .top_box01 h2 {
        margin: 0 auto 30px;
        width: 238px;
        height: 64px;
    }
}

.top_box02 {
    width: 100%;
    padding: 60px calc((100% - 1100px) / 2);
}

.top_box02 h2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/top_tit02.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 30px;
    height: 123px;
}

@media screen and (max-width: 767px) {
    .top_box02 {
        padding: 40px 0;
    }

    .top_box02 h2 {
        margin: 0 auto 30px;
        width: 137px;
        height: 74px;
    }
}

.top_box03 {
    width: 100%;
    padding: 20px calc((100% - 1100px) / 2) 60px;
}

.top_box03 h2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/top_tit03.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 30px;
    height: 133px;
}

.top_box03_cate {
    border: 3px solid #000;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.top_box03_cate a {
    width: 200px;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    background: -o-radial-gradient(#FFE7EA 0, #FCFBFA 60%);
    background: radial-gradient(#FFE7EA 0, #FCFBFA 60%);
    padding: 25px;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.top_box03_cate a:hover {
    background: -o-radial-gradient(#ccc 0, #FCFBFA 60%);
    background: radial-gradient(#ccc 0, #FCFBFA 60%);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.top_box03_cate a figure figcaption {
    margin-top: 10px;
}

@media screen and (max-width: 767px) {
    .top_box03 {
        padding: 20px 0 40px;
    }

    .top_box03 h2 {
        margin: 0 auto 30px;
        width: 223px;
        height: 80px;
    }

    .top_box03_cate {
        margin: 0 10% 30px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 20px;
    }

    .top_box03_cate a {
        width: 40%;
        max-width: 200px;
        padding: 10px;
        margin: 0 10px;
    }

    .top_box03_cate a figure figcaption {
        font-size: 1.2rem;
    }

    .top_box03_cate a figure img {
        width: 80%;
    }
}

.top_box04 {
    width: 100%;
    background: #FFE7EA;
    padding: 60px calc((100% - 1100px) / 2);
}

.top_box04 h2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/top_tit04.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 30px;
    height: 123px;
}

@media screen and (max-width: 767px) {
    .top_box04 {
        padding: 40px 0;
    }

    .top_box04 h2 {
        margin: 0 auto 30px;
        width: 121px;
        height: 74px;
    }
}

.top_box05 {
    width: 100%;
    padding: 60px calc((100% - 1100px) / 2);
}

.top_box05 h2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/top_tit05.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 30px;
    height: 177px;
}

@media screen and (max-width: 767px) {
    .top_box05 {
        padding: 40px 0;
    }

    .top_box05 h2 {
        margin: 0 auto 30px;
        width: 259px;
        height: 124px;
    }
}

.top_box06 {
    width: 100%;
    background: #FFE7EA;
    padding: 60px calc((100% - 1100px) / 2);

}

@media screen and (max-width: 767px) {
    .top_box06 {
        padding: 40px 0;
    }
}

.top_box07 {
    width: 100%;
    padding: 60px calc((100% - 1100px) / 2);
}

@media screen and (max-width: 767px) {
    .top_box07 {
        padding: 40px 0;
    }
}


/****************************************

news トップ用

*****************************************/
.news_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow-x: auto;
}

.news_post .news_list {
    width: 400px;
    margin: 0 8px 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.news_post .news_list .date {
    color: #CCCCCC;
    display: block;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-align: right;
}

.news_post .news_list h3 {
    font-size: 1.4rem;
}

.news_post figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.news_post figure:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.news_post figure .cate {
    position: absolute;
    top: 0;
    left: 0;
}

.news_post figure .cate::before {
    display: block;
    background: #FF9FAB;
    padding: 0 15px;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: #fff;
}

.news_post figure .cate.news_post::before {
    content: "News";
}

.news_post figure .cate.column_post::before {
    content: "Column";
}

.news_post figure .cate.beforeafter_post::before {
    content: "Before After";
}

@media screen and (max-width: 767px) {
    .news_post {
        width: 100%;
        padding: 0 3%;
    }

    .news_post .news_list {
        width: 46.5%;
        max-width: 440px;
        margin: 0 4px 20px;
    }

    .news_post .news_list .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .news_post .news_list h3 {
        font-size: 1.3rem;
    }

    .news_post figure .cate {
        width: auto;
        padding: 0;
    }

    .news_post figure .cate::before {
        padding: 0 8px;
        font-size: 1rem;
    }
}

.scroll_content::-webkit-scrollbar {
    height: 12px;
    /* スクロールバーの高さ */
}

.scroll_content::-webkit-scrollbar-thumb {
    background: #ccc;
    /* ツマミの色 */
    border-radius: 6px;
    /* ツマミ両端の丸み */
}

.scroll_content::-webkit-scrollbar-track {
    background: #ddd;
    /* トラックの色 */
    border-radius: 6px;
    /* トラック両端の丸み */
}

/****************************************

blog トップ用

*****************************************/
.blog_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
}

.blog_post article {
    width: 530px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

.blog_post article .blog_inner {
    width: 310px;
    min-height: 150px;
    margin-left: auto;
    padding-bottom: 40px;
    border-bottom: 1px dotted #999;
    position: relative;
}

.blog_post article .blog_inner .blog_author {
    text-align: right;
    color: #FF9FAB;
    font-size: 1.4rem;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.blog_post article .blog_inner .date {
    text-align: right;
    margin-left: 10px;
}

.blog_post article .blog_inner h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.blog_post article .blog_inner p {
    font-size: 1.2rem;
}

.blog_post figure {
    width: 200px;
    overflow: hidden;
    position: relative;
}

.blog_post figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

@media screen and (max-width: 767px) {
    .blog_post {
        width: 100%;
        padding: 0 5%;
    }

    .blog_post article {
        width: 100%;
        border-bottom: 1px dotted #999;
    }

    .blog_post figure {
        width: 36%;
        margin-right: 15px;
    }

    .blog_post article .blog_inner {
        width: 100%;
        border-bottom: none;
    }

    .blog_post article .blog_inner .blog_author {
        font-size: 1.3rem;
    }

    .blog_post article h3 {
        font-size: 1.3rem;
    }
}

/****************************************

HAIR STYLE トップ用

*****************************************/
.top_post-arr {
    position: relative;
}

.top_post-arr::before,
.top_post-arr::after {
    content: "";
    position: absolute;
    top: 85px;
    background: url(images/arr.svg) no-repeat center;
    width: 15px;
    height: 26px;
}

.top_post-arr::before {
    left: -45px;
}

.top_post-arr::after {
    right: -45px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.hairstyle_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}

.hairstyle_post article {
    width: 260px;
    margin: 0 8px 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.hairstyle_post article p {
    color: #FF9FAB;
    font-size: 1.2rem;
}

.hairstyle_post figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.hairstyle_post figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

@media screen and (max-width: 767px) {
    .hairstyle_post {
        width: 100%;
        padding: 0 3%;
    }

    .hairstyle_post article {
        width: 245px;
    }
}

/****************************************

MAKE トップ用

*****************************************/
.make_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow-x: auto;
    margin-bottom: 40px;
}

.make_post article {
    width: 260px;
    margin: 0 8px 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.make_post article .date {
    display: block;
    color: #FF9FAB;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.make_post article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.make_post article p {
    font-size: 1.2rem;
}

.make_post figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.make_post figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

@media screen and (max-width: 767px) {
    .make_post {
        width: 100%;
        padding: 0 3%;
    }

    .make_post article {
        width: 245px;
    }

    .make_post article .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/****************************************

beforeafter トップ用

*****************************************/
.beforeafter_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.beforeafter_post article {
    width: 530px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #999;
    position: relative;
}

.beforeafter_post article .date {
    display: block;
    color: #FF9FAB;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.beforeafter_post article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.beforeafter_post article p {
    font-size: 1.2rem;
}

.beforeafter_post figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.beforeafter_post figure:after {
    content: "";
    display: block;
    padding-top: 37.73%;
}

.beforeafter_post .beforeafter_staff {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.beforeafter_post .beforeafter_staff .staff_img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-right: 20px;
}

.beforeafter_post .beforeafter_staff .staff_img:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.beforeafter_post .beforeafter_staff .staff_img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.beforeafter_post .beforeafter_staff p {
    font-size: 1.5rem;
}

.beforeafter_post .beforeafter_staff span {
    display: block;
    font-size: 1.1rem;
    color: #999;
}

/* More ボタン */
.more_btn {
    position: absolute;
    right: 0;
    bottom: 20px;
}

.more_btn a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #FF9FAB;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-align: right;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    padding-right: 20px;
}

.more_btn a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 1px solid #FF9FAB;
    border-color: #FF9FAB #FF9FAB transparent transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.more_btn a:hover {
    color: #FF5B70;
}

.more_btn a:hover:before {
    border-color: #FF5B70 #FF5B70 transparent transparent;
}


@media screen and (max-width: 767px) {
    .beforeafter_post {
        width: 100%;
        padding: 0 5%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .beforeafter_post article {
        width: 100%;
        max-width: 530px;
        margin: 0 auto 20px;
    }

    .beforeafter_post article .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .more_btn a {
        font-size: 1.3rem;
    }

    .more_btn a::before {
        width: 4px;
        height: 4px;
    }
}

/****************************************

COLUMN トップ用

*****************************************/
.column_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 40px;
}

.column_post article {
    width: 530px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #999;
    position: relative;
}

.column_post article .date {
    display: block;
    color: #FF9FAB;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.column_post article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.column_post article p {
    font-size: 1.2rem;
}

.column_post figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.column_post figure:after {
    content: "";
    display: block;
    padding-top: 37.73%;
}

.column_post .beforeafter_staff p {
    font-size: 1.5rem;
}

.column_post .beforeafter_staff span {
    display: block;
    font-size: 1.1rem;
    color: #999;
}

@media screen and (max-width: 767px) {
    .column_post {
        width: 100%;
        padding: 0 5%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .column_post article {
        width: 100%;
        max-width: 530px;
        margin: 0 auto 20px;
    }

    .column_post article .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/****************************************

ARCHIVE トップ用

*****************************************/
.archive_post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.archive_post article {
    width: 350px;
    margin-right: 25px;
    position: relative;
}

.archive_post article:last-child {
    margin-right: 0;
}

.archive_post article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.archive_post article p {
    font-size: 1.2rem;
}

.archive_post figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.archive_post figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

@media screen and (max-width: 767px) {
    .archive_post {
        width: 100%;
        padding: 0 16%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .archive_post article {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 40px;
    }

    .archive_post article:last-child {
        margin: auto;
    }

    .archive_post article .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/****************************************

content下層用

*****************************************/
.headline {
    text-align: center;
    margin-bottom: 80px;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
    font-family: 'Cinzel',
        serif;
}

.headline span {
    border-top: 1px solid #DADADA;
    display: block;
    font-size: 1.3rem;
    padding-top: 15px;
    margin-top: 5px;
    font-family: 'Roboto',
        "NotoSansJP",
        "Meiryo",
        "游ゴシック Medium",
        "Yu Gothic",
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro",
        sans-serif;
}

@media screen and (max-width: 767px) {
    .headline {
        margin-bottom: 40px;
    }

    .headline span {
        font-size: 1.1rem;
    }
}

/*----------スタッフ紹介----------*/
.staff_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.staff_wrap article {
    width: 245px;
    margin-right: 40px;
    text-align: center;
    padding-bottom: 35px;
    margin-bottom: 80px;
    position: relative;
}

.staff_wrap article:nth-child(4n) {
    margin-right: 0;
}

.staff_wrap article .staff_inner {
    border-bottom: 1px dotted #999;
    padding-bottom: 25px;
}

.staff_wrap article h3 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.staff_wrap article h3 span {
    font-size: 1.2rem;
    display: block;
    color: #999999;
}

.staff_wrap .sns img {
    width: auto;
}

.staff_wrap figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.staff_wrap figure:after {
    content: "";
    display: block;
    padding-top: 125%;
}

.staff_wrap .more_btn {
    bottom: 0;
}

@media screen and (max-width: 767px) {
    .staff_wrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .staff_wrap article {
        width: 48%;
        margin-right: 0;
        margin-bottom: 40px;
        position: relative;
    }

    .staff_wrap article .staff_inner {
        padding-bottom: 15px;
    }

    .staff_wrap article h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .staff_wrap article h3 span {
        font-size: 1rem;
    }

    .staff_wrap figure {
        margin-bottom: 20px;
    }

}

/*----------メニュー----------*/
.menu_link {
    text-align: center;
    margin-bottom: 30px;
}

.menu_link a {
    display: inline-block;
    border-bottom: 2px solid #FF9FAB;
    text-decoration: none;
    font-size: 1.6rem;
    color: #000;
    letter-spacing: 0.06em;
    margin: 0 30px;
    position: relative;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    padding-right: 20px;
}

.menu_link a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 6px;
    height: 6px;
    border: 1px solid #000;
    border-color: transparent #000 #000 transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
}

.menu_link a:hover {
    border-color: #999;
}

.price_box {
    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-between;
}

.price_box section {
    width: 500px;
}

.price_table {
    width: 100%;
}

.price_table th,
.price_table td {
    font-weight: normal;
    border-bottom: 1px dotted #999;
    padding: 15px 0;
}

.price_table th {
    width: 75%;
    text-align: left;
}

.price_table th span {
    display: block;
    font-size: 1.2rem;
    color: #999;
}

.price_table td {
    width: 25%;
    text-align: right;
}

.price_txt {
    background: #FFE7EA;
    padding: 20px;
    margin-top: 20px;
}

@media screen and (max-width: 767px) {
    .menu_link {
        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-between;
        margin-bottom: 10px;
    }

    .menu_link a {
        width: calc((100% - 20px) / 3);
        display: inline-block;
        font-size: 1.4rem;
        margin: 0 0 10px;
        text-align: left;
    }

    .menu_link a::before {
        width: 4px;
        height: 4px;
    }

    .price_box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .price_box section {
        width: 100%;
    }

    .price_table th,
    .price_table td {
        font-size: 1.4rem;
    }

    .price_table th span {
        font-size: 1rem;
    }
}

/*----------着物----------*/
.kimono_box01,
.kimono_box02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kimono_box02 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: 0 100px;
}

.kimono_box01_txt {
    width: 360px;
}

.kimono_box02_img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.kimono_box02_img figure:first-child {
    margin: 60px 30px 0 0;
}

.kimono_box02_txt {
    width: 260px;
}

.kimono_price_box {
    border: 3px solid #FFE7EA;
    padding: 60px 100px;
}

.kimono_price_box_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.kimono_price_box_inner .price_table {
    width: 420px;
}

@media screen and (max-width: 767px) {

    .kimono_box01,
    .kimono_box02 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .kimono_box01_txt,
    .kimono_box02_txt {
        width: 100%;
        margin-top: 50px;
    }

    .kimono_box02 {
        padding: 0;
    }

    .kimono_box02_img figure:first-child {
        margin: 40px 10px 0 0;
    }

    .kimono_price_box {
        padding: 40px;
    }

    .kimono_price_box_inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .kimono_price_box_inner .price_table {
        width: 100%;
    }
}

/*----------ヘアカタログ----------*/
.haircatalog_link {
    text-align: center;
    margin-bottom: 60px;
}

.haircatalog_link a {
    color: #999;
    text-decoration: none;
    position: relative;
    padding: 0 20px;
}

.haircatalog_link a:not(:last-child):before {
    content: "";
    width: 1px;
    height: 100%;
    background: #999;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.haircatalog_link a:hover {
    text-decoration: underline;
    color: #FF5B70;
}

.haircatalog_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.haircatalog_wrap article {
    width: 245px;
    margin-right: 40px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.haircatalog_wrap article:nth-child(4n) {
    margin-right: 0;
}

.haircatalog_wrap figure {
    overflow: hidden;
    position: relative;
}

.haircatalog_wrap figure:after {
    content: "";
    display: block;
    padding-top: 125%;
}

@media screen and (max-width: 767px) {
    .haircatalog_link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .haircatalog_link a {
        display: inline-block;
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .haircatalog_wrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .haircatalog_wrap article {
        width: 48%;
        margin-right: 0;
        margin-bottom: 15px;
        position: relative;
    }
}


/*----------ビフォーアフター----------*/
.beforeafter_wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
}

.beforeafter_wrap article {
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
    .beforeafter_wrap {
        padding: 0;
    }

    .beforeafter_wrap article {
        margin-bottom: 20px;
    }
}

/*----------メイク----------*/
.make_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.make_wrap article {
    width: 260px;
    margin-right: 20px;
    margin-bottom: 60px;
}

.make_wrap article:nth-child(4) {
    margin-right: 0;
}

.make_wrap article .date {
    display: block;
    color: #FF9FAB;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.make_wrap article h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.make_wrap article p {
    font-size: 1.2rem;
}

.make_wrap figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 10px;
}

.make_wrap figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

@media screen and (max-width: 767px) {
    .make_wrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .make_wrap article {
        width: 48%;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .make_wrap article .date {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
}

/*----------店舗概要----------*/
.headline-salon {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/salon_logo.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 60px;
    height: 51px;
}

.table {
    width: 500px;
    border-collapse: collapse;
}

.table tr th,
.table tr td {
    text-align: left;
    padding: 15px 0;
    font-weight: normal;
    border-bottom: 1px dotted #999;
}

.table th {
    width: 20%;
}

.table td {
    width: 80%;
}

.gmap {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 475px;
    position: relative;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .headline-salon {
        margin-bottom: 10px;
        height: 30px;
    }

	 .headline-salon2 {
        margin-bottom: 10px;
        height: 30px;
    }

    .table {
        width: 100%;
        margin-top: 20px;
    }

    .table tr th,
    .table tr td {
        display: block;
        width: 100%;
    }

    .table tr th {
        border-bottom: none;
        position: relative;
    }

    .table tr th::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 25px;
        height: 2px;
        background: #FF9FAB;
    }

    .gmap {
        width: 100%;
        padding-bottom: 56.25%;
    }
}

/*----------求人情報----------*/
.headline_recruit {
    border-bottom: 1px solid #DADADA;
    margin-bottom: 80px;
    text-align: center;
    font-size: 2.2rem;
    padding-bottom: 15px;
}

.recruit_txt h2 {
    font-size: 1.7rem;
}

.recruit_contents {
    width: 520px;
    border: 3px solid #E9E9E9;
    padding: 30px;
}

.recruit_contents dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.recruit_contents dl dt {
    width: 20%;
    font-weight: 500;
}

.recruit_contents dl dd {
    width: 80%;
}

.recruit_table {
    width: 100%;
}

.recruit_table th,
.recruit_table td {
    border: 1px solid #DADADA;
    padding: 15px 20px;
    font-weight: normal;
    text-align: left;
}

.recruit_table th {
    width: 20%;
    background: #F3F3F3;
    vertical-align: middle;
}

.recruit_table td {
    width: 80%;
}

@media screen and (max-width: 767px) {
    .headline_recruit {
        margin-bottom: 40px;
        font-size: 1.8rem;
    }

    .recruit_contents {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }

    .recruit_contents dl {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 5px;
    }

    .recruit_contents dl dt,
    .recruit_contents dl dd {
        width: 100%;
    }

    .recruit_table th,
    .recruit_table td {
        display: block;
        width: 100%;
        padding: 15px;
        margin-top: -1px;
    }
}

/*----------お知らせ----------*/
.blog_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

.blog_box figure {
    width: 340px;
    overflow: hidden;
    position: relative;
}

.blog_box figure:after {
    content: "";
    display: block;
    padding-top: 75%;
}

.blog_box .blog_inner {
    width: 700px;
    position: relative;
    border-bottom: 1px dotted #999;
}

.blog_box .blog_inner .blog_author {
    text-align: right;
    color: #FF9FAB;
    font-size: 1.4rem;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.blog_box .blog_inner .date {
    text-align: right;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .blog_box {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .blog_box figure {
        width: 100%;
        margin-bottom: 20px;
    }

    .blog_box .blog_inner {
        width: 100%;
    }

    .blog_box .blog_inner h2 {
        font-size: 1.6rem;
    }

    .blog_box .blog_inner .blog_author {
        position: static;
        margin-top: 10px;
        font-size: 1.3rem;
    }
}

/*----------コラム----------*/
.column_box {
    margin: 0 100px 60px;
    padding-bottom: 30px;
    border-bottom: 1px dotted #999;
}

.column_box figure {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.column_box figure:after {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.column_box .date {
    color: #FF9FAB;
    display: block;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.column_box .btn {
    margin: 40px 0 0 auto;
}

@media screen and (max-width: 767px) {
    .column_box {
        margin: 0 0 30px;
        padding-bottom: 20px;
        border-bottom: 1px dotted #999;
    }

    .column_box figure {
        margin-bottom: 20px;
    }

    .column_box h2 {
        font-size: 1.6rem;
    }

    .column_box .date {
        margin: 10px 0;
        font-size: 1.3rem;
    }

    .column_box .btn {
        margin: 20px 0 0 auto;
    }
}

/****************************************

aside

*****************************************/
#bottom_area {
    width: 100%;
    padding: 120px calc((100% - 1020px) / 2) 80px;
    background: url(images/bottom_bg.png) no-repeat top center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


@media screen and (max-width: 767px) {
    #bottom_area {
        padding: 60px 6% 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #bottom_area figure {
        margin-bottom: 10px;
    }
}

/****************************************

single.php

*****************************************/
#single_box {
    width: 100%;
    margin: 40px auto 0;
}

#single_box h1 {
    font-size: 2.4rem;
}

#single_box .single_text {
    width: 100%;
}

#single_box .single_text img {
    margin: 15px auto;
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
}

.pager {
    clear: both;
    text-align: center;
    margin: auto;
}

a.page-numbers {
    background: #fff;
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 8px;
    margin: 0 2px;
    font-size: 1.4rem;
}

.pager .current {
    background: rgba(0, 0, 0, 0.02);
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 8px;
    margin: 0 2px;
    font-size: 1.4rem;
    background: #333;
    border: solid 1px #333;
    color: white;
}

.nav-below {
    margin: 60px 0 0;
    text-align: center;
}

.nav-below a {
    margin: 0 10px;
}

@media screen and (max-width: 767px) {
    #single_box {
        width: 100%;
    }

    #single_box h1 {
        font-size: 1.8rem;
    }

    a.page-numbers,
    .pager .current {
        font-size: 1.3rem;
    }
}

/****************************************

single-staff.php

*****************************************/
.single_text-staff .single_text-staff_img {
    max-width: 540px;
    width: 100%;
    margin: 0 auto 100px;
}

.single_text-staff .single_text-staff_img figure {
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
}

.single_text-staff .single_text-staff_img figure:after {
    content: "";
    display: block;
    padding-top: 125%;
}

.single_text-staff .single_text-staff_img figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.single_text-staff .single_text-acc {
    max-width: 770px;
    width: 100%;
}

.single_text-staff .staff_inner {
    width: 220px;
}

.single_text-staff .staff_inner h2 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.single_text-staff .staff_inner h2.tit_like {
    font-size: 1.2rem;
}

.single_text-staff .staff_inner h2 span {
    font-size: 1.2rem;
    display: block;
    color: #999999;
}

/* likeit_box */
.single_text-staff .likeit_box {
    margin-bottom: 60px;
}

.single_text-staff .likeit_box .likeit_box_inner table {
    width: 100% !important;
}

.single_text-staff .likeit_box .likeit_box_inner tr {
    border-bottom: 1px dotted #999;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: block;
}

.single_text-staff .likeit_box .likeit_box_inner td {
    padding: 0 5px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.single_text-staff .likeit_box .likeit_box_inner figure {
    width: 80px;
    overflow: hidden;
    position: relative;
}

.single_text-staff .likeit_box .likeit_box_inner figure:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.single_text-staff .likeit_box .likeit_box_inner figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.single_text-staff .likeit_box .likeit_box_inner .likeit_box_inner_txt {
    width: calc(100% - 80px);
    padding-left: 20px;
}

.single_text-staff .likeit_box .likeit_box_inner .likeit_box_inner_txt p,
.single_text-staff .detail_box p {
    font-size: 1.2rem;
}

@media screen and (max-width: 767px) {

    .single_text-staff h2 {
        padding-bottom: 10px;
    }

    .single_text-staff .single_text-staff_img {
        margin-bottom: 60px;
    }

    .single_text-staff .single_text-acc {
        display: block;
        margin-bottom: 60px;
    }

    .single_text-staff .staff_inner {
        width: 100%;
    }

    .single_text-staff .likeit_box {
        margin-bottom: 20px;
    }
}

/****************************************

single-haircatalog.php

*****************************************/
.single_box-haircatalog h1 {
    font-size: 2rem;
}

.single_text-haircatalog .haircatalog_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 100px 60px;
    margin-bottom: 60px;
    border-bottom: 1px dotted #999;
}

.single_text-haircatalog .haircatalog_inner figure {
    width: 180px;
    height: 180px;
    margin: auto;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.single_text-haircatalog .haircatalog_inner figure:after {
    content: "";
    display: block;
    padding-top: 100%;
}

.single_text-haircatalog .haircatalog_inner figure img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

.single_text-haircatalog .haircatalog_inner .detail_box {
    width: 740px;
}

.single_text-haircatalog .haircatalog_inner h2 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.single_text-haircatalog .haircatalog_inner h2 span {
    font-size: 1.2rem;
    display: block;
    color: #999999;
}

@media screen and (max-width: 767px) {
    .single_box-haircatalog h1 {
        font-size: 1.6rem;
    }

    .single_text-haircatalog .haircatalog_inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 50px 0;
        margin-bottom: 30px;
    }

    .single_text-haircatalog .haircatalog_inner .detail_box {
        width: 100%;
    }
}

/****************************************

P

*****************************************/
/* 改行 */
.line_break {
    padding-top: 25px;
}

/* 文字 */
.red {
    color: #FF2626;
}

.underline {
    background: -o-linear-gradient(transparent 60%, #FFE7EA 60%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFE7EA));
    background: linear-gradient(transparent 60%, #FFE7EA 60%);
}


.gray {
    color: #999;
}

/* 強調 */
.bold {
    font-weight: 600;
}

.tr {
    text-align: right;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

@media print,
screen and (min-width: 768px) {
    .tc {
        text-align: center;
    }

    .w640 {
        width: 640px;
    }
}

@media screen and (max-width: 767px) {

    .mb50,
    .mb60 {
        margin-bottom: 40px;
    }

    .mb80,
    .mb90,
    .mb100 {
        margin-bottom: 50px;
    }
}

/****************************************

タイトル

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

.top_tit {
    text-align: center;
    font-size: 3.2rem;
    letter-spacing: 0.1em;
    font-family: 'Cinzel',
        serif;
}

.top_tit span {
    display: block;
    color: #FF9FAB;
    font-size: 1.2rem;
    letter-spacing: 0;
    font-family: 'Roboto',
        "NotoSansJP",
        "Meiryo",
        "游ゴシック Medium",
        "Yu Gothic",
        "游ゴシック体",
        "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro",
        sans-serif;
    margin-bottom: 35px;
}

.subhead01 {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #000000;
}

.subhead01 span {
    font-size: 1.2rem;
    color: #999;
    margin-left: 10px;
}

.subhead02 {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
}

.subhead02::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

@media screen and (max-width: 767px) {
    .top_tit {
        font-size: 2.4rem;
    }

    .top_tit span {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .subhead01 {
        padding-bottom: 10px;
    }

    .subhead01 span {
        font-size: 1rem;
        margin-left: 0;
        display: block;
    }
}

/****************************************

pc_footer

*****************************************/
.footer_box .f_btn {
    width: 270px;
    margin-left: auto;
}

.footer_box .f_btn a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 14px;
    color: #fff;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    background: #FF9FAB;
    outline: 1px solid #FFD9DD;
    outline-offset: -4px;
    text-align: center;
    -webkit-transition: 0.3s linear;
    -o-transition: 0.3s linear;
    transition: 0.3s linear;
    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;
    font-family: 'Cinzel',
        serif;
}

.footer_box .f_btn a:hover {
    background: #FF8292;
}

.footer_box .f_btn a img {
    width: auto;
    margin-right: 10px;
}

@media print,
screen and (min-width: 768px) {
    #sp_footer {
        display: none;
    }

    #pc_footer {
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .footer_box {
        background: #F0EFEE;
        padding: 30px calc((100% - 1100px) / 2);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .footer_box .sitemap a {
        color: #000;
        text-decoration: none;
        letter-spacing: 0.06em;
    }

    .footer_box .sitemap a:hover {
        color: #FF5B70;
        text-decoration: underline;
    }

    .footer_inner {
        width: 1100px;
        margin: auto;
        padding: 40px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .footer_inner .footer_logo {
        margin-right: 60px;
    }

    .footer_inner .f_add th,
    .footer_inner .f_add td {
        font-size: 1.3rem;
        color: #666;
        font-weight: normal;
        text-align: left;
    }

    .footer_inner .f_add th {
        width: 60px;
    }

    .footer_inner .footer_sns {
        margin-left: auto;
    }

    .pagetop {
        display: none;
        position: fixed;
        right: 30px;
        bottom: 100px;
        z-index: 999;
    }

    .copyright {
        width: 100%;
        display: block;
        font-size: 1.2rem;
        text-align: center;
        color: #fff;
        padding: 20px 0;
        background: #000;
    }
}

/****************************************

sp_footer

*****************************************/
@media screen and (max-width: 767px) {
    #pc_footer {
        display: none;
    }

    #sp_footer {
        width: 100%;
        margin-bottom: 60px;
    }

    .footer_box {
        background: #F0EFEE;
        padding: 20px 16%;
        margin-bottom: 20px;

    }

    .footer_box .f_btn {
        max-width: 350px;
        width: 100%;
        margin: auto;
    }

    .footer_box .f_btn a {
        padding: 10px;
        font-size: 2rem;
    }

    .footer_sns {
        display: block;
        margin: auto;
        width: 30px;
        height: 30px;
    }

    .copyright {
        width: 100%;
        display: block;
        font-size: 1.2rem;
        text-align: center;
        color: #000;
        padding: 15px 0;
    }

    /* ----追従---- */
    #sp_footer .sp_bana {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        height: 60px;
        bottom: 0;
        left: 0;
        z-index: 999;
    }

    #sp_footer .sp_bana .sp_bana_parts {
        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: relative;
        width: 25%;
        background: #000;
    }

    #sp_footer .sp_bana .sp_bana_parts a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #sp_footer .sp_bana .sp_bana_parts span {
        position: relative;
        display: block;
        height: auto;
        padding-top: 30px;
        line-height: 1.4;
        text-align: center;
        color: #fff;
        font-size: 1.1rem;
        letter-spacing: 0.1em;
    }

    #sp_footer .sp_bana .sp_bana_parts span::after {
        content: "";
        position: absolute;
        display: inline-block;
        left: 0;
        top: 0;
        width: 100%;
        height: 30px;
        vertical-align: middle;
        background-repeat: no-repeat;
        background-position: center;
    }

    .sp-reserve::after {
        background-image: url(images/sp-reserve.svg);
        background-size: 15px;
    }

    .sp-insta::after {
        background-image: url(images/sp-instagram.svg);
        background-size: 16px;
    }

    .sp-calendar::after {
        background-image: url(images/sp-calendar.svg);
        background-size: 16px;
    }

    .sp-pagetop::after {
        background-image: url(images/sp-pagrtop.svg);
        background-size: 15px;
    }
}

/****************************************

Contact Form7

*****************************************/
.wpcf7 {
    width: 100%
}

.wpcf7-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 3px 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.wpcf7-form select {
    width: auto;
    padding: 3px 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.wpcf7-form input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.wpcf7 .tc input[type=submit] {
    cursor: pointer;
    width: 410px;
    max-width: 100%;
    padding: 18px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px #333 solid;
    background-color: #333;
    color: #fff;
    font-size: 18px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: 30px;
}

.wpcf7 .tc input[type=submit]:disabled {
    cursor: not-allowed;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #f8f8f8 !important;
    background-color: #f8f8f8 !important;
    color: #929292 !important;
}

.wpcf7 .tc input[type=submit]:hover {
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    background-color: #fff;
    color: #222;
    -webkit-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}

.wpcf7 .tc input[type=submit]:focus {
    outline: 0;
    border: 1px #222 solid;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
}

.wpcf7-text {
    width: 100%;
}

.form_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 0 20px 30px 20px;
    border-bottom: 1px dotted #ccc;
}

.form_row .form_label {
    width: 300px;
}

.form_row .form_label .required {
    display: inline-block;
    color: #fff;
    font-weight: normal;
    font-size: 1.2rem;
    padding: 0 4px;
    background: #cc0000;
    margin-right: 10px;
    border-radius: 3px;
}

.form_row .form_label .any {
    display: inline-block;
    color: #797979;
    font-weight: normal;
    font-size: 1.2rem;
    padding: 0 4px;
    background: #d7d7d7;
    margin-right: 10px;
    border-radius: 3px;
}

.form_row .form_input {
    width: calc(100% - 300px);
}

.form_row .form_input_post {
    width: 180px;
}

.form_row .form_input_post_txt {
    color: #D60012;
    font-weight: normal;
    font-size: 1.3rem;
}

.form_row.last_row {
    padding-bottom: 0;
    border-bottom: none;
}

.wpcf7 .form_input_post input[type=tel],
.wpcf7 .form_input_post input[type=text],
.wpcf7 .form_input input[type=email],
.wpcf7 .form_input input[type=tel],
.wpcf7 .form_input input[type=text],
.wpcf7 .form_input textarea {
    position: relative;
    border-left: 2px solid #333;
}

.wpcf7 .form_input input[type=checkbox] {
    display: none;
}

.wpcf7 .form_input input[type=checkbox]+span {
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0 1em 0 1.8em;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=checkbox]+span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1.24em;
    height: 1.24em;
    border: 1px solid #D60012;
    border-radius: 4px;
    background-color: #fefefe;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7 .form_input input[type=checkbox]+span:after {
    content: "";
    opacity: 0;
    display: block;
    position: absolute;
    top: 0.15em;
    left: 0.44em;
    width: 0.4em;
    height: 0.8em;
    border-bottom: 3px solid #222;
    border-right: 3px solid #222;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=checkbox]:checked+span {
    color: #D60012;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.wpcf7 .form_input input[type=checkbox]:checked+span:before {
    opacity: 1;
    border: 1px solid #D60012;
    -webkit-box-shadow: 0 0 2px 2px rgba(214, 0, 18, 0.5);
    box-shadow: 0 0 2px 2px rgba(214, 0, 18, 0.5);
    background-color: #D60012;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=checkbox]:checked+span:after {
    opacity: 1;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=radio] {
    display: none;
}

.wpcf7 .form_input input[type=radio]+span {
    cursor: pointer;
    position: relative;
    margin: 0;
    padding: 0 1em 0 1.8em;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=radio]+span:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 1em;
    height: 1em;
    border: 1px solid #F08D3C;
    border-radius: 50%;
    background-color: #fefefe;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=radio]+span:after {
    content: "";
    display: block;
    opacity: 0;
    position: absolute;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input input[type=radio]:checked+span {
    color: #F08D3C;
}


.wpcf7 .form_input input[type=radio]:checked+span:before {
    -webkit-box-shadow: 0 0 2px 2px rgba(214, 0, 18, 0.5);
    box-shadow: 0 0 2px 2px rgba(214, 0, 18, 0.5);
}

.wpcf7 .form_input input[type=radio]:checked+span:after {
    opacity: 1;
    top: 0.1em;
    left: 0;
    width: 1em;
    height: 1em;
    background-color: #F08D3C;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.wpcf7 .form_input span.select-wrap {
    position: relative;
    width: 250px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7 .form_input span.select-wrap:after {
    content: "";
    pointer-events: none;
    position: absolute;
    display: block;
    width: 0.6em;
    height: 0.6em;
    top: 50%;
    right: 0.8em;
    margin-top: -3px;
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7 .form_input span.select-wrap:focus-within:after {
    border-bottom: 1px solid #222;
    border-right: 1px solid #222;
}

.wpcf7 .form_input select {
    cursor: pointer;
    width: 250px;
    max-width: 100%;
    margin: 0;
    padding: 0.5em 3.5em 0.5em 1em;
    border: 1px solid #222;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: #fefefe;
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7)));
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-position: 100% 0;
    background-size: 2em 3.5em;
    background-repeat: no-repeat;
    color: inherit;
    font-size: inherit;
    line-height: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border-color 0.2s ease, outline 0.2s ease;
    -o-transition: border-color 0.2s ease, outline 0.2s ease;
    transition: border-color 0.2s ease, outline 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

.wpcf7 .form_input select:-ms-expand {
    display: none;
}

.wpcf7 .form_input span.wpcf7-form-control-wrap {
    position: relative;
    width: 250px;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7 .form_input span.wpcf7-form-control-wrap:after {
    content: "";
    pointer-events: none;
    position: absolute;
    display: block;
    width: 0.6em;
    height: 0.6em;
    top: 60%;
    right: 0.8em;
    margin-top: -3px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(45deg) translateY(-50%);
    -ms-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.wpcf7 .form_input_post input[type=tel]:focus,
.wpcf7 .form_input_post input[type=text]:focus,
.wpcf7 .form_input input[type=date]:focus,
.wpcf7 .form_input input[type=email]:focus,
.wpcf7 .form_input input[type=number]:focus,
.wpcf7 .form_input input[type=tel]:focus,
.wpcf7 .form_input input[type=text]:focus,
.wpcf7 .form_input input[type=url]:focus,
.wpcf7 .form_input textarea:focus {
    outline: 0;
    border: 1px #ddd solid;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
}

.wpcf7 .form_input select:focus {
    outline: 0;
    border: 1px #ddd solid;
    -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.3);
}

.wpcf7-response-output {
    font-size: 1.6rem;
}

@media screen and (max-width:767px) {
    .wpcf7-form textarea {
        width: 100% !important;
    }

    .wpcf7-form input {
        max-width: 100% !important;
    }

    .wpcf7-submit {
        width: 100%;
    }

    .form_row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 0 30px;
    }

    .form_row .form_label {
        width: 100%;
        margin-bottom: 10px;
    }

    .form_row .form_input {
        width: 100%;
    }

    .ajax-loader {
        width: auto;
    }
}

/****************************************

clearfix

*****************************************/

.clearfix {
    display: inline-block;
}

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

/* Hides from IE Mac */

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

.headline-salon2 {
    text-indent: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: url(images/salon_logo_ni.png) no-repeat center top;
    background-size: contain;
    margin-bottom: 10px;
    height: 51px;
}









/* End Hack */