/*
theme Name: box-kyoto
Author: box kyoto
Description: original theme
version： 1.0.0
*/


html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 767px) {
    html {
        scroll-padding-top: 8vh;
    }

    [id] {
        scroll-margin-top: 8vh;
    }
}

@media (max-width: 767px) {
    [id] {
        scroll-margin-top: 4vh;
    }
}

body {
    font-family: "Noto Sans JP", sans-serif;
    line-height: 2;
    font-weight: 500;
    color: #111;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.pc_block {
    display: block;
}

.sp_block {
    display: none !important;
}

br.sp_block,
.sp_inlineblock {
    display: none !important;
}

.pc_inlineblock {
    display: inline-block;
}

p.center {
    text-align: center;
}

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

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/*---------------------------------------------------------
ローディング
---------------------------------------------------------*/
.start {
    position: fixed;
    background: #111;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
}

.start p {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    width: 27vw;
}

html.loading,
body.loading {
    overflow: hidden;
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/

header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
}

#site-header {
    position: relative;
    z-index: 1002;
}

/* =========================
   Hamburger button
========================= */

.g-nav-openbtn {
    position: fixed;
    z-index: 1001;
    top: 1.5vw;
    right: 2vw;
    width: 4vw;
    height: 4vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    appearance: none;
    background: #fff;
    border-radius: 50vw;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.g-nav-openbtn .openbtn-area.hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5vw;
    height: 1.2vw;
}

.g-nav-openbtn .openbtn-area.hamburger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 0.1vw;
    background: #111;
    transform-origin: center;
    transition: transform .35s ease, opacity .25s ease, top .35s ease;
}

.g-nav-openbtn .openbtn-area.hamburger span:nth-child(1) {
    top: 0;
}

.g-nav-openbtn .openbtn-area.hamburger span:nth-child(2) {
    top: 0.5vw;
}

.g-nav-openbtn .openbtn-area.hamburger span:nth-child(3) {
    top: 1vw;
}


html.nav-open .g-nav-openbtn {
    background: unset;
    box-shadow: unset;
}

html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(1) {
    top: 0.6vw;
    transform: rotate(45deg);
    background: #111;
}

html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(2) {
    opacity: 0;
}

html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(3) {
    top: 0.6vw;
    transform: rotate(-45deg);
    background: #111;
}




#g-nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    height: 100dvh;
  min-height: 100svh;
    visibility: hidden;
    pointer-events: none;
    background: transparent !important;
    opacity: 1 !important;
    transition: visibility 0s linear .45s;
}

#g-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .32);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

#g-nav .g-nav_inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100dvh;
  min-height: 100svh
    width: 25vw;
    min-width: 17.7vw;
    padding: 1.95vw 2.2vw;

    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(6px) saturate(1.05);
    -webkit-backdrop-filter: blur(6px) saturate(1.05);

    box-shadow: -1.2vw 0 2.4vw rgba(0, 0, 0, .18);

    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22, .61, .36, 1);

    display: flex;
    flex-direction: column;
}

#g-nav .g-nav_box {
    flex: 1 1 auto;
    overflow: auto;
    margin: 0;
    padding: 0;
}

#g-nav-list {
    position: relative;
    height: 100%;
}

#g-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

#g-nav.is-open::before {
    opacity: 1;
    pointer-events: auto;
}

#g-nav.is-open .g-nav_inner {
    transform: translateX(0);
}

#g-nav.is-closing {
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

#g-nav.is-closing::before {
    opacity: 0;
}


#g-navi {
    list-style: none;
    margin: 0;
    padding: 0;
}

#g-navi>li>a {
    display: block;
    text-decoration: none;
    color: #111;
    letter-spacing: .02em;
    line-height: 1.25;
    font-size: 1.4vw;
    padding: 1vw 0;
    transition: transform .18s ease, opacity .18s ease;
    font-family: "Momo Trust Display", sans-serif;
}


.menu.lang {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    margin-top: 1vw;
    position: absolute;
    top: 1vw;
    left: 2vw;
    z-index: 100;
    background: rgb(106 106 106 / 30%);
    padding: 0 2vw;
    border-radius: 50px;
}

.menu.lang li {
    list-style: none;
    color: #fff;
    font-size: 1.2vw;
}

.menu.lang a {
    letter-spacing: .1vw;
    text-transform: lowercase;
    transition: opacity .3s ease;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

#g-nav .menu.lang a:hover {
    opacity: 0.5;
}

ul.nav-lang {
    display: flex;
    align-items: center;
    gap: .5vw;
    margin-top: 1vw;
    padding: 0.5vw 1.5vw .75vw;
    list-style: none;
    background: #9E9E9E;
    width: fit-content;
    color: #fff;
    border-radius: 50px;
    line-height: 1;
}

ul.nav-lang li {
    font-size: 1.1vw;
}


@media (prefers-reduced-motion: reduce) {

    #g-nav,
    #g-nav::before,
    #g-nav .g-nav_inner {
        transition: none;
    }
}


html.is-locked,
body.is-locked {
    overflow: hidden;
}

/*---------------------------------------------------------
メインビジュアル
---------------------------------------------------------*/

.mv-bg {
    display: none !important;
}

section.mv {
    position: relative;
    width: 100%;
    height: 115svh;
    overflow: hidden;
    isolation: isolate;

    background-image: url("https://boxkyoto.com/wp-content/uploads/2025/12/mv-img-pc.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100svh, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100svh, 0 100%);
}

@media (max-width: 1024px) {
    section.mv {
        background-image: url("https://boxkyoto.com/wp-content/uploads/2025/12/mv-img-sp.webp");
        background-attachment: scroll;
    }
}

@media (min-width: 1025px) {
    section.mv {
        background-attachment: fixed;
    }
}

@media screen and (max-width:743px) {
    section.mv {
        background-position: 43% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    section.mv {
        background-attachment: scroll;
        clip-path: none;
        -webkit-clip-path: none;
    }
}

.mv-logo {
    position: absolute;
    z-index: 2;
    top: 71%;
    left: 26%;
    transform: translate(-50%, -50%);
}

.mv-logo img {
    width: 100%;
    height: 7.5vw;
    display: block;
}

p.mb {
    margin-bottom: .7em;
}


section.catch {
    position: relative;
}

section.catch h2 {
    font-size: 2.8vw;
    letter-spacing: .15vw;
    position: absolute;
    z-index: 1;
    background: #111;
    color: #fff;
    top: 4vw;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1.7;
    padding: 1.5vw 3vw;
    width: 60%;
    text-align: center;
}

.is-en.home section.catch h2 {
    padding: 1.5vw 4vw;
    font-size: 3.5vw;
    letter-spacing: .15vw;
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    width: unset;
}


section.catch h2 span {
    font-size: 1.8vw;
    display: block;
    text-align: center;
}

.c-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #111;
    border: .15vw solid #111;
    padding: 0 2vw;
    font-size: 1.5vw;
    letter-spacing: .1vw;
    font-family: "Momo Trust Display", sans-serif;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.home a.c-btn.res,
.page-id-44 a.c-btn.res,
.page-id-61 a.c-btn.res {
    background: #111;
    color: #fff;
}

.c-btn:hover,
.access-link a:hover {
    background: #111;
    color: #fff;
    opacity: 1;
}

.home a.c-btn.res:hover,
.page-id-44 a.c-btn.res:hover,
.page-id-61 a.c-btn.res:hover {
    background: #fff;
    color: #111;
}

/*---------------------------------------------------------
 concept
  ---------------------------------------------------------*/

section.concept {
    position: relative;
    height: 58vw;
}

section.concept .inner.flex-wrap {
    width: 85%;
    margin: 7vh auto;
}

section.concept .flex-box {
    width: 50%;
}

section.concept .flex-box.left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 17vw;
}

section.concept h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: .1vw;
}


section.concept .text-wrap {
    margin-bottom: 2vw;
}

section.concept .text-wrap p {
    font-size: 1.1vw;
    color: #111;
    letter-spacing: .05vw;
}

section.concept .flex-box.right img {
    position: absolute;
    right: 0;
    top: 0;
    width: 43%;
}


.concept__link a.c-btn {
    width: 35%;
}


/*---------------------------------------------------------
  haircatalog
  ---------------------------------------------------------*/

