@charset "utf-8";

/* ===== vars ===== */
:root {
    /* isolation */
    --iso_contside : 50px;

    /* font-size */
    --fs_xsmall : 0.75rem;
    --fs_small : 0.83rem;
    --fs_large : 1.25rem;
    --fs_xlarge : 1.5rem;
    --fs_xxlarge : 1.75rem;
    --fs_xxxlarge : 2rem;
    --fs_xxxxlarge : 2.25rem;

    /* colors */
    --cl_btnbg : #000000;
    --cl_btntxt : #ffffff;
    --cl_btnweakbg : #dddddd;
    --cl_btnweaktxt : #000000;
    --cl_basetxt : #000000;
    --cl_baseline : #000000;
    --cl_lightline : #cccccc;
    --cl_weaktxt : #999999;
    --cl_bgGray : #e4e4e4;
    --cl_tab : #e0e0e0;

    /* size */
}

/* ===== template settings ===== */
.single-stylist { padding: 1.5rem 0; }

body.paged .firstpageonly { display: none; }


/* ===== common switches ===== */
[class*="-cs_center"] { text-align: center; }

/* ===== base ===== */
:root {
    font-size: 16px;
}
body {
	color: var(--cl_basetxt);
	background-color: #FFF;
	overflow-x: hidden;
	letter-spacing: 0.1em;
    line-height: 1.6;
    padding-top: var(--sz_headerH);
}


a,
a:visited {
    color: var(--cl_basetxt);
    transition: opacity 300ms 0s ease;
	text-decoration: underline;
}
a:hover {
    opacity: 0.7;
    /*text-decoration: underline;*/
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin: 0;
    padding: 0;
}

p{
line-height: 2;
}

img { max-width: 100%; height: auto; }

main.submain{position: relative;}


/** nav-links **/
.pagination {
    width: 100%;
    padding: 1rem;
}
.pagination .nav-links {
    text-align: center;
}

/**section**/
section[id*="sect_"] {
    padding: 70px 0px;
}

section[id*="sect_"]:last-child {
    padding-bottom: 100px;
}

.contents { overflow: hidden; }


/**box**/
[class*="wth_"]{ margin-left: auto; margin-right: auto; padding-top:0; padding-bottom: var(--iso_contside); padding-left: var(--iso_contside); padding-right: var(--iso_contside); width: 100%; position: relative;}
[class*="wth_Full"]{ max-width: 100%; margin-left: auto; margin-right: auto;}
[class*="wth_600"]{ max-width: 600px;}
[class*="wth_700"]{ max-width: 700px;}
[class*="wth_800"]{ max-width: 800px;}
[class*="wth_900"]{ max-width: 900px;}
[class*="wth_1000"]{ max-width: 1000px;}
[class*="wth_1100"]{ max-width: 1100px;}
[class*="wth_1200"]{ max-width: 1200px;}
[class*="wth_1300"]{ max-width: 1300px;}
[class*="wth_1400"]{ max-width: 1400px;}
[class*="wth_1500"]{ max-width: 1500px;}
[class*="wth_1600"]{ max-width: 1600px;}
[class*="wth_1700"]{ max-width: 1700px;}
[class*="wth_1800"]{ max-width: 1800px;}
[class*="wth_1900"]{ max-width: 1900px;}
[class*="wth_2000"]{ max-width: 2000px;}
[class*="wth_"][class*="_Nopad"]{ padding-left: 0px!important; padding-right: 0px!important;}
[class*="wth_"][class*="_Nomarg"]{ margin-left: 0; margin-right: 0;}
[class*="wth_"][class*="fcont"]{width:fit-content!important; padding: 0 1em!important; }


/** div section **/
[class^="contbox"] { padding: 3rem 0; }
[class^="contbox"]:first-child { padding: 0; }
[class^="contbox"] + [class^="contbox"]{}

[class^="textbox"] { padding: 1rem 0; }
[class^="textbox"] + [class^="textbox"] { padding-top: 0; }