.movie__inner.inner {
    margin: 8vw auto 3vw;
    background: #111;
}

section#movie .movie__player {
    width: 75%;
}

section#movie .movie__player video {
    width: 100%;
    height: auto;
}

section#movie .logo-wrap {
    width: 25%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

section#movie .logo-wrap img {
    width: 20%;
}

/*---------------------------------------------------------
  haircatalog
  ---------------------------------------------------------*/

.haircatalog {
    padding: 10vw 0 5vw;
    position: relative;
}

.haircatalog .background {
    position: absolute;
    left: 0;
    top: 9vw;
    width: 40vw;
    height: 49vw;
    background: #9e9e9e;
    z-index: 0;
    background-image: URL(https://boxkyoto.com/wp-content/uploads/2026/01/salon-bg.jpeg);
    opacity: .3;
    background-size: cover;
}

.haircatalog .inner {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section#hair-catalog h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: right;
    position: relative;
    z-index: 1;
    margin: 0 0 2vw;
}

.haircatalog__swiper.swiper {
    width: 90%;
    margin: 0 0 0 auto !important;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.haircatalog__swiper .swiper-wrapper {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.haircatalog__swiper .swiper-slide {
    height: auto;
    aspect-ratio: auto;
    position: relative;
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
}

.haircatalog__swiper .swiper-slide::before {
    content: "";
    display: block;
    padding-top: 150%;
}

.haircatalog__swiper .swiper-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.haircatalog__swiper p.stylist {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
    background: rgb(158 158 158 / 74%);
    width: 100%;
    color: #fff;
    text-align: right;
    font-size: 1.1vw;
    letter-spacing: .1vw;
    padding-right: 1vw;
}

.haircatalog__controls {
    margin-top: 1vw;
    margin-right: 2vw;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.hc-nav {
    width: 3vw;
    height: 3vw;
    border-radius: 50%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
}

.hc-nav::before {
    content: "";
    display: block;
    width: .7vw;
    height: .7vw;
    border-right: .15vw solid #111;
    border-bottom: .15vw solid #111;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-45deg) translate(1px, 1px);
    -ms-transform: rotate(-45deg) translate(1px, 1px);
    transform: rotate(-45deg) translate(1px, 1px);
}

.hc-prev::before {
    -webkit-transform: rotate(135deg) translate(1px, -1px);
    -ms-transform: rotate(135deg) translate(1px, -1px);
    transform: rotate(135deg) translate(1px, -1px);
}

button.haircatalog__nav.hc-nav.hc-prev::before {
    position: relative;
    left: .15vw;
}

button.haircatalog__nav.hc-nav.hc-next::before {
    position: relative;
    right: .15vw;
}


/*---------------------------------------------------------
  staff
  ---------------------------------------------------------*/
section.staff {
    padding: 10vw 0 6vw;
    position: relative;
}

.staff .inner {
    width: 80%;
    margin: 0 auto;
}

section#staff h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: .1vw;
}

.staff-card {
    overflow: hidden;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.staff-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transform: scale(1.001);
    -ms-transform: scale(1.001);
    transform: scale(1.001);
}

.staff-card p.name {
    text-align: right;
    font-size: 1.4vw;
    letter-spacing: .1vw;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

figure.staff-card__img {
    margin: 0;
}

@media (min-width: 767px) {
    #staff .staff__list .swiper-wrapper {
        display: -ms-grid !important;
        display: grid !important;
        -ms-grid-columns: 1fr 3vw 1fr 3vw 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 3vw;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
        width: 100% !important;
    }

    #staff .staff__list .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    .staff__pagination {
        display: none !important;
    }
}

@media (max-width: 767px) {
    #staff {
        position: relative;
        z-index: 3;
    }

    #staff .staff__list {
        display: block !important;
        overflow: visible;
    }

    #staff .staff__list .swiper {
        overflow: visible;
        -ms-touch-action: pan-y;
        touch-action: pan-y;
    }
}

.staff__more {
    width: 80%;
    margin: 2vw auto 0;
    position: relative;
    z-index: 1;
}

.staff__more a {
    margin: 0 0 0 auto;
    display: block;
    width: 25%;
    text-align: center;
    text-decoration: none;
    color: #111;
    border: .15vw solid #111;
    padding: 0 2vw;
    font-size: 1.5vw;
    letter-spacing: .1vw;
    font-family: "Momo Trust Display", sans-serif;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}


section.staff .background {
    position: absolute;
    width: 100%;
    height: 26vw;
    bottom: 0;
    background-image: URL(https://boxkyoto.com/wp-content/uploads/2026/01/entrance-bg.jpeg);
    opacity: .2;
    background-size: cover;
    background-position: 0 100%;
}

/*---------------------------------------------------------
 news
  ---------------------------------------------------------*/
section.news .inner {
    padding: 4vw 0;
    width: 80%;
    margin: 0 auto;
}

section#news h2 {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: .1vw;
}

.news__list {
    border-top: .1vw solid #111;
    margin-top: 1vw;
}

.news__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 1vw 1vw;
    border-bottom: .1vw solid #111;
}

.news__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 1vw;
    text-decoration: none;
    color: inherit;
}

.news__date {
    font-size: 1.15vw;
    font-weight: 500;
    font-family: "Roboto", sans-serif;
}

.news__title-text {
    font-size: 1.1vw;
    letter-spacing: 0.05vw;
    line-height: 1.6;
}

.news__more {
    margin-top: 2.5vw;
    text-align: right;
}

.news__more a.c-btn {
    width: 25%;
}

.news__more .btn:hover {
    background: #111;
    color: #fff;
}

/*---------------------------------------------------------
 access
  ---------------------------------------------------------*/

.access__title {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    letter-spacing: .08vw;
    text-align: left;
}

.access__inner.inner {
    width: 80%;
    margin: 0 auto;
}

.access__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.3fr 3.5vw 1fr;
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5vw;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin-top: 1vw;
}

.access__media {
    position: relative;
}

.access__photo,
.access__map {
    width: 100%;
    overflow: hidden;
}

.access__photo img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.access__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.access__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.access__shop {
    margin: 0 0 2vw;
}

.access__shop img {
    width: 13vw;
}

.access__addr {
    font-size: 1.1vw;
    letter-spacing: .05vw;
    margin: 0 0 1vw;
    color: #111;
}

.access__near,
.access__hourline,
.access__tel,
p.access__lang {
    font-size: 1vw;
    letter-spacing: .05vw;
    margin: 0 0 1vw;
    color: #111;
}

.access__box {
    border-left: .15vw solid transparent;
}

.salon__more,
.access-link {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1.5vw 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1.5vw;
}

.salon__more {
    width: 55%;
    margin: 4vw auto 2vw;
}

.access-link {
    width: 70%;
    margin: 2vw auto 2vw;
}

.salon__more a,
.access-link a {
    width: 100%;
}

/*---------------------------------------------------------
  footer
  ---------------------------------------------------------*/

footer#footer {
    position: relative;
}

.footer-inner {
    padding: 4vw 0 3vw;
}

footer#footer ul.menu.top {
    width: 50%;
    margin: 0 auto 1vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

footer#footer ul.menu.bottom {
    width: 30%;
    margin: 0 auto 5vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

footer#footer ul.menu li {
    list-style: none;
    font-family: "Roboto", sans-serif;
    text-align: center;
    font-size: 1.1vw;
    letter-spacing: .05vw;
}


.not-home .footer-inner {
    padding: 3vw 0 3vw;
}

.not-home nav.footer-nav,
.single nav.footer-nav,
.archive nav.footer-nav,
.error404.is-en nav.footer-nav {
    background: #111;
}

.not-home footer#footer ul.menu.top,
.single footer#footer ul.menu.top,
.archive footer#footer ul.menu.top,
.error404.is-en footer#footer ul.menu.top {
    padding-top: 3vw;
}

.not-home footer#footer ul.menu.bottom,
.single footer#footer ul.menu.bottom,
.archive footer#footer ul.menu.bottom {
    padding-bottom: 3vw;
}

.is-en footer#footer ul.menu.top {
    padding-bottom: 3vw;
}

.not-home footer#footer ul.menu li a,
.single footer#footer ul.menu li a,
.archive footer#footer ul.menu li a,
.error404.is-en footer#footer ul.menu li a {
    color: #fff;
}

.copyright p {
    text-align: center;
    font-size: .9vw;
    font-weight: 500;
    letter-spacing: .05vw;
    padding-left: 1vw;
    font-family: "Roboto", sans-serif;
}

button#topBtn {
    display: -ms-grid;
    display: grid;
    place-content: center;
    width: 4vw;
    height: 4vw;
    border-radius: 99vw;
    cursor: pointer;
    position: fixed;
    background: rgb(255 255 255 / 90%);
    color: #111;
    font-size: 1.1vw;
    letter-spacing: .05vw;
    line-height: 1.2;
    font-family: "Momo Trust Display", sans-serif;
    bottom: 2vw;
    right: 2vw;
    z-index: 999;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s ease-out, visibility .5s ease-out;
    -o-transition: opacity .5s ease-out, visibility .5s ease-out;
    transition: opacity .5s ease-out, visibility .5s ease-out;
}

button#topBtn.is-visible {
    opacity: 1;
    visibility: visible;
}


/*---------------------------------------------------------
 en page
---------------------------------------------------------*/
.page-id-51 header#site-header {
    height: unset;
    background: unset;
    position: absolute;
}

.page-id-51 .page-header.logo {
    display: none;
}

.is-en section.concept .text-wrap p {
    margin-bottom: 1em;
}

.is-en section.concept .flex-box.left {
    margin-top: 14vw;
}

.home.is-en footer#footer ul.menu.top {
    padding-bottom: 0;
}

body.is-en footer#footer ul.menu.top {
    margin: 0 auto 5vw;
}

p.access__tel span {
    font-size: .9em;
}

.shop-info__list dd span {
    font-size: .9em;
}

/*---------------------------------------------------------
下層ページ
---------------------------------------------------------*/

.page header,
.archive header,
.single header,
.error404 header {
    height: 7vw;
    background: #111;
}

.page-header.logo {
    height: 100%;
}

.page-header.logo a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-header.logo img {
    height: 40%;
    width: auto;
    margin-left: 3vw;
}

.home #site-header {
    height: unset;
    background: unset;
    position: absolute;
}

.home .page-header.logo {
    display: none;
}

/*---------------------------------------------------------
メニュー
---------------------------------------------------------*/

.breadcrumb {
    width: 90%;
    margin: 0 auto;
    font-size: .9vw;
    padding-top: 1vh;
}

#menu {
    background: #fff;
    padding: 2vw 0;
}

#menu .inner {
    width: 67%;
    margin: 0 auto;
}

#menu .h1-wrap {
    margin-bottom: 1vw;
}

#menu .h1-wrap p.en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: center;
}

#menu .menu-lead {
    font-size: .9vw;
    text-align: center;
    margin-bottom: 2vw;
}

#menu hr {
    border-top: 1px solid #111;
}

.menu-block {
    list-style: none;
    margin: 3vw 0 0;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 2vw;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
}


.menu-block+.menu-block {
    margin-top: 5vw;
}

.menu-block+.menu-block {
    margin-top: 3vw;
    border-top: 1px solid #111;
    padding-top: 3vw;
}

ul.menu-list.menu-block:last-of-type {
    padding-bottom: 3vw;
    border-bottom: 1px solid #111;
}

.menu-item {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 2vw;
    background: transparent;
}

.menu-item__name {
    font-size: 1.15vw;
    line-height: 1.8;
    color: #111;
    word-break: break-word;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-weight: 600;
}

.is-en .menu-item__name {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
}

.menu-item__price {
    font-size: 1.1vw;
    color: #111;
    white-space: nowrap;
    -webkit-font-feature-settings: "palt" 1, "tnum" 1;
    font-feature-settings: "palt" 1, "tnum" 1;
    font-variant-numeric: tabular-nums;
}

.menu-item__name .note {
    font-size: 1vw;
    line-height: 1.6;
    display: inline;
    font-weight: 500;
}

.menu-item--empty {
    padding: 0;
    background: transparent;
}

p.srf {
    text-align: center;
        margin-top: 3vw;
    font-size: 1.15vw;
}

p.srf span.mtd {
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
	padding-right: 1vw;}

.reservation-link {
    text-align: center;
    margin-top: 4vw;
}

.reservation-link .c-btn {
    width: 40%;
}

@media (min-width: 768px) {
    .menu-block {
        -ms-grid-columns: 1fr 4vw 1fr;
        grid-template-columns: 1fr 1fr;
        -webkit-column-gap: 4vw;
        -moz-column-gap: 4vw;
        column-gap: 4vw;
        row-gap: 2vw;
    }
}

/*---------------------------------------------------------
スタイリスト
---------------------------------------------------------*/

.stylists-section {
    padding: 2vw 0 3vw;
}

#stylists .h1-wrap p.en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: center;
}

.stylists-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5vw;
    margin-top: 3vw;
}

.stylist-inner {
    width: 65%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 40%) 4vw minmax(0, 1fr);
    grid-template-columns: minmax(0, 40%) minmax(0, 1fr);
    gap: 4vw;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}


.stylists-grid img.logo {
    position: absolute;
    width: 6vw;
    z-index: 1;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.stylists-grid .stylist-card:nth-child(2) .stylist-inner {
    position: relative;
    z-index: 1;
}

.stylists-grid .stylist-card:nth-child(2) {
    padding: 5vw 0;
    position: relative;
}

article.stylist-card:nth-child(2)::after {
    background: #EEEEEE;
    width: 90%;
    height: 100%;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
}

@media (min-width: 767px) {
    .stylists-grid .stylist-card:nth-child(2) .stylist-inner {
        direction: rtl;
    }

    .stylists-grid .stylist-card:nth-child(2) .stylist-inner>* {
        direction: ltr;
    }
}

.stylist-photo {
    margin: 0;
}

.stylist-photo img {
    width: 100%;
    display: block;
}

.stylist-body {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.stylist-name {
    font-size: 2.5vw;
    font-weight: 600;
    margin: 0 0 0.6vw;
    font-family: "Roboto", sans-serif;
    letter-spacing: .1vw;
    border-bottom: 1.5px solid #111;
    padding-bottom: 1vw;
    line-height: 1;
}

.stylist-name .role {
    display: inline-block;
    margin-left: .5vw;
    font-size: 1.5vw;
    letter-spacing: .1vw;
    color: #666;
}
p.request-fee {
    font-size: 1.1vw;
}

.stylist-menu {
    line-height: 1.7;
    margin: 1.5vw 0;
}

.stylist-menu dt {
    margin-bottom: .5vw;
    background: #111;
    color: #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1.5vw;
    letter-spacing: .1vw;
    font-size: 1.05vw;
}

.is-en .stylist-menu dt {
    font-family: "Momo Trust Display", sans-serif;
    padding: .1vw 1.5vw;
}

.stylist-menu dd {
    font-size: 1.15vw;
}

.stylist-message {
    font-size: 1.1vw;
    margin-bottom: 2vw;
}

.stylist-links {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1vw;
    margin-top: 2vw;
}

.c-btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #111;
    border: .15vw solid #111;
    padding: 0 2vw;
    font-size: 1.3vw;
    letter-spacing: .1vw;
    font-family: "Momo Trust Display", sans-serif;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a.c-btn.reserve-btn {
    background: #111;
    color: #fff;
}

a.c-btn.insta-btn {
    background: #fff;
}

.c-btn:hover {
    background: #111;
    color: #fff;
}

a.c-btn.insta-btn:hover {
    color: #fff;
    background: #111;
}

a.c-btn.reserve-btn:hover {
    background: #fff;
    color: #111;
}


/*---------------------------------------------------------
アクセス
---------------------------------------------------------*/

#access {
    padding: 2vw 0;
}

#access .inner {
    width: 60%;
    margin: 0 auto;
}

#access .h1-wrap {
    margin-bottom: 1.2vw;
}

#access .h1-wrap p.en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: center;
}

.access-hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 .4vw !important;
}

.swiper-pagination-bullet {
    width: .5vw !important;
    height: .5vw !important;
}


.access-hero__swiper,
.access-hero__swiper .swiper-wrapper,
.access-hero__swiper .swiper-slide {
    height: 100%;
}

.access-hero__swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transform: scale(1.001);
    -ms-transform: scale(1.001);
    transform: scale(1.001);
}

.access-hero__pagination .swiper-pagination-bullet-active {
    background-color: #111 !important;
}