/** ttls **/
[class^="ttl_sub"] {
    font-size: var(--fs_xlarge);
    font-weight: bold;
    border-bottom: 1px solid #000000;
    padding-bottom: 0.5em;
    letter-spacing: 0.1em;
}

h1[class^="sub_ttl"] {
    font-size: var(--fs_xlarge);
    padding-top: 1em;
    letter-spacing: 0;
    border-bottom: 2px solid #000000;
}
h2[class^="sub_ttl"] { text-align: center; }

/** btns **/
[class^="wrapbtn"] { }
[class^="btn"],
[class^="btn"]:visited {
    display: inline-block;
    background: var(--cl_btnbg);
    color: var(--cl_btntxt);
    text-align: center;
    padding: 0.5rem 1rem;
    text-decoration: none;
}

.single-stylist [class^="btn"] { font-size: var(--fs_xsmall); }

/** modal **/
[class^="modalbox"] {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 20;
    background: rgba(0,0,0,0.7);
    top: 0;
    left: 100vw;
    opacity: 0;
    transition: opacity 200ms ease;
}
[class^="modalbox"].js_active {
    left: 0;
    opacity: 1;
}
.modalbox_headermenu {
    background: #ffffff;
    z-index: 95;
}
.modalbox_stylist { z-index: 200; }
.modalbox_footer { z-index: 210; }

[class^="modallink_m"] {
    display: block;
    line-height: 1.25em;
    padding: 0.5em 0 0.5em 1.25em;
    text-decoration: none;
    position: relative;
}
[class^="modallink_m"]::before {
    content: "";
    display: block;
    width: 0.7em;
    height: 0.1em;
    background: #999999;
    position: absolute;
    left: 0;
    top: 1.2em;
}
.modallink_min {
    margin-left: 1em;
}
[class^="modallink_txt"] {
    line-height: 1.5;
    text-decoration: none;
    padding: 0.5em;
    display: block;
}
[class^="modallink_m"] + [class^="modallink_txt"] {
    padding-top: 0;
}

/* modalinner_mainmenu */
.modalinner_mainmenu {
    max-width: 540px;
    width: 86vw;
    height: 90%;
    padding-top: var(--sz_headerH);
    margin: 1rem auto;
    overflow-y: auto;
}

/* modalinner_stylist */
.modalinner_stylist {
    max-width: 400px;
    max-height: 600px;
    width: 70vw;
    height: 80vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modalinner_stylist iframe {
    width: 100%;
    height: 100%;
}
.modalinner_stylist .modalinnner_closer {
    display: block;
    position: absolute;
    width: var(--sz_headerW);
    height: var(--sz_headerH);
    top: var(--sz_headerH_n);
    right: 0;
}
.modalinner_stylist .modalinnner_closer > span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0%;
    margin: auto;
}
.modalinner_stylist .modalinnner_closer > span:nth-child(1) { top: var(--sz_headerBarCenter); transform: rotate(315deg); }
.modalinner_stylist .modalinnner_closer > span:nth-child(2) { bottom: var(--sz_headerBarCenter); transform: rotate(-315deg); }

/* modalbox_footer */
.modalinner_footer {
    max-width: 540px;
    width: 86vw;
    height: 90%;
    padding-top: var(--sz_headerH);
    margin: 1rem auto;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modalinner_footer .modalinnner_closer {
    display: block;
    position: absolute;
    width: var(--sz_headerW);
    height: var(--sz_headerH);
    top: 0;
    right: 0;
}
.modalinner_footer .modalinnner_closer > span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0%;
    margin: auto;
}
.modalinner_footer .modalinnner_closer > span:nth-child(1) { top: var(--sz_headerBarCenter); transform: rotate(315deg); }
.modalinner_footer .modalinnner_closer > span:nth-child(2) { bottom: var(--sz_headerBarCenter); transform: rotate(-315deg); }