.shop-info {
    width: 100%;
    margin-top: 5vw;
}

.access-logo {
    text-align: center;
    margin: 2.5vw 0 1.5vw;
}

.access-logo img {
    width: 23%;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

.shop-info__list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #111;
}

.shop-info__list .row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 11vw 1.2rem 1fr;
    grid-template-columns: 11vw 1fr;
    gap: 1.2rem;
    padding: 1.1vw 0;
    border-bottom: 1px solid #111;
}

.shop-info__list dt {
    font-size: 1.1vw;
    text-transform: lowercase;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 500;
    text-align: center;
    letter-spacing: .05vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.shop-info__list dd {
    margin: 0;
    font-size: 1.1vw;
    color: #111;
    letter-spacing: .05vw;
}


.shop-map {
    width: 100%;
    margin-top: 5vw;
}

.map-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.access-link {
    text-align: center;
    margin-top: 3vw;
}

.access-link a {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: #111;
    border: .15vw solid #111;
    padding: 0 2vw;
    font-size: 1.5vw;
    letter-spacing: .1vw;
    font-family: "Momo Trust Display", sans-serif;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 100%;
}

/*---------------------------------------------------------
お知らせ一覧
---------------------------------------------------------*/

.news-main {
    width: 60vw;
    margin: 2vw auto;
}

.news-main .inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

#news .h1-wrap .en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: left;
    margin-bottom: 2vw;
}

.news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-top: 0.05vw solid #111;
}

.news-item {
    padding: 1.5vw 0;
    border-bottom: 0.05vw solid #111;
}

.news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 2vw;
    -moz-column-gap: 2vw;
    column-gap: 2vw;
    text-decoration: none;
    color: #111;
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.news-link:hover {
    opacity: 0.6;
}

.news-date {
    font-size: 1vw;
    letter-spacing: .1vw;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 8vw;
    margin-left: 1vw;
}

.news-title {
    font-size: 1.1vw;
    line-height: 1.5;
    font-weight: 500;
}

.pagination {
    margin: 2vw 0 0;
    text-align: center;
}

.pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-column-gap: 1.2vw;
    -moz-column-gap: 1.2vw;
    column-gap: 1.2vw;
}

.pagination ul li {
    font-size: 1vw;
}

.pagination ul li a,
.pagination .current {
    width: 3vw;
    height: 3vw;
    border: 0.15vw solid #111;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 500;
    border-radius: 10vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Momo Trust Display", sans-serif;
}

.pagination ul li a:hover {
    opacity: 0.6;
}

.pagination .current {
    background-color: #111;
    color: #ffffff;
}

.pagination ul li a.prev,
.pagination ul li a.next {
    border: none;
    padding: 1vw 1.5vw;
}

/*---------------------------------------------------------
ブログ一覧
---------------------------------------------------------*/

.blog-layout {
    width: 80vw;
    margin: 2vw auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
}

.blog-main {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 58vw;
    flex: 0 1 58vw;
}

.blog-main .inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.blog-sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18vw;
    flex: 0 0 18vw;
}


#blog .h1-wrap .en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: .1vw;
    text-align: left;
}

#blog .blog-list {
    list-style: none;
    margin: 1vw 0 0;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr) 2vw minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3vw 2vw;
}

#blog .blog-item {
    height: 100%;
}

#blog .blog-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border-radius: 0.8vw;
    overflow: hidden;
    -webkit-box-shadow: 0 1.4vw 3.4vw rgba(0, 0, 0, 0.05);
    box-shadow: 0 1.4vw 3.4vw rgba(0, 0, 0, 0.05);
    -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
    -o-transition: transform 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

#blog .blog-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

#blog .blog-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 0;
}

#blog .blog-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
    -webkit-transition: -webkit-transform 0.35s ease;
    transition: -webkit-transform 0.35s ease;
    -o-transition: transform 0.35s ease;
    transition: transform 0.35s ease;
    transition: transform 0.35s ease, -webkit-transform 0.35s ease;
}

#blog .blog-card:hover .blog-thumb img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

#blog .blog-meta {
    padding: 1vw 1vw;
}

#blog .blog-date {
    font-size: 0.85vw;
    letter-spacing: 0.08vw;
    display: block;
}

#blog .blog-title {
    font-size: 1.2vw;
    line-height: 1.5;
    font-weight: 600;
}

#blog .blog-excerpt {
    font-size: 1vw;
    line-height: 1.7;
    margin-top: 0.4vw;
    color: #555555;
}

.blog-empty {
    margin-top: 4vw;
    font-size: 1.1vw;
}

aside#sidebar {
    width: 25%;
    margin-top: 7vw;
}

.single aside#sidebar {
    margin-top: 2vw;
}

.archive aside#sidebar {
    width: 100%;
}

aside#sidebar h4 {
    font-size: 1.6vw;
    margin-bottom: .5vw;
    font-family: "Momo Trust Display", sans-serif;
    letter-spacing: .1vw;
    font-weight: 400;
}

.wp-block-archives-list.wp-block-archives {
    font-size: 1vw;
}

.sidebar .widget-popular-posts {
    list-style: none;
    margin: 1vw 0 3vw;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.4vw;
}

.sidebar .widget-popular-post-item {
    margin: 0;
}

.sidebar .widget-popular-post-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 1vw;
    -moz-column-gap: 1vw;
    column-gap: 1vw;
    text-decoration: none;
    color: #111;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.sidebar .widget-popular-thumb {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6vw;
    flex: 0 0 6vw;
    width: 6vw;
    aspect-ratio: 4 / 3;
    border-radius: 0.4vw;
    overflow: hidden;
    margin-bottom: 0;
}

.sidebar .widget-popular-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.sidebar .widget-popular-meta {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.sidebar .widget-popular-title {
    display: block;
    font-size: 0.9vw;
    line-height: 1.6;
    margin-bottom: 0.2vw;
}

.sidebar .widget-popular-date {
    display: block;
    font-size: 0.8vw;
    margin-top: 0.1vw;
    text-align: right;
}

div#block-7 {
    margin-bottom: 2vw;
}

div#block-7 ul,
div#block-8 ul {
    margin-left: 1vw;
}

div#block-7 ul li,
div#block-8 ul li {
    margin-bottom: .5vw;
    font-size: 1vw;
}

/*---------------------------------------------------------
投稿ページ
---------------------------------------------------------*/

.single-news .single-layout {
    width: 55vw;
    margin: 4vw auto 2vw;
}

.single-main {
    width: 100%;
}

.single-post .single-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 4vw;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 77vw;
    margin: 4vw auto 2vw;
}


.single-post #sidebar {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 18vw;
    flex: 0 0 18vw;
}

.single-news .single-layout {
    display: block;
}

.single-news .single-main {
    margin: 0 auto;
}


.single-main .inner {
    width: 100%;
    margin: 0;
    padding: 0;
}

.post-header-block {
    margin-bottom: 2vw;
}

.post-header-block .post-meta-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: .5vw;
}

.post-cat a {
    display: inline-block;
    padding: 0 1.4vw;
    border-radius: 10vw;
    background: #111;
    color: #fff;
    font-size: 0.8vw;
    letter-spacing: 0.08vw;
    text-decoration: none;
}

.post-cat a+a {
    margin-left: 0.6vw;
}


.post-title {
    font-size: 1.8vw;
    line-height: 1.5;
    font-weight: 600;
    border-bottom: 0.15vw solid #111;
    padding-bottom: 1vw;
    margin-bottom: .5vw;
}


.post-date {
    font-size: 1vw;
    letter-spacing: 0.08vw;
    text-align: right;
    display: block;
}

.post-content {
    font-size: 1.05vw;
    line-height: 2;
}

.post-content p {
    margin-top: 1.5vw;
    font-size: 1.1vw;
}

.post-content p:first-child {
    margin-top: 0;
}

.post-content strong {
    font-weight: 600;
}

.post-content a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 0.12em;
}

.post-content a:hover {
    opacity: 0.7;
}

a.wp-block-button__link.wp-element-button {
    color: #fff;
    text-decoration: none;
}

.post-content h2 {
    font-size: 1.4vw;
    font-weight: 600;
    letter-spacing: 0.08vw;
    margin: 3.5vw 0 1.5vw;
    padding: 1vw 1.4vw;
    border-left: 0.4vw solid #111;
    background: #f7f7f7;
}

.post-content h3 {
    font-size: 1.3vw;
    font-weight: 600;
    letter-spacing: 0.06vw;
    margin: 3vw 0 1.5vw;
    padding-bottom: 0.8vw;
    border-bottom: 0.15vw solid #111;
}

.post-content h4 {
    font-size: 1.25vw;
    font-weight: 600;
    letter-spacing: .06vw;
    margin: 2.6vw 0 1.5vw;
    padding-left: .7vw;
    position: relative;
    border-left: .3vw solid #111;
}

.post-content h5 {
    font-size: 1.2vw;
    font-weight: 600;
    margin: 2.2vw 0 1.5vw;
}

.post-content ul,
.post-content ol {
    margin: 2vw 0 2.5vw;
    padding: 1.8vw 1.6vw 1.8vw 2.8vw;
    background: #f7f7f7;
    font-size: 1.15vw;
}

.post-content ul ul,
.post-content ol ol {
    margin: 0.8vw 0 0;
    padding: 0 0 0 1.6vw;
    background: none;
    font-size: 1.15vw;
}

.post-content li {
    margin-bottom: 0.6vw;
}

.post-content li:last-of-type {
    margin-bottom: 0;
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.05vw;
}

.post-content th,
.post-content td {
    border: 0.08vw solid #111 !important;
    padding: 0.9vw 1vw !important;
    vertical-align: top;
    font-size: 1.15vw;
}

.post-content figure {
    margin: 2.4vw 0;
}

.post-content figure img {
    width: 100%;
    height: auto;
    display: block;
}

.post-content .youtube {
    width: 100%;
    aspect-ratio: 16/9;
    margin: 2.4vw 0;
}

.post-content .youtube iframe {
    width: 100%;
    height: 100%;
}

.post-content blockquote {
    position: relative;
    margin: 3vw 0;
    padding: 2.8vw 2.4vw 2vw;
    background: #f7f7f7;
    border-radius: 0.8vw;
    border: 0.08vw solid #111;
    font-size: 1.15vw;
}