.wrap_footerarticletabs {
    display: flex;
}
.footerarticletab {
    flex: 1;
    background: #ffffff;
    text-align: center;
    line-height: 1.2;
    font-size: var(--fs_small);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0.75em 0.5em 0.6em 0.5em;
    border: 1px solid var(--cl_tab);
    border-radius: 0.5em 0.5em 0 0;
    opacity: 1!important;
}
.footerarticletab.js_active { background-color: var(--cl_tab); pointer-events: none; }
.wrap_footerarticlelist {
    background: var(--cl_tab);
    flex: 1;
}
.footerarticlelist {
    display: none;
    margin: 1.5em;
}
.footerarticlelist.js_active { display: block; }

/** tags **/
[class^="post-tags"] { font-size: 0; }
[class^="post-tags"] a {
    display: inline-block;
    font-size: var(--fs_small);
    padding: 0.25em 0.5em;
    background: var(--cl_btnweakbg);
    color: var(--cl_btnweaktxt);
    margin: 0.25em 0.5em 0.25em 0;
    border-radius: 0.3em;
}
[class^="post-tags"] a::before {
    content: "#";
}


@media screen and (max-width: 767px){

    /* ===== vars ===== */
    :root {
        /* isolation */
        --iso_contside: 4%;
    }

    /* ===== base ===== */
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }


    /**box**/
    [class*="wth_"] {width:initial;}

}

/** div section **/
[class^="contbox"] { padding: 0; }
[class^="contbox"]:first-child { }
[class^="contbox"] + [class^="contbox"]{ padding-top: 6em;}
[class^="contbox"]:first-child + [class^="contbox"]{ padding-top: 3em;}

/** ttls **/
[class^="ttl_sub"] {
    font-size: 1.2rem;

}


/* ====================
   postlist
==================== */
[class^="wrap_postlist"] {
    padding: 1.5rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
[class^="wrap_postlist"] li {
    width: 50%;
}
[class^="wrap_postlist"] li:nth-child(odd) {
    padding: 0 0.75rem 1.5rem 0;
}
[class^="wrap_postlist"] li:nth-child(even) {
    padding: 0 0.0 1.5rem 0.75rem;
}
[class^="wrap_postlist"] a {
    text-decoration: none;
}
[class^="post-date"] {
    color: var(--cl_weaktxt);
    font-size: var(--fs_small);
}
[class^="post-tags"] { }


@media screen and (max-width: 767px) {
    body.home [class^="wrap_postlist"] li:nth-child(even) {
        padding: 0 0.75rem 1.5rem 0;
    }
    body.home [class^="wrap_postlist"] li:nth-child(odd) {
        padding: 0 0.0 1.5rem 0.75rem;
    }
    body.home [class^="wrap_postlist"] li:first-child {
        width: 100%;
        padding: 0 0 1.5rem 0;
    }
    body.home [class^="wrap_postlist"] li:last-child {
        display: none;
    }
    body.home [class^="wrap_postlist"] li:first-child:last-child{display: block;}
}


/* ====================
   stylist
==================== */
.wrapstylist {
    display: flex;
    flex-wrap: wrap;
}
.stylist-post {
    width: 50%;
}
.stylist-post .post-excerpt p {
    text-align: center;
    line-height: 1.3;
    padding-top: 0.5em;
}
.stylist-post a {
    text-decoration: none;
    display: block;
}
.stylist-post:nth-child(even) {
    padding: 0 0.0 1.5rem 0.75rem;
}
.stylist-post:nth-child(odd) {
    padding: 0 0.75rem 1.5rem 0;
}
.stylist-post .post-thumbnail {
    max-width: 100%;
}

/* for slick */
[class^="slidelist"] .stylist-post a .post-thumbnail {
    display: block;
    width: 100%;
    height: 0;
    padding-top: 80%;
    overflow: hidden;
    background: center center no-repeat;
    background-size: contain;
}

/* PC only */
@media screen and (min-width: 768px) {
    .stylist-post .post-thumbnail {
        max-height: 400px;
        height: 400px;
        position: relative;
    }
    .stylist-post .post-thumbnail img {
        display: block;
        width: 100%;
            height: 100%;
            object-fit: contain;
    }
}


/** stylistsearch **/
.stylist_wrapserch {
    width: 100%;
    max-width: 540px;
    margin: auto;
}
.stylist_searchtags {
    display: flex;
    width: 100%;
    padding-bottom: 0.5rem;
}
.stylist_searchtag {
    flex: 1;
    padding: 0 0.25rem;
}
.stylist_searchtag a {
    width: 100%;
}
.stylist_searchtags + .stylist_searchwords {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--cl_lightline);
}
.stylist_searchwords {
    text-align: center;
}
.stylist_searchwords input[type="submit"] {
    border: none;
    outline: none;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}