.post-content blockquote::before,
.post-content blockquote::after {
    content: "";
    position: absolute;
    width: 1.5vw;
    height: 1.5vw;
    background-image: url("https://boxkyoto.com/wp-content/uploads/2025/12/block-quote.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

.post-content blockquote::before {
    left: 1vw;
    top: 1vw;
}

.post-content blockquote::after {
    right: 1vw;
    bottom: 1vw;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

.post-content blockquote p {
    margin-top: 0;
}

.post-content blockquote cite {
    display: block;
    margin-top: 1.4vw;
    font-size: 0.9vw;
    text-align: right;
    color: #999;
}

.share {
    margin-bottom: 3vw;
    margin-top: 3vw;
    position: relative;
    z-index: 1;
}

.home .share {
    width: 55%;
    margin: 0 auto;
}

.single article .share p {
    text-align: center;
    font-size: 1.5vw;
    margin-bottom: 0;
    letter-spacing: .15vw;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 200;
    font-family: "Momo Trust Display", sans-serif;
    color: #111;
}



.single article .share ul {
    width: 40%;
    margin: 1vh auto 0;
    padding: 0;
    list-style: none;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-left: auto;
}

.share li {
    width: 31%;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share li a,
.share li button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 3vw;
    width: 3vw;
    border-radius: 50px;
}

.share li button img {
    width: 66%;
}

.share li a:visited {
    opacity: .6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.facebook_share a {
    background-color: #111;
    color: #ffffff;
}

li.facebook_share a img {
    width: 32%;
}

.line_share a {
    background-color: #111;
    color: #ffffff;
}

li.line_share a img {
    width: 63%;
}

.tweet_share a {
    background-color: #111;
    color: #fff;
}

li.tweet_share a img {
    width: 50%;
}

.share li a:hover {
    opacity: 0.6;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

button.share-url {
    background-color: #111;
    color: #ffffff;
}

.url-copied {
    display: none;
    position: absolute;
    bottom: -3.5vw;
    left: 65%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.url-copied span {
    background: #111;
    color: #fff;
    padding: .3vw 1vw;
    border-radius: 50px;
    font-size: .7vw;
    white-space: nowrap;
}


nav.post-nav {
    width: 100%;
    margin: 5vw auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 2vw;
    -moz-column-gap: 2vw;
    column-gap: 2vw;
}

.post-nav a {
    width: 49%;
    text-decoration: none;
    position: relative;
    color: #111;
    border: 0.15vw solid #111;
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
    font-size: 1vw;
    line-height: 1.6;
    padding: 1vw 1vw;
    font-weight: 600;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 0.12vw;
    background: #fff;
    display: block;
}

.post-nav .prev-link {
    text-align: left;
}

.post-nav .next-link {
    text-align: right;
    margin: 0 0 0 auto;
}

.post-nav .prev-link::before {
    content: "before";
    position: absolute;
    top: -1.2vw;
    left: 0;
    line-height: 1;
    color: #111;
    font-size: 1.3vw;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05vw;
}

.post-nav .next-link::before {
    content: "next";
    position: absolute;
    top: -1.2vw;
    right: 0;
    line-height: 1;
    color: #111;
    font-size: 1.3vw;
    font-family: "Momo Trust Display", sans-serif;
    font-weight: 400;
    letter-spacing: 0.05vw;
}

nav.post-nav a:hover {
    background: #F5F5F5;
}

/*---------------------------------------------------------
404 ページ
---------------------------------------------------------*/
#not-found {
    padding: 6vw 0 3vw;
}

#not-found .inner {
    width: 65%;
    margin: 0 auto;
    text-align: center;
}

#not-found .h1-wrap {
    margin-bottom: 3vw;
}

#not-found .h1-wrap p.en {
    font-family: "Momo Trust Display", sans-serif;
    font-size: 4vw;
    font-weight: 400;
    letter-spacing: .12vw;
    line-height: 1;
}

.notfound-lead {
    font-size: 1.1vw;
    line-height: 2;
    margin: 0 auto 3.5vw;
}

.sp-only-break {
    display: none;
}

.notfound-actions {
    display: flex;
    justify-content: center;
}

.notfound-actions .c-btn {
    width: 30%;
    text-align: center;
}


/*---------------------------------------------------------
  スマホ
  ---------------------------------------------------------*/

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

    body {
        line-height: 1.8;
    }

    .topBtn {
        display: none !important;
    }

    br.sp_block {
        display: block !important;
    }

    .sp_block {
        display: block !important;
    }

    .sp_inlineblock {
        display: inline-block !important;
    }

    span.pc_inlineblock {
        display: none !important;
    }

    .pc_block {
        display: none !important;
    }

    .pc_inlineblock {
        display: none;
    }

    .start p {
        width: 55vw;
    }

    header {
        position: relative;
    }


    #g-nav .g-nav_inner {
        width: 88vw;
        min-width: 0;
        padding: 4vw 0;
        -webkit-box-shadow: -2vw 0 4vw rgba(0, 0, 0, .18);
        box-shadow: -2vw 0 4vw rgba(0, 0, 0, .18);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    #g-nav .g-nav_box {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 75%;
        margin: 0 auto;
    }

    #g-nav .g-nav_box .logo {
        width: 70%;
    }

    #g-navi {
        margin-top: 5vw;
    }

    #g-navi>li {
        margin: .5vw 0;
    }

    #g-navi>li>a {
        font-size: 5vw;
        padding: 3vw 0;
    }

    section.mv {
        height: 115svh;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100svh, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100svh, 0 100%);
    }

    .mv-bg img {
        object-position: 37% 50%;
    }

    .mv-logo {
        top: 70%;
        left: 50%;
        width: 69%;
    }

    .mv-logo img {
        height: 12vw;
    }


    .g-nav-openbtn {
        top: 3.5vw;
        right: 4vw;
        width: 13vw;
        height: 13vw;
        -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
        box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    }

    html.nav-open .g-nav-openbtn {
        -webkit-box-shadow: unset;
        box-shadow: unset;
    }

    .g-nav-openbtn .openbtn-area.hamburger {
        width: 5.5vw;
        height: 4vw;
    }

    .g-nav-openbtn .openbtn-area.hamburger span {
        height: 2px;
    }

    .g-nav-openbtn .openbtn-area.hamburger span:nth-child(2) {
        top: 2vw;
    }

    .g-nav-openbtn .openbtn-area.hamburger span:nth-child(3) {
        top: 4vw;
    }

    html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(1),
    html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(3) {
        top: 2vw;
    }

    .menu.lang {
        padding: 0 5vw;
        top: 3vw;
        gap: 1.5vw;
        background: rgb(255 255 255 / 20%);
    }

    .menu.lang li {
        font-size: 4vw;
    }

    ul.nav-lang {
        padding: 1vh 5vw;
        gap: 2vw;
        margin-top: 3vw;
    }

    ul.nav-lang a {
        font-size: 4vw;
    }

    section.catch h2 {
        position: relative;
        width: 95%;
        font-size: 6vw;
        text-align: center;
        line-height: 1.6;
        padding: 2.5vh 0 2.5vh;
        letter-spacing: .5vw;
    }


    section.catch h2 span {
        white-space: nowrap;
        font-size: 4vw;
        display: block;
        margin-top: 1vw;
        letter-spacing: .2vw;
    }

    .is-en.home section.catch h2 {
        padding: 3vw 0;
        line-height: 1.4;
        font-size: 7vw;
        width: 95%;
    }

    section.concept .flex-box.left {
        margin-top: 124vw;
    }

    section.concept {
        height: unset;
    }

    section.concept .text-wrap {
        margin-bottom: 7vw;
        margin-top: 2vw;
    }

    section.concept .flex-box.right img {
        position: absolute;
        right: 0;
        top: 0;
        width: 90%;
    }


    .concept__link a.c-btn {
        width: 65%;
        margin: 6vw auto 0;
        font-size: 4.5vw;
        border: .5vw solid #111;
        display: block;
        padding: .5vw 0;
    }

    section#movie .movie__player {
        width: 100%;
    }

    section#movie .logo-wrap {
        display: none;
    }


    .haircatalog__swiper .swiper-slide {
        aspect-ratio: 3 / 4;
    }
	
	.haircatalog__swiper p.stylist {
    font-size: 4vw;
    letter-spacing: .2vw;
            padding: 0 2vw .5vw;
}

    .haircatalog .background {
        background-position: 97% 0;
        height: 93%;
        top: 11vw;
    }

    .haircatalog {
        padding: 14vw 0 5vw;
    }


    section.staff .background {
        height: 76vw;
        background-size: 150%;
        background-position: 52% 100%;
    }

    .hc-nav {
        width: 7vw;
        height: 7vw;
    }

    .haircatalog__controls {
        margin-top: 3vw;
        margin-right: 6vw;
    }

    .hc-nav::before {
        width: 2vw;
        height: 2vw;
        border-right: .4vw solid #111;
        border-bottom: .4vw solid #111;
    }

    button.haircatalog__nav.hc-nav.hc-prev::before {
        position: relative;
        left: .5vw;
    }

    button.haircatalog__nav.hc-nav.hc-next::before {
        position: relative;
        right: .5vw;
    }

    section.concept .text-wrap p {
        margin-bottom: 1em;
    }

    .staff__more a,
    .news__more a.c-btn {
        width: 65%;
        margin: 5vw auto 9vw;
        font-size: 4.5vw;
        border: 1.5px solid #111;
        display: block;
        padding: .5vw 0;
        background: #fff;
    }

    section.news .inner {
        padding: 9vw 0 4vw;
    }

    section#staff h2 {
        margin-bottom: 2vw;
    }

    .access__title {
        font-size: 10vw;
    }

    .access__wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 6vw;
    }


    .access__box {
        padding: 0;
    }

    .access__media figure {
        margin: 0;
    }

    .access__shop img {
        width: 29vw;
    }

    .access__shop {
        margin: 0 0 4vw;
    }

    .access__addr,
    .access__near,
    .access__hourline,
    .access__tel,
    p.access__lang {
        font-size: 3.5vw;
        letter-spacing: .1vw;
        margin: 0 0 2vw;
    }

    .access__actions {
        text-align: center;
    }

    .salon__more {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5vw;
        width: 65%;
        margin: 6vw auto 0;
        animation-direction: alternate-reverse;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .access-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 5vw;
        width: 65%;
        margin: 6vw auto 0;
        animation-direction: alternate-reverse;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: vertical;
    }

    .salon__more .c-btn,
    .access-link a {
        width: 100%;
        font-size: 4.5vw;
        padding: .5vw 0;
        border: 1.5px solid #111;
    }

    .salon__more .c-btn.res,
    .access-link a.c-btn.res {
        background: #111;
        color: #fff;
    }


    footer#footer ul.menu.top {
        width: 100%;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    footer#footer ul.menu li {
        font-size: 4vw;
        line-height: 2;
    }

    footer#footer ul.menu.top li {
        width: 26%;
    }

    footer#footer ul.menu.bottom {
        width: 100%;
        margin: 2vw auto 10vw;
    }

    .copyright p {
        font-size: 3.5vw;
    }

    button#topBtn {
        right: 4vw;
        width: 13vw;
        height: 13vw;
        bottom: 7vw;
        font-size: 4vw;
    }

    body.is-en footer#footer ul.menu.top {
        margin: 0 auto 10vw;
    }

    #menu {
        padding: 5vw 0;
    }

    #menu .inner {
        width: 90%;
    }

    #menu .h1-wrap {
        margin-bottom: 3vw;
    }

    .menu-block {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        row-gap: 5vw;
        margin: 5vw 0 0;
    }

    .menu-block+.menu-block {
        margin-top: 6vw;
        padding-top: 5vw;
    }

    .menu-item,
    .menu-item--empty {
        padding: 0;
    }

    .menu-item__name,
    .menu-item__price {
        font-size: 3.8vw;
    }

    .menu-item__name .note {
        font-size: 3.2vw;
        line-height: 1.7;
    }
	
	p.srf {
    text-align: left;
    margin-top: 5vw;
    font-size: 3.8vw;
}
	p.srf span.mtd {
    display: block;
}
	
	.page-id-42 ul.menu-list.menu-block:last-of-type {
    padding-bottom: 0;
    border-bottom: unset;
}

    .news__link {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        padding: .5vh 0;
        gap: 0.5vw;
    }

    .news__date {
        font-size: 3vw;
        display: block;
        width: 100%;

    }

    .news__title-text {
        font-size: 3vw;
        display: block;
        width: 100%;
        font-weight: 600;
    }

    .news__list {
        border-top: 1px solid #111;
    }

    .news__item {
        border-bottom: 1px solid #111;
    }

    nav.footer-nav {
        background: #111;
    }

    nav.footer-nav a {
        color: #fff;
    }

    .not-home footer#footer ul.menu.top,
    .single footer#footer ul.menu.top,
    .archive footer#footer ul.menu.top,
    footer#footer ul.menu.top {
        padding-top: 5vw;
    }

    footer#footer ul.menu.top {
        gap: 2vw 0;
    }

    .not-home footer#footer ul.menu.bottom,
    .single footer#footer ul.menu.bottom,
    .archive footer#footer ul.menu.bottom,
    footer#footer ul.menu.bottom {
        padding-bottom: 5vw;
    }

    .footer-inner {
        padding: 12vw 0 10vw;
    }

    .page-header.logo img {
        height: 43%;
        margin-left: 5vw;
    }

    .page header,
    .archive header,
    .single header,
    .error404 header {
        height: 20vw;
    }

    .is-en.home .concept__wrap.wrap {
        margin-top: 110vw;
    }

    #menu .menu-lead {
        text-align: left;
        margin-bottom: 6vw;
    }

    #menu .menu-lead p:first-of-type {
        margin-bottom: 1vh;
    }

    .menu-item--empty {
        display: none;
    }

    .c-btn {
        padding: .5vw 2vw;
        font-size: 4.8vw;
        letter-spacing: .5vw;
        border: 1.5px solid #111;
    }

    .is-en footer#footer ul.menu.top,
    .home.is-en footer#footer ul.menu.top {
        padding-bottom: 5vw;
    }

    .not-home .footer-inner {
        padding: 8vw 0 10vw;
    }

    .stylists-section {
        padding: 10vw 0 4vw;
    }

    .stylists-grid {
        gap: 10vw;
        margin-top: 8vw;
    }

    .stylist-inner {
        width: 90%;
        margin: 0 auto;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 2vw;
    }


    .stylist-body {
        padding-top: 0;
    }

    .stylist-photo img {
        width: 80%;
        margin: 0 auto;
    }

    .stylist-name {
       font-size: 7vw;
        margin-bottom: 0;
        text-align: center;
        border-bottom: 1px solid #111;
        line-height: 1.8;
        padding-bottom: 0;
    }

    .stylist-name .role {
        font-size: 4vw;
        margin-left: 2vw;
    }
	
	p.request-fee {
    font-size: 4vw;
    text-align: center;
    margin-top: 2vw;
}

    .stylist-menu {
                margin-bottom: 4vw;
    }

    .stylist-menu dt {
        margin: 4vw auto 0;
        margin-bottom: 3vw;
        padding: 1vw 1.5vw;
        width: 40%;
        text-align: center;
        font-size: 3.5vw;
    }

    .stylist-menu dd {
        font-size: 4vw;
        text-align: center;
    }

    .stylist-message {
        font-size: 3.8vw;
        margin-bottom: 8vw;
    }

    .stylist-links {
        width: 60%;
        gap: 3vw;
        margin: 4vw auto 0;
    }

    article.stylist-card:nth-child(2):after {
        content: none;
    }

    #access {
        padding: 5vw 0;
    }

    #access .inner {
        width: 90%;
    }

    #access .h1-wrap p.en {
        font-size: 5vw;
    }

    .shop-info {
        margin-top: 12vw;
    }

    .access-logo img {
        width: 43%;
        margin-bottom: 4vw;
    }

    .shop-info__list .row {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 1vw;
        padding: 3.5vw 0;
    }

    .shop-info__list dt {
        font-size: 4vw;
    }

    .shop-info__list dd {
        font-size: 3.8vw;
        text-align: center;
    }

    .access-cta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 3vw;
    }

    .btn {
        font-size: 3.8vw;
        border-radius: 50px;
    }

    .map-embed {
        aspect-ratio: 3 / 2;
    }

    .swiper-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        bottom: 0 !important;
    }

    aside#sidebar {
        width: 100%;
        margin-top: 13vw;
    }

    aside#sidebar h4 {
        font-size: 7vw;
        margin-bottom: 3vw;
    }

    .sidebar .widget-popular-posts {
        row-gap: 4vw;
    }

    .sidebar .widget-popular-post-link {
        -webkit-column-gap: 3vw;
        -moz-column-gap: 3vw;
        column-gap: 3vw;
    }

    .sidebar .widget-popular-thumb {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 28vw;
        flex: 0 0 28vw;
        width: 28vw;
        border-radius: 1.4vw;
    }

    .sidebar .widget-popular-date {
        font-size: 3vw;
        margin-bottom: 1vw;
    }

    .sidebar .widget-popular-title {
        font-size: 3.8vw;
        line-height: 1.7;
    }

    div#block-7 ul,
    div#block-8 ul {
        margin-left: 7vw;
    }

    div#block-7 ul li,
    div#block-8 ul li {
        margin-bottom: 2vw;
        font-size: 3.8vw;
    }

    div#block-7 {
        margin-bottom: 5vw;
        margin-top: 5vw;
    }

    p.archive-heading {
        margin-bottom: 4vw;
        font-size: 3.5vw;
    }

    .blog-layout {
        width: 90%;
        margin: 4vw auto 0;
        display: block;
    }

    .blog-main {
        width: 100%;
    }

    .blog-sidebar {
        width: 100%;
        margin-top: 8vw;
        font-size: 3.2vw;
    }

    .blog-sidebar .widget {
        margin-bottom: 6vw;
    }

    #blog .h1-wrap .en {
        font-size: 10vw;
        letter-spacing: 0.4vw;
    }

    #blog .blog-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    #blog .blog-meta {
        padding: 3vw 3.2vw 4vw;
        row-gap: 1.6vw;
    }

    #blog .blog-date {
        font-size: 3vw;
        letter-spacing: 0.2vw;
    }

    #blog .blog-title {
        font-size: 4vw;
    }

    #blog .blog-excerpt {
        font-size: 3.4vw;
        line-height: 1.8;
    }

    #blog .blog-card {
        border-radius: 2vw;
        -webkit-box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.07);
        box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.07);
    }

    .blog-empty {
        font-size: 3.4vw;
    }

    .pagination {
        margin: 4vw 0 0;
    }

    .pagination ul {
        -webkit-column-gap: 3vw;
        -moz-column-gap: 3vw;
        column-gap: 3vw;
    }

    .pagination ul li {
        font-size: 3.4vw;
    }

    .pagination ul li a,
    .pagination .current {
        width: 7vw;
        height: 7vw;
    }

    .pagination ul li a.prev,
    .pagination ul li a.next {
        padding: 2.2vw 3.2vw;
    }

    .single-news .single-layout,
    .single-post .single-layout {
        width: 90%;
        margin: 10vw auto 0;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
    .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 1vw !important;
    }

    .swiper-pagination-bullet {
        width: 1vw !important;
        height: 1vw !important;
    }


    .single-layout {
        width: 90vw;
        margin: 6vw auto 14vw;
        display: block;
    }

    .single-main {
        width: 100%;
    }

    .single-sidebar {
        width: 100%;
        margin-top: 8vw;
        font-size: 3vw;
    }

    .single-sidebar .widget-title {
        font-size: 3.6vw;
    }

    .post-header-block .post-meta-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        row-gap: 2vw;
    }

    .post-cat a {
        font-size: 2.5vw;
        padding: 0vw 3vw;
    }

    .post-date {
        font-size: 3vw;
    }

    .post-title {
        font-size: 4.5vw;
        line-height: 1.6;
        padding-bottom: 2vw;
        border-bottom: 1.5px solid #111;
        margin-bottom: 1vw;
    }

    .post-content figure {
        margin: 6vw 0 4vw;
    }

    .post-thumb {
        margin: 4vw 0 6vw;
    }

    .post-thumb img {
        border-radius: 2vw;
        -webkit-box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.08);
        box-shadow: 0 2vw 4vw rgba(0, 0, 0, 0.08);
    }

    .post-content {
        font-size: 3.4vw;
    }

    .post-content h2 {
        font-size: 4.2vw;
        margin: 6vw 0 4vw;
        padding: 2vw 3vw;
        border-left-width: 1vw;
        line-height: 1.6;
    }

    .post-content h3 {
        font-size: 4vw;
        margin: 6vw 0 4vw;
        padding-bottom: 2vw;
        border-bottom-width: .6vw;
        line-height: 1.6;
    }

    .post-content h4 {
        font-size: 3.8vw;
        margin: 6vw 0 4vw;
        padding: 1vw 3vw;
        line-height: 1.6;
        border-left: .8vw solid #111;
    }

    .post-content h5 {
        font-size: 3.6vw;
        margin: 6vw 0 4vw;
    }

    .post-content ul,
    .post-content ol {
        padding: 5vw 3.2vw 5vw 9vw;
        border-radius: 2vw;
        font-size: 3.6vw;
        line-height: 1.6;
        margin: 6vw 0 4vw;
    }

    .post-content li {
        margin-bottom: 2vw;
    }

    .post-content table {
        font-size: 3.3vw;
    }

    .post-content th,
    .post-content td {
        padding: 2.4vw 2.2vw !important;
        font-size: 3.6vw;
        line-height: 1.6;
    }

    .post-content blockquote {
        margin: 6vw 0;
        padding: 5vw 4vw 3.6vw;
        border-radius: 2vw;
    }

    .post-content blockquote::before,
    .post-content blockquote::after {
        width: 4vw;
        height: 4vw;
    }

    .post-content blockquote::after {
        right: 2.4vw;
        bottom: 2.4vw;
    }

    .post-content blockquote cite {
        font-size: 3vw;
    }

    .post-tags {
        margin-top: 7vw;
        padding-top: 5vw;
    }

    .post-tags .tag-list {
        row-gap: 2.4vw;
        -webkit-column-gap: 2.4vw;
        -moz-column-gap: 2.4vw;
        column-gap: 2.4vw;
    }

    .post-tags .tag-label {
        font-size: 3vw;
    }

    .post-tags a {
        font-size: 3vw;
        padding: 1.4vw 3.4vw;
        border-width: 0.4vw;
    }

    .post-tags a::before {
        width: 3vw;
        height: 3vw;
    }

    .share {
        margin: 8vw 0;
    }


    .single article .share p {
        font-size: 5vw;
        letter-spacing: .5vw;
    }

    .single article .share ul {
        width: 66%;
    }


    .share li a,
    .share li button {
        width: 9.5vw;
        height: 9.5vw;
    }

    button.share-url {
        width: 12vw;
    }

    .url-copied {
        bottom: -11vw;
        left: 75%;
    }

    .url-copied span {
        font-size: 2vw;
        padding: 1.2vw 3vw;
    }

    nav.post-nav {
        width: 100%;
        margin: 13vw auto 0;
    }

    .post-nav {
        row-gap: 6vw;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .post-nav a {
        width: 100%;
        border: 1.5px solid #111;
        font-size: 3vw;
        padding: 2vw;
    }

    .post-nav .prev-link::before,
    .post-nav .next-link::before {
        top: -3.5vw;
        font-size: 4vw;
    }

    .single-layout {
        width: 90vw;
        margin: 6vw auto 12vw;
    }

    .single-post .single-layout {
        display: block;
    }

    .single-post .single-main,
    .single-news .single-main {
        width: 100%;
        max-width: 100%;
    }

    .single aside#sidebar {
        margin-top: 12vw;
        width: 100%;
    }

    .news-main {
        width: 90%;
        margin: 4vw auto 0;
    }

    #news .h1-wrap .en {
        font-size: 10vw;
        letter-spacing: .3vw;
        margin-bottom: 3vw;
    }

    .news-item {
        padding: 4.5vw 0;
    }

    .news-date {
        font-size: 3vw;
        width: 22vw;
    }

    .news-title {
        font-size: 3.8vw;
    }

    #not-found {
        padding: 20vw 0 17vw;
    }

    #not-found .inner {
        width: 90%;
    }

    #not-found .h1-wrap {
        margin-bottom: 7vw;
    }

    #not-found .h1-wrap p.en {
        font-size: 12vw;
        letter-spacing: .2vw;
    }

    .notfound-lead {
        font-size: 3.8vw;
        line-height: 1.9;
        margin-bottom: 10vw;
        max-width: none;
    }

    .notfound-actions .c-btn {
        width: 60%;
    }

    .sp-only-break {
        display: block;
    }

    .post-content th,
    .post-content td {
        border: 1px solid #111 !important;
    }

    /* margin-top */

    .reservation-link {
        margin-top: 8vw;
    }


    /* width */

    .concept__wrap.wrap,
    section.concept .flex-box {
        width: 100%;
    }

    .haircatalog .inner {
        width: 90%;
    }

    section.concept .inner.flex-wrap {
        width: 80%;
    }

    .reservation-link .c-btn {
        width: 70%;
    }

    /* font-size */

    section.concept h2,
    section#hair-catalog h2,
    section#staff h2,
    section#news h2,
    #menu .h1-wrap p.en,
    #stylists .h1-wrap p.en,
    #access .h1-wrap p.en {
        font-size: 10vw;
    }

    .staff-card p.name {
        font-size: 5vw;
    }

    ul.nav-lang li {
        font-size: 4vw;
    }

    section.concept .text-wrap p {
        font-size: 3.8vw;
    }

    .post-content p {
        font-size: 3.6vw;
    }
	
	.wp-block-archives-list.wp-block-archives{
		font-size: 3.4vw;
	}

    #menu .menu-lead {
        font-size: 3vw;
    }

    .breadcrumb {
        font-size: 2.8vw;
    }
}



/*---------------------------------------------------------
  Language Modal
---------------------------------------------------------*/

.lang-modal[hidden] {
    display: none;
}

.lang-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lang-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
}

.lang-modal__dialog {
    position: relative;
    width: min(92vw, 32vw);
    background: #fff;
    border-radius: 1.2vw;
    padding: 1.6vw 1.4vw 1.2vw;
    box-shadow: 0 1.4vw 4vw rgba(0, 0, 0, .25);
}

.lang-modal__title {
    margin: 0 0 .4vw;
    font-size: 1.1vw;
    line-height: 1.4;
    text-align: center;
}

.lang-modal__desc {
    margin: 0 0 1vw;
    color: #444;
    font-size: .9vw;
    text-align: center;
}

.lang-modal__actions {
    display: flex;
    gap: .6vw;
}

.lang-modal__btn {
    flex: 1;
    padding: .5vw 1vw;
    border: 1px solid #111;
    border-radius: 10vw;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1vw;
}

.lang-modal__btn.-primary {
    background: #111;
    color: #fff;
    border-color: #111;
}

.lang-modal__close {
    position: absolute;
    top: .6vw;
    right: .6vw;
    width: 2.4vw;
    height: 2.4vw;
    border: none;
    background: transparent;
    font-size: 1.6vw;
    line-height: 1;
    cursor: pointer;
}