.stylist_searchwords input[type="search"] {
    outline: none;
    box-shadow: none;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    border: 1px solid var(--cl_lightline);
    padding: 0.5rem 0.5rem;
    border-radius: 0.25rem;
    width: 16em;
}

body.term-mens .term-mens { display: none; }
body.term-ladies .term-ladies { display: none; }


/** slidelist **/
[class^="slidelist"] {
    overflow: hidden;
    padding: 1.5rem 0;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}
[class^="slidelist"] .stylist-post {
    padding: 0 0.75rem;
}



/* ====================
   series list
==================== */
.wrapseries {
    padding: 1rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
}
.wrapseries .latest-post {
    width: 50%;
}
.wrapseries .latest-post a {
    text-decoration: none;
}
.wrapseries .latest-post:nth-child(even) {
    padding: 0 0.0 1.5rem 0.75rem;
}
.wrapseries .latest-post:nth-child(odd) {
    padding: 0 0.75rem 1.5rem 0;
}
.wrapseries .latest-post .post-thumbnail {
    max-width: 100%;
}


@media screen and (max-width: 767px) {
    .contbox-stlist { flex-direction: column; }
    [class^="slidelist"] {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }
    .stylist-post:nth-child(n) { width: 100%; padding:0 0 1.5rem 0; }
    [class^="slidelist"] .stylist-post {
        padding: 0 0.5rem;
    }
}


/* ====================
   index
==================== */

/* == index_wrapslide == */

.index_slide img {
    max-width: 100%;
}

@media screen and (max-width: 767px){
    /* == index_wrapslide == */
    .index_wrapslide {
        width:100vw;
        margin-left: -4%;
        margin-right: -4%;
    }
}

/* ====================
   contact7用
==================== */
/* div.wpcf7内のinput[type="text"]とtextareaのスタイル設定 */
div.wpcf7 { max-width: 600px; margin: auto; }
div.wpcf7 input[type="text"],
div.wpcf7 input[type="email"],
div.wpcf7 textarea {
  width: 100%; /* 横幅を100%に設定 */
  border: 1px solid var(--cl_lightline); /* ボーダー色を変数で指定 */
  border-radius: 0.25em; /* ボーダーの角丸を設定 */
  padding: 0.5em; /* パディングを適度に設定 */
  box-sizing: border-box; /* ボックスサイズをborder-boxに設定 */
}
div.wpcf7 p + p { padding-top: 1em; }
/* submitボタンのスタイル設定 */
div.wpcf7 input[type="submit"] {
  display: block; /* ブロック要素として表示 */
  margin: 1em auto; /* 上下のマージンと自動で中央寄せ */
  border: 1px solid var(--cl_lightline); /* ボーダー色を変数で指定 */
  border-radius: 0.25em; /* ボーダーの角丸を設定 */
  padding: 0.5em 1em; /* パディングを設定 */
  cursor: pointer; /* カーソルをポインタに設定 */
}


/* プレースホルダーのスタイルも設定可能 */
div.wpcf7 input::placeholder,
div.wpcf7 textarea::placeholder {
  color: #aaa; /* プレースホルダーの色 */
  opacity: 1; /* IEでの透明度の問題を修正 */
}