.lang-modal__note {
    margin: .9vw 0 0;
    color: #666;
    font-size: .75vw;
    text-align: center;
}

@media (max-width: 767px) {

    .lang-modal__dialog {
        width: 92vw;
        border-radius: 4vw;
        padding: 4.5vw 4vw 4vw;
        box-shadow: 0 4vw 10vw rgba(0, 0, 0, .25);
    }

    .lang-modal__title {
        font-size: 4.8vw;
        margin-bottom: 2vw;
    }

    .lang-modal__desc {
        font-size: 3.8vw;
        margin-bottom: 4vw;
    }

    .lang-modal__actions {
        gap: 3vw;
    }

    .lang-modal__btn {
        padding: 1.5vw 3.8vw;
        font-size: 4vw;
    }

    .lang-modal__close {
        top: 2.5vw;
        right: 2.5vw;
        width: 9vw;
        height: 9vw;
        font-size: 6vw;
    }

    .lang-modal__note {
        font-size: 3.2vw;
        margin-top: 4vw;
    }

}

/*---------------------------------------------------------
  i pad all portrait
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 743px) and (max-device-width: 1024px) and (orientation: portrait) {



    #g-nav .g-nav_inner {
        width: 40vw;
    }

    #g-navi>li>a {
        font-size: 2.5vw;
        padding: 1.5vw 0;
    }

    html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(1),
    html.nav-open .g-nav-openbtn .openbtn-area.hamburger span:nth-child(3) {
        width: 3.5vw;
    }

    section.mv {
        height: 65svh;
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 55svh, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 55svh, 0 100%);
        background-attachment: unset;
    }

    .post-type-archive-news section#news,
    .blog-layout {
        min-height: calc(100vh - 28vh);
    }

    .single .page-contents {
        min-height: calc(100vh - 25vh);
    }

    .haircatalog__swiper .swiper-slide {
        margin-right: 1.7vw !important;
    }

    .news-main {
        margin: 7vw auto 0;
    }

    .blog-layout {
        margin: 7vw auto;
    }

    .single-news .single-layout {
        margin: 7vw auto 2vw;
    }

    .url-copied {
        bottom: -5vw;
    }

    .pagination ul li a,
    .pagination .current {
        border: .1vw solid #111;
    }

    #not-found {
        padding: 36vw 0 3vw;
        min-height: calc(100vh - 25vh);
    }

    ul.nav-lang li {
        font-size: 1.5vw;
    }

    .lang-modal__dialog {
        width: 50vw;
    }

    .lang-modal__title {
        margin: 0 0 1vw;
        font-size: 2vw;
    }

    .lang-modal__desc {
        margin: 0 0 2vw;
        font-size: 1.6vw;
    }

    .lang-modal__btn {
        font-size: 1.8vw;
    }

    .lang-modal__note {
        margin: 1vw 0 0;
        font-size: 1.5vw;
    }
}


/*---------------------------------------------------------
  i pad pro landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 744px) and (max-device-width: 1400px) and (orientation: landscape) {

    .url-copied {
        bottom: -4.5vw;
    }

    .pagination ul li a,
    .pagination .current {
        border: .1vw solid #111;
    }

    #g-navi>li>a {
        font-size: 1.8vw;
    }

    #not-found {
        padding: 15vw 0 3vw;
        min-height: calc(100vh - 39vh);
    }
	
	#g-nav .g-nav_inner {
		min-width: 24.7vw;}
}