@charset "UTF-8";

html {
    font-family: "Noto Sans JP",
        sans-serif;
}

.uk-lb:hover{
 cursor: pointer; 
}

* {
    transition: .4s;
}

/* style.css */
.page-title {
    display: none;
}

[data-element-id].page-title {
    display: block;
}

.h1-txt {
    width: 100%;
    line-height: 1.1em;
}

.header {
    width: 100%;
    position: fixed;
    z-index: 10;
}

.header-inner {
    max-width: 1300px;
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}

.header-logo {
    width: 90px;
}

.header-logo a,
.header-logo img {
    width: 100%;
    display: block;
}


.header-right {
    flex-grow: 1;
}

.header-row1 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.serch-box {
    width: 200px;
    position:relative;
}

.serch-box input {
    width: 100%;
    display: block;
    padding: 0.2em 0.5em;
    border: 1px solid #333;
    border-radius: 3px;
}

.serch-box button{
  position:absolute;
  top:50%;
  right:5px;
  transform:translateY(-50%);
  z-index:1;
}

.sns-icon-list {
    display: flex;
    gap: 10px;
}

.sns-icon-list a {
    display: block;
    font-size: 26px;
    color: #333;
    line-height: 1em;
}

.sns-icon-list .line a {
    font-size: 23px;
    line-height: 26px;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
}

.nav-list>.item {
    position: relative;
}

.nav-list>.item>a {
    width: 100%;
    display: block;
    padding: 3px 10px;
    letter-spacing: 0.05em;
    text-align: center;
}

.nav-list>.item.switch>a {
    padding: 3px 25px 3px 10px;
}

.nav-list>.item.switch>a::after {
    content: "+";
    position: absolute;
    line-height:1em;
    top: .4em;
    right: 12px;
}

.nav-list>.item>a:hover {
    color: #fff;
    background-color: #333;
}



.pc-none {
    display: none;
}



.dropdown {
    width: 280px;
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    transition: 0.4s;
    transform: translateX(-50%);
    position: absolute;
    top: 100%;
    left: 50%;
}

.switch:hover .dropdown {
    max-height: inherit;
    opacity: 1;
}

.drop-item>a {
    display: flex;
    align-items: center;
    padding: 4px 10px 4px 25px;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #333;
    background-color: #eee;
    position: relative;
}

.drop-item>a::before {
    content: "-";
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 10px;
}

.drop-item>a:hover {
    color: #fff;
    background-color: #333;
}

.hum-btn {
    width: 40px;
    height: 34px;
    display: none;
    cursor: pointer;
    position: relative;
}

.hum-btn span {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 0;
}

.hum-btn span {
    display: inline-block;
    transition: all 0.5s;
}

.hum-btn span:nth-of-type(1) {
    top: 0;
}

.hum-btn span:nth-of-type(2) {
    top: calc(50% - 1px);
}

.hum-btn span:nth-of-type(3) {
    bottom: 0;
}

.hum-btn::after {
    content: "";
    width: 64px;
    height: 64px;
    display: block;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.75s;
    position: absolute;
    top: calc(50% - 32px);
    left: calc(50% - 32px);
}

.active .hum-btn span:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: calc(50% - 1px);
}

.active .hum-btn span:nth-of-type(2) {
    opacity: 0;
    -webkit-animation: active-btn19-bar02 0.8s forwards;
    animation: active-btn19-bar02 0.8s forwards;
    left: 60%;
}

@-webkit-keyframes active-btn19-bar02 {
    100% {
        height: 0;
    }
}

@keyframes active-btn19-bar02 {
    100% {
        height: 0;
    }
}

.active .hum-btn span:nth-of-type(3) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: calc(50% - 1px);
}

.active .hum-btn::after {
    -webkit-animation: active-btn19 0.7s 0.25s forwards;
    animation: active-btn19 0.7s 0.25s forwards;
}

@-webkit-keyframes active-btn19 {
    0% {
        border-color: transparent;
        -webkit-transform: rotate(0);
    }

    25% {
        border-color: transparent #333 transparent transparent;
    }

    50% {
        border-color: transparent #333 #333 transparent;
    }

    75% {
        border-color: transparent #333 #333 #333;
    }

    100% {
        border-color: #333;
        -webkit-transform: rotate(-680deg);
    }
}

@keyframes active-btn19 {
    0% {
        border-color: transparent;
        transform: rotate(0);
    }

    25% {
        border-color: transparent #333 transparent transparent;
    }

    50% {
        border-color: transparent #333 #333 transparent;
    }

    75% {
        border-color: transparent #333 #333 #333;
    }

    100% {
        border-color: #333;
        transform: rotate(-680deg);
    }
}



@media(max-width:1024px) {
    .pc-none {
        display: block;
    }

    .tb-none {
        display: none;
    }

    .hum-btn {
        display: block;
    }

    .h1-txt {
        margin-top: .5em;
    }

    .tb-nav-box {
        width: 100%;
        max-width: 500px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transform: translateX(-100%);
    }

    .active .tb-nav-box {
        transform: translateX(0%);
    }

    .header-nav {
        height: 100%;
        overflow-y: scroll;
    }

    .nav-list {
        display: block;
    }

    .nav-list>.item.switch>a::after {
        display: none;
    }

    .nav-list>.item.switch>a,
    .nav-list>.item>a {
        padding: 5px 0;
        text-align: left;
        display: flex;
        align-items: center;
    }
    
  .menu-mini-txt{
  display:inline-lock;
  text-align: left;
  padding-left:1.5em;
  position:relative;
}

.menu-mini-txt::before{
  content: "ー";
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left:.5em;
    color:#aaa;
}

    .nav-list>.item+.item {
        margin-top: 5px;}

        .switch:hover .dropdown,
        .dropdown {
            width: 100%;
            max-height: inherit;
            opacity: 1;
            position: relative;
        }
    

    .nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-logo {
        width: 60px;
    }

    .nav-logo a,
    .nav-logo img {
        width: 100%;
        display: block;
    }

    .nav-head .serch-box {
        width: 100%;
        max-width: 190px;
    }

    .nav-head .serch-box input {
        padding: 0.1em 0.5em;
        font-size: 0.8em;
        border: 1px solid #333;
        border-radius: 3px;
    }

    .drop-item>a::before {
        content: "┗";
        left: 7px;
    }

    .header-right {
        flex-grow: 0;
    }
}


@media(max-width:599px) {
    .header-logo {
        width: 60px;
    }
    
    .sp-none{
      display:none;
    }
}



.main-visual {
    height: 700px;
    overflow: hidden;
    position: relative;
}

.main-visual-img {
    width: 100%;
    height: 100%;
}

.main-visual-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv-catch {
    width: 100%;
    position: absolute;
    bottom: 1em;
    right: 0;
    text-align: right;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 0.05em;
}

@media(max-width:1024px) {
    .mv-catch {
        letter-spacing: 0em;
    }

    .main-visual {
        height: 500px;
    }
}

@media(max-width:599px) {
    .mv-catch {
        letter-spacing: 0em;
    }

    .main-visual {
        height:86vh;
    }
}



/* ===== COMMON PARTS ===== */

.btn-outline a {
    display: inline-block;
    padding: 7px 30px;
    border: 1px solid #333;
    letter-spacing: 0.1em;
    border-radius: 3px;
    min-width: 150px;
    text-align: center;
}

.btn-outline a:hover {
    color: #fff;
    background-color: #333;
}


.btn-outline.white a,
.btn-white .btn-outline a {
    border: 1px solid #fff;
    color: #fff;
}

.btn-outline.white a:hover,
.btn-white .btn-outline a:hover{
    color: #333;
    background-color: #fff;
}


.en-title01 {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.en-title01.tight {
    letter-spacing: 0;
}

.section-p {
    position: relative;
    overflow: hidden;
}

.reader1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-clamp: 1;
}

.news-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}

.news-head {
    width: 200px;
}

.news-list {
    width: calc(100% - 260px);
}

.news-item+.news-item {
    margin-top: 5px;
}

.news-item a {
    display: flex;
    padding: 10px 5px;
    border-bottom: 1px solid #333;
}

.news-item a:hover {
    color: #fff;
    background-color: #333;
}

.news-item a time {
    width: 120px;
    font-family: "Noto Serif JP",
        serif;
}

.news-item a .txt {
    width: calc(100% - 120px);
}

.bg-left::after {
    width: 60%;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #eee;
    display: block;
    z-index: -1;
    border-radius: 0 90px 90px 0;
    max-width: 300px;
}

.bg-left.mk2::after {
    border-radius: 0 90px 0 0;
}

.concept-tit {
    margin-bottom: 1.5em;
    font-size: 1.1em;
}

.concept-layout {
    display: flex;
    justify-content: space-between;
}

.concept-left {
    width: 45%;
}

.concept-right {
    width: 50%;
}

.w-txt,
.mv-txt,
h1, h2, h3, h4, h5, h6{
    overflow-wrap: anywhere;
    word-break: keep-all;
    
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-radius: 20px;
}

.feature-item+.feature-item {
    margin-top: 30px;
}

.feature-letter {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    line-height: 1;
    color: #00489d;
    flex-shrink: 0;
    width: 56px;
    text-align: center;
}

.feature-body {
    flex: 1;
}

.feature-name {
    font-weight: 700;
    letter-spacing: 0.1em;
}

.feature-name>span {
    letter-spacing: 0em;
}

.feature-desc {
    line-height: 1.8;
    color: #555;
}

.SERVICE-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.SERVICE-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.SERVICE-card {
    width: 48%;
    overflow: hidden;
    justify-content: space-between;
}

.SERVICE-card.long {
    width: 100%;
}

.SERVICE-card {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.service-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 200px;
}

.service-links a {
    display: inline-block;
    border: 1px solid #fff;
    width: 45%;
    letter-spacing: 0.1em;
    border-radius: 3px;
    padding:6px 0;
}

.SERVICE-card .img {
    filter: brightness(.5);
    width: 100%;
    height: 100%;
    position: relative;
}

.SERVICE-card .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-links a:hover {
    background-color: #fff;
    color: #333;
}

.gallery-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}

.gallery-head {
    width: 250px;
}

.gallery-swiper-parent {
    width: calc(100% - 300px);
    position: relative;
}

.gallery-swiper {
    max-width: 200%;
    width: calc(100vw - 300px)
}

.gallery-swiper .swiper-slide {
    transform: scale(.85);
    transform-origin: bottom;
}

.gallery-swiper .swiper-slide-prev {
    transform: scale(1);
    transform-origin: bottom;
}

.gallery-swiper-parent .swiper-button-next,
.gallery-swiper-parent .swiper-button-prev {
    background: rgba(255, 255, 255, 0.7);
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.gallery-swiper-parent .swiper-button-next::after,
.gallery-swiper-parent .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 900;
    color: #333;
}

.gallery-swiper .swiper-slide a {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-sec {
    overflow: hidden;
}

.gal-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(34, 34, 34, 0.7);
    padding: 1em;
    opacity: 0;
}

a:hover .gal-content {
    opacity: 1;
}

.gal-season {
    color: #fff;
    font-size: 14px;
}

.gal-prise {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.gal-prise>span {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.gal-prise>span::after {
    content: "位";
    font-size: 14px;
    margin-left: 5px;
}

.gal-prise>span.ノミネート {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background-color: #fff;
    padding: 2px 6px;
}

.gal-prise>span.prise-1 {
    font-family: "Noto Serif JP",
        serif;
    font-size: 40px;
    color: transparent;
    background: repeating-linear-gradient(0deg, #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
    -webkit-background-clip: text;
}

.gal-prise>span.prise-2 {
    font-family: "Noto Serif JP",
        serif;
    font-size: 36px;
    color: transparent;
    background: repeating-linear-gradient(0deg, #757575 0.1em, #9E9E9E 0.2em, #E8E8E8 0.3em, #9E9E9E 0.4em, #757575 0.5em);
    -webkit-background-clip: text;
}

.gal-prise>span.prise-3 {
    font-family: "Noto Serif JP",
        serif;
    font-size: 32px;
    color: transparent;
    background: repeating-linear-gradient(0deg, #b64b03 0.1em, #da6708 0.2em, #fed5a0 0.3em, #da6708 0.4em, #b64b03 0.5em);
    -webkit-background-clip: text;
}


.gal-prise>.ノミネート::after {
    display: none;
}

.gal-title {
    margin-top: 5px;
    color: #fff;
}

.bg-parent {
    position: relative;
    background: rgba(34, 34, 34, 0.7);
}

.bg-parent>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    opacity: .5;
    z-index: -1;
    color: rgb(102, 102, 102)
}

.shop-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.shop-card {
    width: 32.5%;
    margin-bottom: 10px;
}

[data-element-id].shop-cards>div{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width:100%;
}

.v3 .shop-card {
    width: 48%;
    margin-bottom: 30px;
}

.shop-card>a {
    display: flex;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.shop-v2 .shop-card>a {
    border: 1px solid #ddd;
}

.v3 .shop-card>a {
    border: 1px solid #ddd;
}

.shop-card>a:hover {
    background-color: #333;
    color: #fff;
}

.shop-card>a .img {
    width: 30%
}

.shop-card-content {
    width: 70%;
    padding-top:10px;
    padding-bottom:10px;

}

.shop-card .more-txt {
    display: inline-block;
    position: absolute;
    letter-spacing: 0.1em;
    bottom: 5px;
    right: 5px;
    font-size: 14px;
}



.staff-src {
    display: none;
}

.staff-card img {
    transition: all 0.5s ease-in-out;
}

.staff-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.staff-row01,
.staff-row03 {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.staff-row01 {
    align-items: flex-start;
}

.staff-row03 {
    align-items: flex-end;
}

.staff-item {
    width: 34%;
}

.staff-item.mk02,
.staff-item.mk07 {
    width: 28%;
}

.staff-card {
    border-radius: 10px;
    overflow: hidden;
}

.staff-border {
    display: block;
    height: 40%;
    width: 40%;
    position: absolute;
}

.staff-border.border01 {
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    top: 0%;
    right: 2%;
}

.staff-border.border02 {
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    top: 0%;
    left: 2%;
}

.staff-border.border03 {
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    bottom: 0%;
    left: 2%;
}

.staff-border.border04 {
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    bottom: 0%;
    right: 2%;
}


































/* ===== BLOG ===== */
.reader2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blog-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
}

.blog-head {
    width: 200px;
}

.blog-list {
    width: calc(100% - 260px);
}

.blog-item+.blog-item {
    margin-top: 20px;
}

.blog-item a {
    display: flex;
    padding: 20px 5px 25px 5px;
    border-bottom: 1px solid #333;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.blog-item a:hover {
    color: #fff;
    background-color: #333;
}

.blog-img-01 {
    width: 20%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-cont-01 {
    display: flex;
    width: 78%;
    flex-wrap: wrap;
    align-items: center;
}

.blog-item a time {
    width: 120px;
    font-family: "Noto Serif JP",
        serif;
    margin-bottom: 5px;
}

.blog-item a .txt {
    width: 100%;
}

.blog-cat {
    align-items: center;
    flex-wrap:wrap;
}

.blog-cat>span {
    border: 1px solid #333;
    font-size: 12px;
    border-radius: 10px;
    padding: 0 8px;
    margin-right: 3px;
}

.blog-item a .more-txt {
    display: inline-block;
    position: absolute;
    letter-spacing: 0.1em;
    bottom: 5px;
    right: 5px;
    font-size: 14px;
}




.recruit-src {
    display: none;
}

.recruit-layout {
    display: flex;
    justify-content: space-between;
}

.recruit-left {
    width: 50%;
}

.recruit-right {
    width: 50%;
    margin-right:-10%;
}

.bg-swipe {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
}

.swipe-bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: .5;
    z-index: -1;
}

.swipe-bg img {
    transition: opacity 0.3s ease;
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 通常時は不透明度100% */
}

/* JSでこのクラスが付与された時に透明にする */
.swipe-bg img.fade-out {
    opacity: 0;
}

.recruit-img .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
}

.bg-stripe {
    background-image: repeating-linear-gradient(90deg, #eeeeee, #eeeeee 8px, transparent 8px, transparent 16px);
    /* アニメーションの適用: アニメーション名、秒数、一定速度、無限ループ */
    animation: slide-right 1s linear infinite;
}

/* アニメーションの定義 */
@keyframes slide-right {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 16px 0;
        /* パターン1周分の16pxを指定 */
    }
}

.btn-list-01 .btn-outline a {
    width: 90%;
}

.ft-logo {
    width: 80px;
    margin-left: auto;
    margin-right: auto;
}

.ft-logo a,
.ft-logo img {
    display: block;
    width: 100%;
}

.ft-logo img {
    filter: invert(100%) sepia(3%) saturate(11%) hue-rotate(38deg) brightness(103%) contrast(104%);
}

.footer-main .sns-icon-list {
    justify-content: center;
    margin-top: 30px;
}

.ft-logo img .footer-main,
.footer-main .sns-icon a {
    color: #fff;
}

.footer-nav {
    margin-top: 30px;
}

.footer-nav-list {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.footer-nav-list a:hover {
    text-decoration: underline;
}

.ft-nav-item {
    flex: 1;
    padding-left: 1em;
    border-left: 1px solid #fff;
}

.ftn-list+.ftn-title {
    padding-top: 2em;
}

.ftn-title+.ftn-title {
    padding-top: 1em;
}

.ftn-list {
    padding-top: .5em;
}

.ftn-list .item {
    font-size: .7em;
}

.ftn-list .item+.item {
    margin-top: 10px;
}

.ftn-list .item a{
    text-indent: -1em;
    display: block;
    padding-left: 1em;
}

.ftn-list .item a::before {
    content: "┗";
}

@media(max-width:1024px) {
    .news-layout {
        display: block;
    }

    .news-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .news-list {
        width: 100%;
    }

    .bg-left::after {
        width: 90%;
        height: 100%;
        border-radius: 0 50px 50px 0;
        max-width: 1000px;
        opacity: 0.5;
    }

    .concept-layout {
        display: block;
    }

    .concept-left {
        width: 100%;
    }

    .concept-right {
        width: 100%;
    }

    .feature-item {
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .5);
    }

    .SERVICE-layout {
        display: block;
    }

    .gallery-layout {
        display: block;
    }

    .gallery-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .gallery-swiper-parent {
        width: 100%;
    }

    .gallery-swiper {
        max-width: 100%;
        width: 100%;
    }

    .gallery-swiper .swiper-slide-prev {
        transform: scale(.85);
        transform-origin: bottom;
    }

    .gallery-swiper .swiper-slide-active {
        transform: scale(1);
        transform-origin: bottom;
    }

    .shop-card {
        width: 100%;
        margin-bottom: 10px;
    }

    .v3 .shop-card {
        width: 100%;
        margin-bottom: 10px;
    }

    .staff-row02 {
        width: 150%;
        margin-left: -25%;
        margin-right: -25%;
    }

    .staff-border {
        opacity: .5;
    }

    .blog-layout {
        display: block;
    }

    .blog-head {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .blog-list {
        width: 100%;
    }

    .blog-img-01 {
        width: 30%;
    }

    .blog-cont-01 {
        width: 68%;
    }

    .recruit-left {
        display: contents;
    }

    .recruit-layout {
        flex-direction: column;
    }

    .recruit-left .en-title01 {
        order: 1;
    }

    .recruit-right {
        order: 2;
        margin-right:0;
        width: 100%;
    }

    .recruit-left .recruit-body {
        order: 3;
    }

    .recruit-left .btn-outline {
        order: 4;
    }

    .btn-list-01 .btn-outline a {
        width: 100%;
    }

    .ft-nav-item {
        flex: auto;
        width: 50%;
        padding-left: .5em;
        padding-right: .5em;
        border-left: 1px solid #fff;
    }
}

@media(max-width:599px) {
    .news-item a time {
        width: 90px;
        font-size: 14px;
    }

    .news-item a .txt {
        width: calc(100% - 90px);
    }

    .feature-body {
        display: contents;
    }

    .feature-item {
        flex-wrap: wrap;
        gap: 5px;
        border-radius: 10px;
    }

    .feature-name {
        flex-grow: 1;
    }

    .feature-desc {
        width: 100%;
        margin-top: 10px;
    }

    .feature-item+.feature-item {
        margin-top: 15px;
    }

    .SERVICE-card {
        height: 120px;
        width: 100%;
    }

    .staff-item.mk05 {
        opacity: .5;
        margin-left: -50%;
    }

    .staff-item.mk04 {
        opacity: .5;
        margin-right: -50%;
    }

    .staff-cont {
        position: relative;
        z-index: 1;
    }

    .blog-item a {
        display: block;
        padding: 0px 0px 30px 0px;
        border-bottom: 1px solid #333;
    }

    .blog-img-01 {
        width: 100%;
        margin-bottom: 10px;
    }

    .blog-cont-01 {
        width: 100%;
    }

    .blog-cat {
        margin-bottom: 10px;
    }
    
        .staff-row02 {
        width: 100%;
        margin-left:0%;
        margin-right:0%;
    }
    
       .staff-row02 .staff-cont{
        width: 100%;
    }
    
        .news-head {
        justify-content: center;
    }
    
        .gallery-head {
        justify-content: center;
    }
    
        .blog-head {
        justify-content: center;
    }

}


/* ===== FLOAT BUTTONS ===== */

.sp-float-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.sp-float-btn__reserve,
.sp-float-btn__right {
    width: 50%;
}

.sp-float-btn__right {
    display: grid;
}

.sp-float-btn__reserve a,
.sp-float-btn__line a,
.sp-float-btn__recruit-sp a {
    display: block;
    padding: 10px 0px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #fff;
}

.sp-float-btn__reserve a {
    background-color: #333;
    position:relative;
}

.sp-float-btn__reserve a::after{
  content:"";
  width:calc(100% - 10px);
  height:calc(100% - 10px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #fff;
}

.sp-float-btn__reserve a::before{
  content:"";
  width:calc(100% - 4px);
  height:calc(100% - 4px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #fff;
}

.sp-float-btn__line a {
    background-color: #054e24;
    color: #b39855;
    height:100%;
    position:relative;
}

.sp-float-btn__line a::after{
  content:"";
  width:calc(100% - 10px);
  height:calc(100% - 10px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #b39855;
}

.sp-float-btn__line a::before{
  content:"";
  width:calc(100% - 4px);
  height:calc(100% - 4px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #b39855;
}

.sp-float-btn__recruit-sp a {
    background-color: #c8507a;
    position:relative;
}

.sp-float-btn__recruit-sp a::after{
  content:"";
  width:calc(100% - 10px);
  height:calc(100% - 10px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #fff;
}

.sp-float-btn__recruit-sp a::before{
  content:"";
  width:calc(100% - 4px);
  height:calc(100% - 4px);
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  border:1px solid #fff;
}


.sp-float-btn__line,
.sp-float-btn__recruit-sp {
    grid-area: 1 / 1;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
}

.sp-float-btn__recruit-sp {
    opacity: 0;
    visibility: hidden;
}

.sp-float-btn.is-recruit .sp-float-btn__line {
    opacity: 0;
    visibility: hidden;
}

.sp-float-btn.is-recruit .sp-float-btn__recruit-sp {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 600px) {
    .sp-float-btn {
        display: none;
    }
}



.pc-float-btn__item {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 50;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.4s, visibility 0.4s;
    -o-transition: opacity 0.4s, visibility 0.4s;
    transition: opacity 0.4s, visibility 0.4s;
}

.pc-float-btn__item a {
    display: flex;
    width: 150px;
    height: 150px;
    text-align: center;
    font-size: 12px;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #333;
    border-radius: 50%;
    flex-direction: column;
    position:relative;
}

.pc-float-btn__item.pc-float-btn__newcomer{
  bottom:200px;
}

.pc-float-btn__item.pc-float-btn__newcomer a{
  color:#b39855;
  font-family: "Noto Serif JP", serif;
  overflow:hidden;
}

.pc-float-btn__item.pc-float-btn__newcomer a::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -100%; /* アニメーション開始前に完全に隠すため -50% から -100% に変更推奨 */
    z-index: 2;
    display: block;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    animation: shine 3s infinite ease-in-out;
}

/* 3. アニメーションの動きを定義 */
@keyframes shine {
    0% {
        left: -100%; /* 左側からスタート */
    }
    10% {
        left: 100%;  /* 右側へ通り抜ける */
    }
    100% {
        left: 100%;  /* 右側へ通り抜ける */
    }
}

.pc-float-btn__item.pc-float-btn__newcomer a .golden{
  background: linear-gradient(to bottom, #b39855 0%, #fff9e6 40%, #b39855 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size:20px;
  font-weight:bold;
}

.pc-float-btn__item a::before{
  content:"";
  width:96%;
  height:96%;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background-image:url(/upload/tenant_1/logo.webp);
  background-size:100%;
  animation: rotate-anim 10s linear infinite;
}

/* 追加: 回転アニメーションの定義 */
@keyframes rotate-anim {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.pc-float-btn__item.pc-float-btn__newcomer a::before{
  content:"";
  width:86%;
  height:86%;
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background-image:url(/upload/tenant_1/golden.webp);
  background-size:100% 100%;
  animation: none;
}


.btn-rolling{
  border-bottom:4px double #fff;
  font-family: "Noto Serif JP", serif;
    font-weight: 900;
    text-align:center;
    font-size:20px;
}

.pc-float-btn__recruit a {
    background-color: #c8507a;
}

.pc-float-btn__recruit {
    opacity: 0;
    visibility: hidden;
}

.pc-float-btn.is-recruit .pc-float-btn__reserve {
    opacity: 0;
    visibility: hidden;
}

.pc-float-btn.is-recruit .pc-float-btn__recruit {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 599px) {
    .pc-float-btn {
        display: none;
    }

}



/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
:root {
    --clr-main: #333333;
    --clr-accent: #888888;
    --clr-bg: #f8f5f0;
    --clr-border: #e0e0e0;
}

body.recruit-page {
    --clr-main: #5c3d2e;
    --clr-accent: #c9a227;
    --clr-bg: #faf6f0;
    --clr-border: #d4b896;
}



/* ========================================
   NAV CURRENT STATE
======================================== */
.nav-list>.item.current>a {
    font-weight: 700;
    border-bottom: 2px solid #333;
}

.drop-item.current>a {
    color: #fff;
    background-color: #333;
}

body.recruit-page .nav-list>.item.current>a {
    border-bottom-color: var(--clr-main);
}

body.recruit-page .drop-item.current>a {
    background-color: var(--clr-main);
}



/* ========================================
   PAGE HERO (下層ページ共通)
======================================== */
.page-hero {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.page-hero-img {
    width: 100%;
    height: 100%;
}

.page-hero-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: brightness(0.45);
    filter: brightness(0.45);
}

.page-hero-content {
    width: 100%;
    max-width: 1100px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    padding: 2em;
    color: #fff;
}

.page-hero-title {
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.05em;
}

.page-hero-sub {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-top: 0.5em;
}

@media (max-width: 1024px) {
    .page-hero {
        height: 320px;
    }

    .page-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 599px) {
    .page-hero {
        height: 220px;
    }

    .page-hero-title {
        font-size: 28px;
    }

    .page-hero-sub {
        font-size: 14px;
    }
}



/* ========================================
   BREADCRUMB (下層ページ用)
======================================== */
.breadcrumb {
    padding: 18px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.breadcrumb-list {
    font-size: 14px;
    gap: 0;
}

.breadcrumb-item{
  display:inline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: 0 10px 1px;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item:last-child {
    color: #999;
}

@media (max-width: 599px) {
    .breadcrumb {
        padding: 12px 0;
    }

    .breadcrumb-list {
        font-size: 11px;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 6px 1px;
    }
}



/* ========================================
   BUTTONS (btn--, recruit pages等)
======================================== */
.btn {
    display: inline-block;
    letter-spacing: 0.1em;
    border-radius: 3px;
    text-align: center;
    min-width: 150px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn--primary {
    background-color: var(--clr-main, #333);
    color: #fff;
    border: 1px solid var(--clr-main, #333);
}

.btn--primary:hover {
    opacity: 0.8;
}

.btn--outline {
    border: 1px solid var(--clr-main, #333);
    background-color: transparent;
    color: var(--clr-main, #333);
}

.btn--outline:hover {
    background-color: var(--clr-main, #333);
    color: #fff;
}

.btn a {
    display: block;
    padding: 10px 28px;
    color: inherit;
    text-decoration: none;
}

.btn-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 599px) {
    .btn-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
}



/* ========================================
   COMPANY PAGE
======================================== */
.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.company-table tr+tr {
    border-top: none;
}

.company-table th,
.company-table td {
    padding: 16px 20px;
    text-align: left;
    vertical-align: top;
}

.company-table th {
    width: 180px;
    font-weight: 600;
    background-color: #f5f5f5;
    white-space: nowrap;
    font-family: "Noto Serif JP",
        serif;

}

.salon-list-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
}

.salon-list-item a {
    display: block;
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.salon-list-item a:hover {
    background-color: #333;
    color: #fff;
}

.owner-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.owner-img {
    width: 30%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.owner-img .img {
    position: relative;
}

.owner-img .img img {
    border-radius: 10px;
}

.owner-img .img::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 15px;
    left: 15px;
    border-bottom: 5px solid #eee;
    border-right: 5px solid #eee;
    border-radius: 0 0 10px 0;
}

.owner-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.owner-role {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.05em;
    margin-bottom: 0.3em;
}

.owner-name {
    font-size: 28px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 1.5em;
}

.owner-sub {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1em;
}

.timeline {
    list-style: none;
}

.timeline>li {
    overflow: hidden;
    margin: 0;
    position: relative;
}

.timeline-date {
    width: 110px;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
}

.timeline-content {
    width: calc(100% - 110px);
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.timeline-content h5 {
    font-family: "Noto Serif JP",
        serif;
    font-weight: 700;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
}

.timeline-content div {
    font-size: 14px;
    color: #888;
}

.timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #6fc173;
    position: absolute;
    left: 106px;
    top: calc(20px + .3em);
    border-radius: 100%;
}

.map-wrap {
    border-radius: 10px;
    overflow: hidden;
}

.map-wrap iframe {
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    .company-table th {
        width: 130px;
        padding: 12px 15px;
    }

    .company-table td {
        padding: 12px 15px;
    }

    .owner-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .owner-img {
        width: 60%;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 599px) {
    .company-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 4px;
    }

    .company-table td {
        display: block;
        width: 100%;
        padding-top: 4px;
        font-size: 14px;
    }

    .company-table tr {
        display: block;
        border-bottom: 1px solid #ddd;
    }

    .owner-img {
        width: 100%;
        max-width: 240px;
    }

    .timeline-date {
        font-size: 14px;
        width: 90px;
    }

    .timeline-content {
        width: calc(100% - 90px);
        float: left;
        border-left: 3px #e5e5d1 solid;
        padding-left: 20px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .timeline-content:before {
        left: 86px;
        top: calc(20px + .1em);
        border-radius: 100%;
    }
}



/* ========================================
   SALON QUALITY PAGE
======================================== */
.reason-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.reason-card {
    width: calc(25% - 15px);
    text-align: center;
}

.reason-card .img {
    border-radius: 10px;
    overflow: hidden;
}

.reason-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-top: 0.8em;
    line-height: 1.4;
}

.reason-card-desc {
    font-size: 14px;
    color: #666;
    margin-top: 0.5em;
    line-height: 1.7;
}

.tdq-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tdq-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 30px 24px;
    background-color: #f8f5f0;
    border-radius: 10px;
    min-width: 200px;
}

.tdq-letter {
    font-family: "Noto Serif JP", serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: #333;
    margin-bottom: 0.3em;
}

.tdq-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
}

.tdq-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .reason-card {
        width: calc(50% - 10px);
    }

    .tdq-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 599px) {
    .reason-card {
        width: 100%;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .reason-card .img {
        width: 80px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
    }
}



/* ========================================
   MENU PAGE
======================================== */
.menu-tab-nav {
    margin-bottom: 60px;
}

.menu-tab-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-tab-list a {
    display: inline-block;
    padding: 7px 20px;
    font-size: 12px;
    letter-spacing: 0.1em;
    border: 1px solid #ccc;
    border-radius: 20px;
    color: #555;
}

.menu-tab-list a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.menu-category {
    margin-bottom: 80px;
    scroll-margin-top: 100px;
}

.menu-cat-title {
    font-family: "Noto Serif JP", serif;
    font-size: 38px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-bottom: 0.4em;
    margin-bottom: 1em;
    border-bottom: 2px solid #222;
}

.menu-table {
    width: 100%;
    border-collapse: collapse;
}

.menu-table th {
    padding: 18px 10px 0 0;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.menu-table td {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

.menu-table thead th {
    background-color: #f7f5f2;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.1em;
    color: #777;
    text-transform: uppercase;
    padding: 10px 20px;
}

.menu-table th {
    text-align: left;
    font-weight: normal;
    width: 65%;
}

.menu-table td {
    width: 35%;
}

.menu-table tbody tr:last-child th,
.menu-table tbody tr:last-child td {
    border-bottom: none;
}

.menu-table tbody tr:hover {
    background-color: #fafafa;
}

.menu-name {
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    display: block;
}

.menu-desc {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    line-height: 1.7;
    font-weight: normal;
}

.menu-price {
    font-family: "Noto Serif JP", serif;
    font-size: 15px;
    color: #333;
    line-height: 2;
}

.mark-hoshi {
    color: #a07800;
    font-weight: 900;
}

.mark-kome {
    color: #999;
}

.mark-sankaku {
    color: #1a6bb5;
}

.menu-note {
    font-size: 12px;
    color: #777;
    margin-top: 14px;
    padding: 10px 16px;
    background-color: #f7f5f2;
    border-left: 3px solid #ddd;
    line-height: 1.8;
}

.menu-note+.menu-note {
    margin-top: 6px;
}

.menu-table--gender {
    table-layout: fixed;
}

.menu-table--gender thead th:first-child,
.menu-table--gender th[scope="row"] {
    width: 56%;
}

.menu-table--gender thead th:not(:first-child) {
    text-align: center;
    width: 22%;
}

.menu-table--gender td {
    width: 22%;
    text-align: center;
}

@media (max-width: 1024px) {
    .menu-cat-title {
        font-size: 28px;
    }

    .menu-category {
        margin-bottom: 60px;
    }

    .menu-tab-nav {
        margin-bottom: 40px;
    }
}

@media (max-width: 599px) {
    .menu-cat-title {
        font-size: 22px;
    }

    .menu-tab-list a {
        font-size: 11px;
        padding: 5px 12px;
    }

    .menu-table th {
        padding: 12px 10px 0 0;
    }

    .menu-table td {
        padding: 12px 0px;
    }

    .menu-name {
        font-size: 14px;
    }

    .menu-price {
        font-size: 14px;
    }

    .menu-category {
        margin-bottom: 40px;
        scroll-margin-top: 80px;
    }

    .menu-table--gender td {
        padding: 10px 6px;
        font-size: 12px;
    }
}



/* ========================================
   SHOP LIST PAGE
======================================== */
.shoplist-anchor-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.shoplist-anchor-nav a {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.shoplist-anchor-nav a:hover {
    background-color: #333;
    color: #fff;
}

.shop-section-title {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #333;
}

.service-badge-list,
.facility-badge-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
}

.service-badge,
.facility-badge {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 2px;
    border: 1px solid;
    white-space: nowrap;
}

.service-badge {
    border-color: #555;
    color: #555;
}

.facility-badge {
    border-color: #aaa;
    color: #888;
    background-color: #f5f5f5;
}



/* ========================================
   SHOP DETAIL PAGE
======================================== */
.shop-hero-swiper {
    height: 500px;
}

.shop-hero-swiper .swiper-slide {
    overflow: hidden;
}

.shop-hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.shop-info-table {
    width: 100%;
    border-collapse: collapse;
}

.shop-info-table th,
.shop-info-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

.shop-info-table th {
    width: 150px;
    font-weight: 600;
    background-color: #f5f5f5;
    white-space: nowrap;
}

.shop-strength-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.shop-strength-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    padding: 24px 16px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

.shop-strength-icon {
    font-size: 30px;
    margin-bottom: 0.5em;
    color: #555;
}

.shop-strength-title {
    font-size: 20px;
    font-weight: 600;
    padding-left: .5em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    background-image: repeating-linear-gradient(90deg, #eeeeee, #eeeeee 5px, transparent 5px, transparent 10px);
}

.shop-strength-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .shop-hero-swiper {
        height: 350px;
    }

    .shop-info-table th {
        width: 120px;
        padding: 10px 12px;
    }

    .shop-info-table td {
        padding: 10px 12px;
    }

    .shop-strength-content {
        display: contents;
    }

    .shop-strength-title {
        order: 1;
        width: 100%;
    }

    .shop-strength-img {
        width: 70%;
        max-width: 600px;
        order: 2;
    }

    .shop-strength-content .w-txt {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 599px) {
    .shop-hero-swiper {
        height: 250px;
    }

    .shop-strength-cards {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .shop-info-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 4px;
    }

    .shop-info-table td {
        display: block;
        padding-top: 4px;
    }

    .shop-info-table tr {
        display: block;
        border-bottom: 1px solid #ddd;
    }

    .shop-strength-title {
        font-size: 18px;
    }
}



/* ========================================
   STAFF LIST PAGE
======================================== */
.staff-filter {
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 24px;
}

.staff-filter-group+.staff-filter-group {
    margin-top: 16px;
}

.staff-filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
}

.staff-filter-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.staff-filter-checks label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
}

.staff-filter-checks label:hover {
    border-color: #333;
}

.staff-filter-checks input[type="checkbox"] {
    cursor: pointer;
}

.staff-list-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.staff-card-item {
    width: calc(25% - 15px);
}

.staff-card-link {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #eee;
}

.staff-card-link:hover {
    border-color: #333;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.staff-card-info {
    padding: 12px;
    background-color: #fff;
}

.staff-card-name {
    font-weight: 600;
    font-size: 15px;
}

.staff-card-role,
.staff-card-shop {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

@media (max-width: 1024px) {
    .staff-filter {
        padding: 16px;
    }

    .staff-card-item {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 599px) {
    .staff-card-item {
        width: calc(50% - 10px);
    }

    .staff-filter-checks label {
        font-size: 11px;
        padding: 3px 8px;
    }
}



/* ========================================
   STAFF DETAIL PAGE
======================================== */
.staff-profile-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.staff-profile-img {
    width: 35%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.staff-profile-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.staff-profile-name {
    font-size: 32px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.staff-profile-role {
    font-size: 14px;
    color: #888;
    margin-top: 0.3em;
}

.staff-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5em;
}

.staff-spec-table th,
.staff-spec-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.staff-spec-table th {
    width: 120px;
    font-weight: 600;
    background-color: #f5f5f5;
    white-space: nowrap;
}

.staff-msg-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.staff-msg-imgs .img {
    width: calc(50% - 8px);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .staff-profile-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .staff-profile-img {
        width: 60%;
        max-width: 280px;
    }
}

@media (max-width: 599px) {
    .staff-profile-img {
        width: 100%;
        max-width: 220px;
    }

    .staff-profile-name {
        font-size: 24px;
    }
}



/* ========================================
   PRODUCT LIST / DETAIL
======================================== */
.product-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    width: calc(25% - 15px);
}

.product-card-link {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-card-link:hover {
    border-color: #333;
}

.product-card-info {
    padding: 12px;
}

.product-card-brand {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-card-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.product-card-price {
    font-size: 14px;
    color: #555;
    margin-top: 4px;
    font-family: "Noto Serif JP", serif;
}

.product-detail-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-detail-img {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product-detail-brand {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-detail-name {
    font-size: 26px;
    font-weight: 600;
    margin-top: 0.3em;
    line-height: 1.4;
}

.product-detail-price {
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    color: #333;
    margin-top: 0.8em;
}

.product-detail-desc {
    margin-top: 1.5em;
    line-height: 2;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .product-card {
        width: calc(33.333% - 14px);
    }

    .product-detail-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .product-detail-img {
        width: 70%;
        max-width: 300px;
    }
}

@media (max-width: 599px) {
    .product-card {
        width: calc(50% - 10px);
    }

    .product-detail-img {
        width: 100%;
        max-width: 280px;
    }
}



/* ========================================
   GALLERY PAGE / DETAIL
======================================== */
.gallery-year-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.gallery-year-tab a {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid #333;
    border-radius: 20px;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.gallery-year-tab a:hover,
.gallery-year-tab.active a {
    background-color: #333;
    color: #fff;
}

.gallery-season-title {
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    padding-bottom: 0.5em;
    border-bottom: 1px solid #ddd;
}

.gallery-item-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item-grid .img {
    width: calc(20% - 8px);
}

.gallery-item-grid .img a {
    display: block;
}

.gallery-item-grid .img a:hover {
    opacity: 0.8;
}

.gallery-detail-imgs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-detail-imgs .img {
    width: calc(50% - 5px);
    border-radius: 8px;
    overflow: hidden;
}

.gallery-detail-info {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid #eee;
}

@media (max-width: 1024px) {
    .gallery-item-grid .img {
        width: calc(25% - 8px);
    }
}

@media (max-width: 599px) {
    .gallery-item-grid .img {
        width: calc(33.333% - 7px);
    }

    .gallery-detail-imgs .img {
        width: 100%;
    }
}



/* ========================================
   RECRUIT PAGES (共通色変数)
======================================== */

body.recruit-page .bg-left::after {
    background-color: var(--clr-bg);
}

body.recruit-page .feature-letter {
    color: var(--clr-accent);
}

.recruit-position-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.recruit-position-card {
    width: 48%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    background-color: #fff;
    position: relative;
}

.v2 .recruit-position-card {
    width: calc(33% - 20px);
}

.recruit-position-card .deco-text {
    font-size: 3em;
    position: absolute;
    right: 0;
    width: 100%;
    text-align: center;
    font-weight: 900;
    top: 1%;
    opacity: .1;
}

.recruit-position-content {
    padding: 16px;
}

.career-steps,
.academy-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.career-step,
.academy-step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    min-width: 180px;
}

body.recruit-page .career-step {
    background-color: var(--clr-bg);
}

body.recruit-page .academy-step {
    background-color: #fff;
    border: 2px solid var(--clr-bg);
}

.career-step-num,
.academy-step-num {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #888;
}

body.recruit-page .career-step-num,
body.recruit-page .academy-step-num {
    color: var(--clr-accent);
}

.career-step-arrow,
.academy-step-arrow {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 20px;
    color: #ccc;
}

.welfare-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.welfare-card {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    min-width: 180px;
}

body.recruit-page .welfare-card {
    background-color: #eee;
}

.welfare-icon {
    font-size: 32px;
    color: #888;
}

body.recruit-page .welfare-icon {
    color: var(--clr-accent);
}

.staffvoice-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.staffvoice-card {
    width: calc(33.333% - 14px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    background-color: #fff;
}

.staffvoice-content {
    padding: 14px;
}

.staffvoice-name {
    font-size: 16px;
    font-weight: 600;
}



/* ========================================
   RECRUIT DETAIL PAGES
======================================== */
.welfare-detail-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.welfare-detail-card {
    width: calc(33% - 12px);
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .5);
}

body.recruit-page .welfare-detail-card {
    background-color: var(--clr-bg);
}

.welfare-detail-icon {
    font-size: 28px;
    color: #888;
}

body.recruit-page .welfare-detail-icon {
    color: var(--clr-accent);
}

.welfare-detail-title {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0.5em;
}

.welfare-detail-desc {
    font-size: 12px;
    color: #888;
    margin-top: 0.3em;
    line-height: 1.6;
}

.welfare-family-content {
    padding: 30px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

body.recruit-page .welfare-family-content {
    background-color: var(--clr-bg);
}

.welfare-family-content .img {
    overflow: hidden;
    border-radius: 8px;
}

.staffvoice-detail-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.staffvoice-detail-img {
    width: 260px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.mini .staffvoice-detail-img{
  width:80px;
}

.staffvoice-detail-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.staffvoice-detail-name {
    font-size: 24px;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.staffvoice-detail-role {
    font-size: 14px;
    color: #888;
    margin-top: 0.3em;
    margin-bottom: 1.5em;
}

.staffvoice-question {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

body.recruit-page .staffvoice-question {
    color: var(--clr-main);
}

.staffvoice-answer {
    font-size: 14px;
    line-height: 2;
    color: #555;
}

.recruitment-table {
    width: 100%;
    border-collapse: collapse;
}

.recruitment-table th,
.recruitment-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eee;
    vertical-align: top;
    text-align: left;
    font-size: 14px;
}

.recruitment-table th {
    width: 200px;
    font-weight: 600;
    background-color: #f5f5f5;
    white-space: nowrap;
}

body.recruit-page .recruitment-table th {
    background-color: var(--clr-bg);
}

.academy-flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
}

.academy-flow-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.academy-flow-num {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: #ddd;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 60px;
    text-align: center;
}

body.recruit-page .academy-flow-num {
    color: var(--clr-accent);
    opacity: 0.4;
}

.academy-flow-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.academy-flow-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.5em;
}

@media (max-width: 1024px) {
    .recruit-position-card {
        width: calc(50% - 10px);
    }

    .welfare-detail-card {
        width: calc(50% - 8px);
    }

    .staffvoice-card {
        width: calc(50% - 10px);
    }

    .staffvoice-detail-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .staffvoice-detail-img {
        width: 100%;
        max-width: 250px;
    }

    .career-steps,
    .academy-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: stretch;
    }

    .career-step-arrow,
    .academy-step-arrow {
        text-align: center;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .recruitment-table th {
        width: 150px;
    }
}

@media (max-width: 599px) {
    .recruit-position-card {
        width: 100%;
    }

    .welfare-card {
        min-width: unset;
        width: 100%;
    }

    .staffvoice-card {
        width: 100%;
    }

    .welfare-detail-card {
        width: 100%;
    }

    .recruitment-table th {
        display: block;
        width: 100%;
        border-bottom: none;
        padding-bottom: 4px;
    }

    .recruitment-table td {
        display: block;
        padding-top: 4px;
    }

    .recruitment-table tr {
        display: block;
        border-bottom: 1px solid #ddd;
    }

    .recruit-position-cards {
        gap: 20px;
    }

    .v2 .recruit-position-card {
        width: 100%;
    }

    .welfare-card {
        flex: auto;
    }
}



/* ========================================
   KIDS ROOM PAGE
======================================== */
.kidsroom-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.kidsroom-card {
    width: calc(33.333% - 14px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.kidsroom-card-content {
    padding: 14px;
}

.kidsroom-card-title {
    font-size: 15px;
    font-weight: 600;
}

.kidsroom-card-shop {
    font-size: 12px;
    color: #888;
    margin-top: 3px;
}

.kidsroom-price-table {
    width: 100%;
    border-collapse: collapse;
}

.kidsroom-price-table th,
.kidsroom-price-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.kidsroom-price-table thead th {
    background-color: #333;
    color: #fff;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .kidsroom-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 599px) {
    .kidsroom-card {
        width: 100%;
    }
}



/* ========================================
   C-1 GRAND PRIX PAGE
======================================== */
.c1-report-img {
    aspect-ratio: 16 / 7;
    border-radius: 4px;
    overflow: hidden;
}

.c1-report-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.c1-work {
    display: block;
}

.c1-work a {
    display: block;
}

.c1-work img {
    width: 100%;
    display: block;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
}

.c1-work a:hover {
    opacity: 0.8;
}




/* ========================================
   CONTACT PAGE
======================================== */
.contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.contact-item dt {
    width: 200px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
}

.contact-item dd {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.contact-item input[type="text"],
.contact-item input[type="email"],
.contact-item input[type="tel"],
.contact-item textarea,
.contact-item select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact-item input:focus,
.contact-item textarea:focus,
.contact-item select:focus {
    outline: none;
    border-color: #333;
}

.contact-item textarea {
    resize: vertical;
    min-height: 150px;
}

.must {
    display: inline-block;
    font-size: 11px;
    background-color: #d44;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

.any {
    display: inline-block;
    font-size: 11px;
    background-color: #999;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
}

.contact-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 2em;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact-btns button {
    display: inline-block;
    padding: 14px 40px;
    letter-spacing: 0.1em;
    cursor: pointer;
    border-radius: 3px;
    font-size: 15px;
    border: 1px solid #333;
    background-color: #333;
    color: #fff;
    min-width: 200px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-family: inherit;
}

.contact-btns button:hover {
    opacity: 0.8;
}

.contact-btns .btn-01.-back button {
    background-color: #fff;
    color: #333;
}

.contact-btns .btn-01.-back button:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 1024px) {
    .contact-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 8px;
    }

    .contact-item dt {
        width: 100%;
        padding-top: 0;
    }
}

@media (max-width: 599px) {
    .contact-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }

    .contact-btns button {
        width: 100%;
        min-width: unset;
    }
}



/* ========================================
   NEWS / BLOG DETAIL
======================================== */
.article-header {
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
}

.article-cat-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0.8em;
}

.article-cat {
    font-size: 12px;
    padding: 2px 10px;
    border: 1px solid #333;
    border-radius: 20px;
}

.article-title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.article-date {
    font-size: 14px;
    color: #888;
    font-family: "Noto Serif JP", serif;
    margin-top: 0.8em;
}

.article-body {
    line-height: 2;
    font-size: 15px;
    padding: 2em 0;
}

.article-body h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 0.8em;
    padding-left: 0.8em;
    border-left: 3px solid #333;
}

.article-body h3 {
    font-size: 17px;
    font-weight: 600;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

.article-prev-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 1.5em 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.article-prev-next a {
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-prev-next a:hover {
    text-decoration: underline;
}

.related-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
}

.related-post-item {
    width: calc(33.333% - 10px);
}

.related-post-item a {
    display: block;
}

.related-post-item a:hover {
    opacity: 0.8;
}

.related-post-title {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.5;
}

.related-post-date {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
    font-family: "Noto Serif JP", serif;
}

@media (max-width: 599px) {
    .article-title {
        font-size: 20px;
    }

    .related-post-item {
        width: calc(50% - 8px);
    }
}



/* ========================================
   SERVICE-SUB (共通)
======================================== */
.service-sub {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.1em;
}



/* ========================================
   ANCHOR NAV (共通アンカーナビ)
======================================== */
.anchor-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.anchor-nav-item a {
    display: block;
    padding: 16px 24px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.05em;
    min-width: 120px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.anchor-nav-item a:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.anchor-nav-item a span {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.anchor-nav-item a:hover span {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 599px) {
    .anchor-nav-item a {
        padding: 10px 16px;
        min-width: 90px;
        font-size: 14px;
    }
}



/* ========================================
   REASON LIST (03salon-quality)
======================================== */
.reason-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
}

.reason-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.reason-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.reason-img {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.reason-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 10px;
}

.reason-title {
    font-size: 20px;
    font-weight: 600;
    padding-left: .5em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    border-left: double 10px #333;
    border-bottom: 1px solid #eee;
}

@media (max-width: 1024px) {

    .reason-item,
    .reason-item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .reason-content {
        display: contents;
    }

    .reason-title {
        order: 1;
        width: 100%;
    }

    .reason-img {
        width: 70%;
        max-width: 600px;
        order: 2;
    }

    .reason-content .w-txt {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 599px) {
    .reason-list {
        gap: 40px;
    }

    .reason-img {
        width: 100%;
        max-width: unset;
    }

    .feature-item {
        align-items: center;
    }

    .reason-title {
        font-size: 18px;
        border-left: double 8px #333;
    }

    .feature-name>span {
        font-size: 14px;
        display: block;
    }
}



/* ========================================
   SERVICE DETAIL LIST (04service)
======================================== */
.service-detail-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

.service-detail-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-detail-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.service-detail-img {
    width: 35%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.service-detail-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 10px;
}

.service-detail-title {
    font-size: 20px;
    font-weight: 600;
    padding-left: .8em;
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    position: relative;
    border-bottom: 3px solid #030303;
}

.service-detail-title::before {
    position: absolute;
    top: 0;
    left: .3em;
    transform: rotate(55deg);
    height: 11px;
    width: 12px;
    background: #030303;
    content: '';
}

.service-detail-title::after {
    position: absolute;
    transform: rotate(15deg);
    top: .6em;
    left: 0;
    height: 8px;
    width: 8px;
    background: #030303;
    content: '';
}

@media (max-width: 1024px) {

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .service-detail-content {
        display: contents;
    }

    .service-detail-title {
        order: 1;
        width: 100%;
    }

    .service-detail-img {
        width: 70%;
        max-width: 600px;
        order: 2;
    }

    .service-detail-content .w-txt {
        order: 3;
        width: 100%;
    }
}

@media (max-width: 599px) {
    .service-detail-img {
        width: 100%;
        max-width: unset;
    }

    .service-detail-title {
        font-size: 18px;
    }
}



/* ========================================
   SHOP INFO LAYOUT (07shop)
======================================== */
.shop-info-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.shop-info-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.shop-name-sub {
    color: #aaa;
    letter-spacing: 0.2em;
    font-family: "Noto Serif JP", serif;
}

.shop-badge-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.shop-badge-list>span {
    font-size: 11px;
    padding: 2px 10px;
    border: 1px solid #555;
    border-radius: 3px;
    color: #555;
    background-color: #fff;
}

.shop-badge-list>span.Hair,
.shop-badge-list>span.eyelash,
.shop-badge-list>span.nail,
.shop-badge-list>span.cut,
.shop-badge-list>span.private{

    border-color: #aaa;
    color: #888;
    background-color: #f5f5f5;
}

.shop-comment {
    font-size: 14px;
    color: #666;
}

.shop-info-table dl {
    display: flex;
    border-top: 1px solid #eee;
    flex-wrap:wrap;
}

.shop-info-table dt,
.shop-info-table dd {
    padding: 10px 14px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}

.shop-info-table dt {
    font-weight: 600;
    background-color: #f5f5f5;
    font-size: 14px;
    width:120px;
}

.shop-info-table dd {
   width:calc(100% - 120px);
}

.shop-sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.shop-sns-item {
    font-size: 26px;
    color: #333;
    display: block;
    line-height: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.shop-sns-item:hover {
    color: #888;
}

.shop-info-cta {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 200px;
}

@media (max-width: 1024px) {
    .shop-info-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .shop-info-cta {
        width: 100%;
    }
}

@media (max-width: 599px) {
    .shop-info-table dl {
        -ms-grid-columns: 80px 1fr;
        grid-template-columns: 80px 1fr;
    }

    .shop-info-table dt,
    .shop-info-table dd {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .shop-info-table dt {
    width:100%;
}

.shop-info-table dd {
   width:100%;
}

.shop-info-main{
  flex:auto;
  width:100%;
}
}



/* ========================================
   SHOP STRENGTH LIST (07shop — 画像テキスト交互)
======================================== */
.shop-strength-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
}

.shop-strength-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.shop-strength-item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.shop-strength-img {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.shop-strength-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 10px;
}

@media (max-width: 1024px) {

    .shop-strength-item,
    .shop-strength-item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .shop-strength-img {
        width: 70%;
        max-width: 300px;
    }
}

@media (max-width: 599px) {
    .shop-strength-list {
        gap: 40px;
    }

    .shop-strength-img {
        width: 100%;
        max-width: unset;
    }
}



/* ========================================
   STAFF CARD LIST (07shop — 店舗スタッフグリッド)
======================================== */
.staff-card-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.staff-card-list .staff-card-item {
    width: calc(20% - 12px);
}

.staff-card-list .staff-card-item a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.staff-card-list .staff-card-item a:hover {
    border-color: #333;
}

.staff-card-content {
    padding: 8px 10px;
}

.staff-role {
    font-size: 12px;
    color: #888;
}

.staff-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .staff-card-list .staff-card-item {
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 599px) {
    .staff-card-list .staff-card-item {
        width: calc(50% - 8px);
    }
}



/* ========================================
   STAFF SEARCH BOX (08stafflist)
======================================== */
.staff-search-box {
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 30px;
}

.staff-search-group+.staff-search-group {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.staff-search-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.staff-serch-box input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.staff-search-checks {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.staff-check {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.staff-check:hover {
    border-color: #333;
}

.staff-check input[type="checkbox"] {
    cursor: pointer;
}

.staff-search-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.btn-search {
    padding: 10px 32px;
    background-color: #333;
    color: #fff;
    border: 1px solid #333;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: inherit;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-search:hover {
    opacity: 0.8;
}

.btn-reset {
    padding: 10px 32px;
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    border-radius: 3px;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-family: inherit;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-reset:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 599px) {
    .staff-search-box {
        padding: 16px;
    }

    .staff-check {
        font-size: 11px;
        padding: 3px 8px;
    }
}



/* ========================================
   STAFFLIST CARDS (08stafflist — 全スタッフグリッド)
======================================== */
.stafflist-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.stafflist-card {
    width: calc(20% - 12px);
}

.stafflist-card a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.stafflist-card a:hover {
    border-color: #333;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.stafflist-card-content {
    padding: 10px;
    background-color: #fff;
}

.staff-salon {
    font-size: 11px;
    color: #aaa;
    margin-top: 2px;
}

@media (max-width: 1024px) {
    .stafflist-card {
        width: calc(25% - 12px);
    }
}

@media (max-width: 599px) {
    .stafflist-card {
        width: calc(50% - 8px);
    }
}



/* ========================================
   STAFF PROFILE (09staff — スタッフ詳細)
======================================== */
.staff-profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.staff-profile .staff-profile-img {
    width: 35%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.staff-profile .staff-profile-img img {
    width: 100%;
    display: block;
}

.staff-profile-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.staff-role-badge {
    display: inline-block;
    font-size: 12px;
    padding: 2px 12px;
    border: 1px solid #333;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.chip-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
}

.chip-list>span {
    font-size: 12px;
    padding: 3px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background-color: #fff;
    white-space: nowrap;
}

.chip--accent {
    border-color: #333;
    background-color: #333;
    color: #fff;
}

body.recruit-page .chip--accent {
    border-color: var(--clr-main);
    background-color: var(--clr-main);
}

.award-badge {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #c9a227;
    padding: 4px 10px;
    background-color: #fffaf0;
    border: 1px solid #e8d5a3;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .staff-profile {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .staff-profile .staff-profile-img {
        width: 100%;
        max-width: 600px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 599px) {
    .staff-profile .staff-profile-img {
        width: 100%;
    }
}



/* ========================================
   STAFF MESSAGE WRAP (09staff)
======================================== */
.staff-message-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.staff-message-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 15px;
    line-height: 2;
}

.staff-message-imgs {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 280px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .staff-message-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .staff-message-imgs {
        width: 100%;
        max-width: 400px;
    }
}



/* ========================================
   PRODUCT CARDS (10product-list)
======================================== */
.product-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-cards .product-card {
    width: calc(25% - 15px);
}

.product-cards .product-card a {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.product-cards .product-card a:hover {
    border-color: #333;
}

.product-card-content {
    padding: 12px;
    background-color: #fff;
}

.product-category {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.05em;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4;
}

.product-price {
    font-size: 14px;
    color: #555;
    font-family: "Noto Serif JP", serif;
}

.product-more {
    font-size: 12px;
    color: #888;
    letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
    .product-cards .product-card {
        width: calc(33.333% - 14px);
    }
}

@media (max-width: 599px) {
    .product-cards .product-card {
        width: calc(50% - 10px);
    }
}



/* ========================================
   PRODUCT DETAIL (11product)
======================================== */
.product-detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-detail .product-detail-img {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.product-detail .product-detail-img img {
    width: 100%;
    display: block;
}

.product-detail-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.product-category-badge {
    display: inline-block;
    font-size: 11px;
    padding: 2px 10px;
    border: 1px solid #aaa;
    border-radius: 3px;
    color: #888;
    letter-spacing: 0.05em;
}

.product-meta-list {
    padding: 0;
    margin: 0;
}

.product-meta-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.product-meta-item dt {
    font-weight: 600;
    font-size: 14px;
    width: 100px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-meta-item dd {
    font-size: 14px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 1024px) {
    .product-detail {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 30px;
    }

    .product-detail .product-detail-img {
        width: 70%;
        max-width: 300px;
    }
}

@media (max-width: 599px) {
    .product-detail .product-detail-img {
        width: 100%;
        max-width: 280px;
        margin:0 auto;
    }
}



/* ========================================
   GALLERY TAB NAV / CONTENT (12gallery)
======================================== */
.gallery-tab-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 30px;
    justify-content: center;
}

.gallery-tab-btn {
    padding: 5px 18px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    cursor: pointer;
    background-color: transparent;
    color: #333;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.gallery-tab-btn:hover,
.gallery-tab-btn.active {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.gallery-tab-content {
    display: none;
}

.gallery-tab-content.active {
    display: block;
}

.gallery-season {
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.gallery-season:first-child {
    padding-top: 0;
}

.gallery-rank-section {
    margin-top: 20px;
}

.gallery-rank-label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gallery-rank-label.rank-1 {
    color: #B67B03;
}

.gallery-rank-label.rank-2 {
    color: #757575;
}

.gallery-rank-label.rank-3 {
    color: #b64b03;
}

.gallery-rank1-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}

.gallery-rank1-flex .gallery-item {
    width: 60%;
}

.gallery-rank1-flex .space-block {
    width: 35%;
}

.gallery-rank1-flex .space-block .gallery-item {
    width: 100%;

}

.gallery-item {
    position: relative;
}

.gallery-item.no1::after {
    content: "1st";
    position: absolute;
    left: -10px;
    top: -10px;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    padding-bottom: .25em;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    border-radius: 50%;
    color: #fff;
    background: repeating-linear-gradient(45deg, #B67B03 10%, #DAAF08 20%, #FEE9A0 30%, #DAAF08 40%, #B67B03 50%);
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.2);
}

.gallery-item.no2::after {
    content: "2nd";
    position: absolute;
    left: -5px;
    top: -5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-bottom: .25em;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    border-radius: 50%;
    color: #fff;
    background: repeating-linear-gradient(45deg, #757575 10%, #9E9E9E 20%, #E8E8E8 30%, #9E9E9E 40%, #757575 50%);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.gallery-item.no3::after {
    content: "3rd";
    position: absolute;
    left: -5px;
    top: -5px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    padding-bottom: .25em;
    font-family: "Noto Serif JP", serif;
    font-weight: 900;
    border-radius: 50%;
    color: #fff;
    background: repeating-linear-gradient(45deg, #b64b03 10%, #da6708 20%, #fed5a0 30%, #da6708 40%, #b64b03 50%);
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}


.gallery-item a {
    display: block;
    position: relative;
}

.gallery-item a:hover {
    opacity: 0.85;
}

.gallery-stylist {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 1024px) {
    .gallery-rank-grid .gallery-item {
        width: calc(33.333% - 7px);
    }
}

@media (max-width: 599px) {

    .gallery-rank1-grid .gallery-item,
    .gallery-rank-grid .gallery-item {
        width: calc(50% - 5px);
    }

    .gallery-tab-btn {
        font-size: 12px;
        padding: 4px 12px;
    }

    .gallery-item.no1::after {
        left: -5px;
        top: -5px;
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

}



/* ========================================
   GALLERY HOVER SWAP / CARD INFO (12gallery リデザイン)
======================================== */

/* .gallery-item a の overflow を visible に変更してカード下部の info を表示 */
.gallery-item a {
    border: 1px solid #eee;
}

.gallery-item a:hover {
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    border-color: #ddd;
}

/* 画像ラッパー：ホバーで2枚目に切り替わる */
.gal-imgs {
    position: relative;
    overflow: hidden;
    border-radius: 7px 7px 0 0;
    display: block;
}

.gal-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.gal-img-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

a:hover .gal-img-hover {
    opacity: 1;
}

/* カード情報エリア（画像下、常時表示） */
.gal-info {
    padding: 8px 8px 10px;
    background-color: #fff;
    border-radius: 0 0 7px 7px;
}

.gal-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

/* 部門バッジ */
.gal-division {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 7px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.gal-division--female {
    background-color: #fce4ec;
    color: #c2185b;
    border: 1px solid #f48fb1;
}

.gal-division--male {
    background-color: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

/* gal-info 内の順位表示（上書き） */
.gal-info .gal-prise {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-top: 0;
}

.gal-info .gal-prise>span {
    font-size: 14px;
    font-weight: 700;
    color: #555;
}

.gal-info .gal-prise>span::after {
    content: "位";
    font-size: 10px;
    margin-left: 1px;
    color: #777;
    font-weight: 400;
}

.gal-info .gal-prise>span.prise-1 {
    font-size: 15px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gal-info .gal-prise>span.prise-2 {
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #757575 0.1em, #9E9E9E 0.2em, #E8E8E8 0.3em, #9E9E9E 0.4em, #757575 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gal-info .gal-prise>span.prise-3 {
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #b64b03 0.1em, #da6708 0.2em, #fed5a0 0.3em, #da6708 0.4em, #b64b03 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gal-info .gal-prise>span.ノミネート {
    font-size: 10px;
    font-weight: 600;
    color: #777;
    background: #f0f0f0;
    padding: 1px 6px;
    border-radius: 2px;
}

.gal-info .gal-prise>span.ノミネート::after {
    display: none;
}

.gal-staff-name {
    font-size: 12px;
    color: #555;
    margin-top: 4px;
}

.gal-season-label {
    font-size: 11px;
    color: #aaa;
    letter-spacing: 0.03em;
    margin-top: 1px;
}

.gal-title-text {
    font-size: 12px;
    color: #333;
    line-height: 1.5;
    margin-top: 4px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.gal-desc {
    font-size: 11px;
    color: #777;
    line-height: 1.6;
    margin-top: 3px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* 4〜10位・ノミネートのグリッド */
.gallery-cards,
.gallery-entry-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-cards .gallery-item,
.gallery-entry-cards .gallery-item {
    width: calc(25% - 12px);
}

@media (max-width: 1024px) {

    .gallery-cards .gallery-item,
    .gallery-entry-cards .gallery-item {
        width: calc(33.333% - 10px);
    }
}

@media (max-width: 599px) {
    .gallery-rank1-flex {
        display: block;
    }

    .gallery-rank1-flex .gallery-item,
    .gallery-rank1-flex .space-block {
        width: 100%;
    }

    .gallery-rank1-flex .space-block {
        display: flex;
        gap: 10px;
        margin-top: 10px;
    }

    .gallery-rank1-flex .space-block .gallery-item {
        width: calc(50% - 5px);
        margin-bottom: 0 !important;
    }

    .gallery-cards .gallery-item,
    .gallery-entry-cards .gallery-item {
        width: calc(50% - 8px);
    }
}

/* レコメンドセクション */
.gallery-recommend-ttl {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: #aaa;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gallery-recommend-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gallery-recommend-cards .gallery-item {
    width: calc(25% - 12px);
}

@media (max-width: 1024px) {
    .gallery-recommend-cards .gallery-item {
        width: calc(50% - 8px);
    }
}

@media (max-width: 599px) {
    .gallery-recommend-cards .gallery-item {
        width: calc(50% - 8px);
    }
}



/* ========================================
   CAREER CHART (14career)
======================================== */

.career-chart {
    background-image: repeating-linear-gradient(90deg, #eeeeee, #eeeeee 8px, transparent 8px, transparent 16px);
    padding: 60px 100px;
}

.career-chart-item {
    background-color: #f8f5f0;
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

body.recruit-page .career-chart-item {
    background-color: var(--clr-bg);
}

.career-chart-item--top {
    background-color: #333;
    color: #fff;
}


body.recruit-page .career-chart-item--top {
    background-color: var(--clr-main);
}

.career-chart-year {
    color: #aaa;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}

.career-chart-item--top .career-chart-year {
    color: rgba(255, 255, 255, 0.6);
}

.career-chart-role {
    font-size: 20px;
    font-weight: 900;
    white-space: nowrap;
    color: var(--clr-main);
    font-family: "Noto Serif JP", serif;
}

.udb {
    border-bottom: #333 double 3px;
}

.career-chart-item--top .career-chart-role {
    color: #fff;
}

.career-chart-salary {
    margin-top: 4px;
    white-space: nowrap;
}

.career-chart-item--top .career-chart-salary {
    color: rgba(255, 255, 255, 0.8);
}

.text-clr-main {
    color: var(--clr-main);
}

.career-chart-arrow {
    font-size: 30px;
    color: #ccc;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 15px;
    text-align: center;
}

body.recruit-page .career-chart-arrow {
    color: var(--clr-accent);
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .career-chart {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow-x: visible;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .career-chart-item {
        width: 100%;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .career-chart-arrow {
        padding: 4px 0;
    }

    .career-chart {
        padding: 20px;
    }
}



/* ========================================
   ALLOWANCE GRID (14career)
======================================== */
.allowance-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.allowance-item {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #f8f5f0;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

body.recruit-page .allowance-item {
    background-color: var(--clr-bg);
}

body.recruit-page .allowance-item i {
    color: var(--clr-accent);
}



/* ========================================
   CAREER STORY LIST (14career)
======================================== */
.career-story-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.career-story-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 28px 0;
    border-bottom: 1px solid #eee;
}

.career-story-item:first-child {
    border-top: 1px solid #eee;
}

.career-story-year {
    font-family: "Noto Serif JP", serif;
    color: #888;
    letter-spacing: 0.1em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    font-size: 24px;
    font-weight: 900;
}

body.recruit-page .career-story-year {
    color: var(--clr-main);
}

.career-story-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 599px) {
    .career-story-item {
        gap: 15px;
    }

    .career-story-year {
        width: 50px;
        writing-mode: vertical-rl;
        text-orientation: upright;
        background-color: #eee;
        padding: 10px;
        letter-spacing: 5px;
        text-align: center;
        vertical-align: middle;
        border-radius: 5px;
        box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .5);
    }
}



/* ========================================
   FAQ LIST (共通: career / welfare / salonmodels / kidsroom)
======================================== */
.faq-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:first-child {
    border-top: 1px solid #eee;
}

.faq-q,
.faq-a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.8;
}

.faq-q {
    font-weight: 600;
}

.faq-a {
    background-color: #fafafa;
    padding: 14px 16px;
    color: #555;
    border-top: 1px dashed #eee;
}

.faq-icon {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 900;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
    line-height: 1.6;
}

.faq-q .faq-icon {
    color: #333;
}

body.recruit-page .faq-q .faq-icon {
    color: var(--clr-main);
}

.faq-a .faq-icon {
    color: #aaa;
}

@media (max-width: 599px) {

    .faq-q,
    .faq-a {
        gap: 10px;
        font-size: 14px;
    }

    .faq-icon {
        font-size: 16px;
        width: 22px;
    }

    .en-title01 {
        font-weight: 900;
    }
}



/* ========================================
   OTHER BENEFITS GRID (14career)
======================================== */
.other-benefits-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

.other-benefits-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 30px 20px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

body.recruit-page .other-benefits-item {
    background-color: var(--clr-bg);
}

body.recruit-page .other-benefits-item i {
    color: var(--clr-accent);
}

@media (max-width: 599px) {
    .other-benefits-item {
        min-width: unset;
        width: calc(50% - 10px);
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}



/* ========================================
   OWNER MESSAGE (15welfare)
======================================== */
.owner-message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.owner-message-img {
    width: 220px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.owner-message-img img {
    width: 100%;
    display: block;
}

.owner-message-text {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 15px;
    line-height: 2;
}

@media (max-width: 1024px) {
    .owner-message {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .owner-message-img {
        width: 100%;
        max-width: 200px;
    }
}



/* ========================================
   KIDSROOM ANCHOR NAV (20kidsroom)
======================================== */
.kidsroom-anchor-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.kidsroom-anchor-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    letter-spacing: 0.05em;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.kidsroom-anchor-btn:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}



/* ========================================
   NOTICE BOX (20kidsroom)
======================================== */
.notice-box {
    padding: 20px 24px;
    background-color: #fffbe6;
    border: 1px solid #ffe58f;
    border-radius: 8px;
    border-left: 4px solid #faad14;
}

.notice-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}



/* ========================================
   HOWTO STEPS / FLOW STEPS (20kidsroom / 19salonmodels)
======================================== */
.howto-steps,
.flow-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 0;
}

.howto-step,
.flow-step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 150px;
    text-align: center;
    padding: 24px 16px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

.howto-step-num,
.flow-step-num {
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
    font-weight: 700;
    color: #ccc;
    line-height: 1;
    margin-bottom: 8px;
}

.howto-step-arrow,
.flow-step-arrow {
    font-size: 18px;
    color: #ccc;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 8px;
}

@media (max-width: 1024px) {

    .howto-steps,
    .flow-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: stretch;
    }

    .howto-step,
    .flow-step {
        width: 100%;
    }

    .howto-step-arrow,
    .flow-step-arrow {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        padding: 4px 0;
        text-align: center;
    }
}



/* ========================================
   SALONMODEL REQUIREMENTS (19salonmodels)
======================================== */
.salonmodel-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
}

.salonmodel-requirements li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    line-height: 1.7;
}

.salonmodel-requirements li:first-child {
    border-top: 1px solid #eee;
}



/* ========================================
   C-1 GRAND PRIX (21c1)
======================================== */
.c1-purpose-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.c1-purpose-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
    padding: 24px 20px;
    background-color: #f8f5f0;
    border-radius: 10px;
    text-align: center;
}

.c1-purpose-num {
    font-family: "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 700;
    color: #ddd;
    line-height: 1;
    margin-bottom: 8px;
}

.c1-rank-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.c1-rank-1 .c1-rank-grid .c1-work {
    width: calc(50% - 5px);
}

.c1-rank-grid .c1-work {
    width: calc(25% - 8px);
}

.c1-report-content h4 {
    padding-left: 10px;
    border-left: 3px solid #c9a84c;
}

.c1-results > h4 {
    letter-spacing: 0.06em;
    padding-bottom: 14px;
    border-bottom: 1px solid #ddd;
}

.c1-rank-1,
.c1-rank-2 {
    padding: 20px 24px;
    border-radius: 6px;
}

.c1-rank-1 {
    background-color: #fdf9f2;
    border-left: 4px solid #c9a84c;
}

.c1-rank-2 {
    background-color: #f6f6f6;
    border-left: 4px solid #b0b0b0;
}

.c1-rank-label {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.c1-rank-1 .c1-rank-label {
    color: #a0720a;
}

.c1-rank-2 .c1-rank-label {
    color: #6e6e6e;
}

.c1-summary {
    background-color: #fdf9f2 !important;
    border-left: 4px solid #c9a84c;
    border-radius: 0;
}

.c1-backnumber-year {
    border-bottom: 1px solid #eee;
}

.c1-backnumber-year:first-of-type {
    border-top: 1px solid #eee;
}

.c1-backnumber-summary {
    padding: 14px 0;
    cursor: pointer;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
}

.c1-backnumber-summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #aaa;
}

details[open] .c1-backnumber-summary::after {
    content: '−';
}

.c1-backnumber-seasons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 0 16px 16px;
}

.c1-backnumber-season {
    display: inline-block;
    padding: 5px 16px;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 14px;
    font-family: "Noto Serif JP", serif;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.c1-backnumber-season:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 1024px) {
    .c1-purpose-item {
        min-width: unset;
        width: calc(33.333% - 14px);
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }

    .c1-rank-grid .c1-work {
        width: calc(33.333% - 7px);
    }
}

@media (max-width: 599px) {
    .c1-purpose-item {
        width: calc(50% - 10px);
    }

    .c1-rank-1 .c1-rank-grid .c1-work,
    .c1-rank-grid .c1-work {
        width: calc(50% - 5px);
    }
}



/* ========================================
   STAFF VOICE DETAIL (16staffvoice)
======================================== */
.staffvoice-detail {
    border-bottom: 1px solid #eee;
    padding-bottom: 60px;
}

.staffvoice-detail:last-child {
    border-bottom: none;
}

.staffvoice-detail-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.staffvoice-detail-header.mini{
      padding: 10px;
    background-color: var(--clr-bg);
    margin-bottom: 0;
    margin-top: 20px;
    max-width: 300px;
    margin-left: auto;
    border-radius:10px;
}

.staffvoice-detail-img {
    width: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
}

.staffvoice-detail-profile {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding-top: 8px;
}

.staffvoice-qa-item {
    padding: 14px 0;
    border-bottom: 1px dashed #eee;
}

.staffvoice-q {
    font-weight: 600;
    font-size: 14px;
}

body.recruit-page .staffvoice-q {
    color: var(--clr-main);
}

.staffvoice-a {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}

.staffvoice-message {
    border-radius: 8px;
    padding: 20px;
    background-color: #fafafa;
    border: 1px solid #eee;
}

body.recruit-page .staffvoice-message {
    background-color: var(--clr-bg);
    border-color: var(--clr-border);
}

@media (max-width: 599px) {
    .staffvoice-detail-img {
        width: 80px;
    }

    .staffvoice-detail-header {
        gap: 16px;
    }
}



/* ========================================
   ACADEMY PAGE (17academy)
======================================== */
.academy-schedule {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.academy-schedule-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    padding: 28px 24px;
    border-radius: 10px;
    border-left: 4px solid #ddd;
    background-color: #f8f5f0;
}

body.recruit-page .academy-schedule-item {
    background-color: var(--clr-bg);
}

.academy-schedule-item--study {
    border-left-color: var(--clr-main, #333);
}

.academy-schedule-item--ojt {
    border-left-color: var(--clr-accent, #888);
}

.academy-schedule-day {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.academy-schedule-type {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.training-system-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.training-system-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
    padding: 28px 20px;
    background-color: #f8f5f0;
    border-radius: 10px;
    text-align: center;
}

body.recruit-page .training-system-item {
    background-color: var(--clr-bg);
    border: 1px solid #333;
}

.curriculum-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    gap: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.curriculum-step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
    padding: 24px 20px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

body.recruit-page .curriculum-step {
    background-color: var(--clr-bg);
}

.curriculum-step-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}

.curriculum-step-num {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #aaa;
}

body.recruit-page .curriculum-step-num {
    color: var(--clr-accent);
}

.curriculum-step-period {
    color: #aaa;
}

.curriculum-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.curriculum-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.curriculum-list li {
    font-size: 14px;
    padding: 6px 0 6px 1.2em;
    border-bottom: 1px dashed #ddd;
    position: relative;
}

.curriculum-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #aaa;
}

.curriculum-step-arrow {
    font-size: 18px;
    color: #ccc;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 8px;
}

body.recruit-page .curriculum-step-arrow {
    color: var(--clr-accent);
    opacity: 0.5;
}

.lesson-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.lesson-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 220px;
    background-color:#fff;
    border:#ccc 2px solid;
    border-radius:10px;
    padding: 28px 24px;
}

.lesson-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lesson-list li {
    font-size: 14px;
    padding: 10px 0 10px 1.4em;
    border-bottom: 1px solid #eee;
    position: relative;
}

.lesson-list li:first-child {
    border-top: 1px solid #eee;
}

.lesson-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    font-size: 16px;
    top: 7px;
    color: #aaa;
}

body.recruit-page .lesson-list li::before {
    color: var(--clr-accent);
}

.ojt-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.ojt-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
    padding: 28px 24px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

body.recruit-page .ojt-item {
    background-color: var(--clr-bg);
}

.after-academy-grid,
.program-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.after-academy-item,
.program-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 180px;
}

.program-item {
    padding: 24px 20px;
    background-color: #f8f5f0;
    border-radius: 10px;
}

body.recruit-page .program-item {
    background-color: var(--clr-bg);
}

@media (max-width: 1024px) {
    .curriculum-steps {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: stretch;
    }

    .curriculum-step-arrow {
        padding: 0;
        text-align: center;
    }

    .lesson-col {
        min-width: unset;
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

@media (max-width: 599px) {

    .academy-schedule-item,
    .training-system-item,
    .ojt-item,
    .program-item,
    .lesson-col{
        min-width: unset;
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }

    .after-academy-item {
        min-width: unset;
        width: 100%;
        -webkit-box-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}



/* ========================================
   SALONMODELS / 共通フォーム (19salonmodels)
======================================== */
.academy-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.academy-info-imgs {
    width: 45%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.academy-info-detail {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 200px;
}

.academy-info-list {
    padding: 0;
    margin: 0;
}

.academy-info-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.academy-info-item:first-child {
    border-top: 1px solid #eee;
}

.academy-map {
    border-radius: 8px;
    overflow: hidden;
}

/* 汎用フォーム (19salonmodels / 共通) */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background-color: #fff;
    -webkit-transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    transition: border-color 0.3s;
    font-family: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #333;
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
}

.required {
    display: inline-block;
    font-size: 11px;
    background-color: #d44;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 400;
}

.optional {
    display: inline-block;
    font-size: 11px;
    background-color: #999;
    color: #fff;
    padding: 1px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: 400;
}

.btn--lg {
    font-size: 16px;
    min-width: 220px;
}

.btn.btn--lg a {
    padding: 14px 48px;
}

.form-submit button {
    display: inline-block;
    padding: 14px 48px;
    background-color: var(--clr-main, #333);
    color: #fff;
    border: 1px solid var(--clr-main, #333);
    border-radius: 3px;
    font-size: 16px;
    letter-spacing: 0.1em;
    min-width: 220px;
    cursor: pointer;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.form-submit button:hover {
    opacity: 0.8;
}

.blog-article-eyecatch img,
.news-article-eyecatch img {
    width: 100%;
}

@media (max-width: 1024px) {
    .academy-info {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .academy-info-imgs {
        width: 100%;
    }

    .academy-info-detail {
        flex: auto;
        width: 100%;
    }
}

/* ===== CONTACT PAGE ===== */
.contact-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
}

.contact-tab-btn {
    padding: 10px 24px;
    border: 1px solid var(--clr-main, #333);
    background-color: transparent;
    color: var(--clr-main, #333);
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-tab-btn.active,
.contact-tab-btn:hover {
    background-color: var(--clr-main, #333);
    color: #fff;
}

.postal-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.address-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 14px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

.form-checkbox-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

/* ===== NEWS LIST PAGE ===== */
.news-list.fead-order {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
}
.news-item {
    border-bottom: 1px solid #e5e5e5;
}
.news-item:first-child {
    border-top: 1px solid #e5e5e5;
}
.news-item + .news-item {
    margin-top: 0;
}


.news-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding: 20px 10px;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
    -webkit-transition: background-color 0.2s, padding-left 0.2s;
    -o-transition: background-color 0.2s, padding-left 0.2s;
    transition: background-color 0.2s, padding-left 0.2s;
}
.news-item a:hover {
    background-color: #fafafa;
    padding-left: 18px;
    color: inherit;
}
.news-item-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 220px;
    margin-bottom: 0;
}
.news-date {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    font-family: "Noto Serif JP", serif;
}
.news-item a time {
    width: auto;
}
.news-title {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    min-width: 0;
}
.news-more {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #bbb;
    white-space: nowrap;
    -webkit-transition: color 0.2s, -webkit-transform 0.2s;
    transition: color 0.2s, transform 0.2s;
}
.news-item a:hover .news-more {
    color: #333;
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .news-item-meta {
        width: 100%;
    }
    .news-item a {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 8px;
    }
}
@media (max-width: 599px) {
    .news-item a {
        padding: 16px 8px;
    }
    .news-more {
        display: none;
    }
}

/* ===== CATEGORY TAGS (js-split-tag) ===== */
.news-category,
.blog-category {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3px;
}
.news-category span,
.blog-category span {
    display: inline-block;
    padding: 1px 4px;
    border: 1px solid #b8965a;
    color: #b8965a;
    font-size: 11px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    background-color:#fff;
}

/* ===== PAGINATION ===== */
.pagination-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
}

.pagination-item {
    list-style: none;
}

.pagination-link {
    display: inline-block;
    border: 1px solid #ddd;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.pagination-link a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
   min-width: 36px;
    min-height: 36px;
    padding: 8px 8px;
    color: var(--clr-main, #333);
    text-decoration: none;
}

.pagination-link.active {
    background-color: var(--clr-main, #333);
    border-color: var(--clr-main, #333);
}

.pagination-link.active a {
    color: #fff;
}

.pagination-link:not(.active):hover {
    background-color: #f5f5f5;
}

/* ===== BLOG LIST PAGE ===== */
.blog-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 36px 24px;
}
.blog-card {
    width: calc(33.333% - 16px);
}
.blog-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}
.blog-card .img {
    overflow: hidden;
    border-radius: 4px;
}
.blog-card .img img {
    display: block;
    width: 100%;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
}
.blog-card a:hover .img img {
    -webkit-transform: scale(1.04);
    -ms-transform: scale(1.04);
    transform: scale(1.04);
}
.blog-card-content {
    padding: 14px 0 0;
}
.blog-card-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.blog-date {
    font-size: 12px;
    color: #999;
    font-family: "Noto Serif JP", serif;
}
.blog-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 10px;
}
.blog-more {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #aaa;
    -webkit-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}
.blog-card a:hover .blog-more {
    color: #333;
}
@media (max-width: 1024px) {
    .blog-card {
        width: calc(50% - 12px);
    }
}
@media (max-width: 599px) {
    .blog-cards {
        gap: 24px;
    }
    .blog-card {
        width: 100%;
    }
}

/* ===== CMS CONTENT ===== */
.cms-content p {
    margin-bottom: 1em;
}

.cms-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 2em 0 0.8em;
    padding-bottom: 0.4em;
    border-bottom: 2px solid var(--clr-main, #333);
}

.cms-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 1.6em 0 0.6em;
    padding-left: 10px;
    border-left: 3px solid var(--clr-main, #333);
}

.cms-content ul,
.cms-content ol {
    margin: 1em 0 1em 1.5em;
}

.cms-content ul li {
    list-style: disc;
    margin-bottom: 0.4em;
}

.cms-content ol li {
    list-style: decimal;
    margin-bottom: 0.4em;
}

.cms-content img {
    max-width: 100%;
    height: auto;
    margin: 1em 0;
}

.cms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 14px;
}

.cms-content table th,
.cms-content table td {
    padding: 10px 14px;
    border: 1px solid #ddd;
    text-align: left;
}

.cms-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.cms-content blockquote {
    margin: 1.5em 0;
    padding: 1em 1.5em;
    border-left: 4px solid var(--clr-main, #333);
    background-color: #f9f9f9;
}

.cms-content div {
    margin-bottom: 0.8em;
}

.cms-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 1.4em 0 0.5em;
    padding: 6px 10px;
    background-color: #f5f5f5;
    border-left: 3px solid var(--clr-main, #333);
}

.cms-content div::after {
    content: "";
    display: table;
    clear: both;
}

.cms-content iframe {
    max-width: 100%;
    display: block;
    margin: 1.5em 0;
}

@media (max-width: 599px) {
    .cms-content iframe {
        width: 100% !important;
        aspect-ratio: 16 / 9;
        height: auto !important;
    }
    .cms-content img[style*="float"] {
        float: none !important;
        width: 100% !important;
        margin: 0 0 1em 0 !important;
    }
}

/* ===== BLOG DETAIL PAGE ===== */
.blog-article-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.blog-article-eyecatch {
    overflow: hidden;
    border-radius: 4px;
}

.news-article-body,
.blog-article-body {
    font-size: 15px;
    line-height: 1.9;
}

.blog-share {
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.blog-share-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.blog-share-btn {
    display: inline-block;
    border-radius: 3px;
    overflow: hidden;
}

.blog-share-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.blog-share-btn--x {
    background-color: #000;
}

.blog-share-btn--x a:hover {
    opacity: 0.8;
}

.blog-share-btn--line {
    background-color: #06c755;
}

.blog-share-btn--line a:hover {
    opacity: 0.8;
}

.related-articles {
    border-top: 1px solid #eee;
    padding-top: 40px;
}

.related-blog-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.related-blog-item {
    width: calc(33.333% - 14px);
}

.related-blog-item a {
    display: block;
    text-decoration: none;
    color: inherit;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.related-blog-item a:hover {
    opacity: 0.8;
}

.related-blog-info {
    padding: 10px 0;
}

@media (max-width: 599px) {
    .related-blog-list {
        gap: 16px;
    }

    .related-blog-item {
        width: 100%;
    }
}

/* ===== NEWS DETAIL PAGE ===== */
.news-article-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.news-article-eyecatch {
    overflow: hidden;
    border-radius: 4px;
}

.news-article-body {
    font-size: 15px;
    line-height: 1.9;
}

.related-articles-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.related-article-item {
    border-bottom: 1px solid #eee;
}

.related-article-item a {
    display: block;
    padding: 16px 0;
    text-decoration: none;
    color: inherit;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.related-article-item a:hover {
    opacity: 0.8;
}

/* ===== GALLERY DETAIL PAGE ===== */
.gallery-slider {
    position: relative;
    overflow: hidden;
}

.gallery-stylist-info {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.gallery-comment {
    font-size: 14px;
    line-height: 1.9;
}

/* ===== GALLERY CARDS ===== */
.gallery-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    justify-content: center;
}

.gallery-cards .gallery-item {
    width: calc(25% - 11px);
}

.gallery-entry-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}

.gallery-entry-cards .gallery-item {
    width: calc(20% - 10px);
}

.gallery-entry-card a {
    display: block;
    text-decoration: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.gallery-entry-card a:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .gallery-card {
        width: calc(33.333% - 10px);
    }

    .gallery-entry-card {
        width: calc(25% - 9px);
    }
}

@media (max-width: 599px) {
    .gallery-card {
        width: calc(50% - 7px);
    }

    .gallery-entry-card {
        width: calc(33.333% - 8px);
    }
}

/* ===== CRAFT FEATURES GRID ===== */
.craft-features-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 28px;
}

.craft-feature-item {
    width: calc(33.333% - 19px);
    padding: 28px;
    background-color: #fff;
    border: 1px solid #eee;
}

.craft-feature-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--clr-main, #333);
    letter-spacing: 0.05em;
    line-height: 1;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .craft-feature-item {
        width: calc(50% - 14px);
    }
}

@media (max-width: 599px) {
    .craft-features-grid {
        gap: 16px;
    }

    .craft-feature-item {
        width: 100%;
    }
}

/* ===== BLOG/NEWS ARTICLE WRAPPERS ===== */
.blog-article,
.news-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article-header,
.news-article-header {
    margin-bottom: 24px;
}

.blog-article-title,
.news-article-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 12px;
}

@media (max-width: 599px) {

    .blog-article-title,
    .news-article-title {
        font-size: 20px;
    }
}



/* ========================================
   POST SIDEBAR LAYOUT (NEWS / BLOG)
======================================== */
.post-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.post-main {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}

.post-sidebar {
    width: 260px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}

.post-layout .blog-article,
.post-layout .news-article {
    max-width: none;
    margin: 0;
}

.post-layout .related-articles {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.sidebar-widget {
    margin-bottom: 36px;
}

.sidebar-widget-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: 2px solid #222;
    margin-bottom: 0;
}

.sidebar-cat-list,
.sidebar-archive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-cat-list li,
.sidebar-archive-list li {
    border-bottom: 1px solid #eee;
}

.sidebar-cat-list li a,
.sidebar-archive-list li a {
    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;
    padding: 10px 0;
    font-size: 13px;
    -webkit-transition: padding-left 0.2s, color 0.2s;
    -o-transition: padding-left 0.2s, color 0.2s;
    transition: padding-left 0.2s, color 0.2s;
}

.sidebar-cat-list li a:hover,
.sidebar-archive-list li a:hover {
    padding-left: 6px;
    color: #888;
}

.sidebar-cat-list li a span,
.sidebar-archive-list li a span {
    font-size: 11px;
    color: #bbb;
}

@media (max-width: 1024px) {
    .post-layout {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }

    .post-sidebar {
        width: 100%;
        position: static;
    }

    .sidebar-widget {
        margin-bottom: 24px;
    }
}



/* ========================================
   KIDSROOM SHOP LIST (20kidsroom)
======================================== */
.kidsroom-shop-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.kidsroom-shop-card {
    width: calc(33.333% - 14px);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}

.kidsroom-shop-info {
    padding: 14px 16px;
}

@media (max-width: 1024px) {
    .kidsroom-shop-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 599px) {
    .kidsroom-shop-card {
        width: 100%;
    }
}



/* ========================================
   KIDSROOM GUIDE (20kidsroom)
======================================== */
.kidsroom-guide {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 32px;
}

.kidsroom-guide-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.kidsroom-guide-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.kidsroom-tel-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 2;
}

@media (max-width: 599px) {
    .kidsroom-guide {
        padding: 20px 16px;
    }
}



/* ========================================
   KIDSROOM STAFF (20kidsroom)
======================================== */
.kidsroom-staff-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.kidsroom-staff-card {
    width: calc(25% - 23px);
}

.kidsroom-staff-info {
    padding-top: 4px;
}

@media (max-width: 1024px) {
    .kidsroom-staff-card {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 599px) {
    .kidsroom-staff-card {
        width: calc(50% - 15px);
    }

    * .w-txt {
        font-size: 14px;
        letter-spacing: 0;
    }
}

/* ===== GALLERY DETAIL (99gallery_detail) ===== */
.gd-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.gd-img-area {
    flex: 0 0 50%;
    max-width: 50%;
}

.gd-info-area {
    flex: 1;
    min-width: 0;
}

.gd-main-img {
    border-radius: 8px;
    overflow: hidden;
}

.gd-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.gd-thumb {
    flex: 1;
    max-width:25%;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    overflow: hidden;
    transition: border-color 0.2s;
}


.gd-thumb.active {
    border-color: #333;
}

.gd-thumb:hover {
    border-color: #777;
}

.gd-thumb:hover img {
    opacity: 0.8;
}

.gd-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gd-meta-row .gal-prise {
    display: inline-flex;
    align-items: baseline;
    margin: 0;
}

.gd-meta-row .gal-prise>span {
    font-size: 20px;
    font-weight: 800;
    color: #555;
}

.gd-meta-row .gal-prise>span::after {
    content: "位";
    font-size: 14px;
    margin-left: 2px;
    color: #777;
    font-weight: 400;
}

.gd-meta-row .gal-prise>span.prise-1 {
    font-size: 22px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gd-meta-row .gal-prise>span.prise-2 {
    font-size: 21px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #757575 0.1em, #9E9E9E 0.2em, #E8E8E8 0.3em, #9E9E9E 0.4em, #757575 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gd-meta-row .gal-prise>span.prise-3 {
    font-size: 20px;
    font-family: "Noto Serif JP", serif;
    color: transparent;
    background: repeating-linear-gradient(0deg, #b64b03 0.1em, #da6708 0.2em, #fed5a0 0.3em, #da6708 0.4em, #b64b03 0.5em);
    -webkit-background-clip: text;
    background-clip: text;
}

.gd-meta-row .gal-prise>span.ノミネート {
    font-size: 12px;
    font-weight: 600;
    color: #777;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 2px;
}

.gd-meta-row .gal-prise>span.ノミネート::after {
    display: none;
}

.gd-season {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.gd-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 10px;
}

.gd-staff-row {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.gd-desc-area {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.9;
    color: #444;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

@media (max-width: 1024px) {
    .gd-layout {
        gap: 30px;
    }

    .gd-img-area {
        flex: 0 0 45%;
        max-width: 45%;
    }
}

@media (max-width: 599px) {
    .gd-layout {
        flex-direction: column;
    }

    .gd-img-area,
    .gd-info-area {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }

    .gd-title {
        font-size: 18px;
    }

    .gd-thumbs {
        gap: 6px;
    }

    .gd-thumb img {
        height: 60px;
    }

    .gallery-cards {
        gap: 1px;
    }

    .gallery-cards .gallery-item {
        width: calc(33% - 1px);
    }

    .gallery-entry-cards {
        gap: 1px;
    }

    .gal-content {
        display: none;
    }

    .gallery-entry-cards .gallery-item {
        width: calc(25% - 1px);
    }

    .no-last>li:nth-child(4) {
        display: none;
    }
}

/* ===== BLOG/NEWS ARTICLE WRAPPERS ===== */

.bdr10,
.bdr10>a {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-season .gallery-item>a {
    border-radius: 10px;
    overflow: hidden;
}










a[href*='tel'] {
  pointer-events: none;
}
.tel[data-ab-test-conversion-button=""] {
  pointer-events: none;
}

@media (max-width: 1024px) {
  a[href*='tel'] {
    pointer-events: initial;
  }
  .tel[data-ab-test-conversion-button=""] {
    pointer-events: auto;
  }
}


[data-common-area] {
  padding-top: 2em;
  position: relative;
}
[data-common-area]:hover::before {
  content: '共通要素';
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  display: block;
  padding: 0.5em;
  font-size: 0.8em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  background-color: #fdc44f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
[data-element-id] a[data-href='#'] {
  outline: solid #f00 5px !important;
  opacity: 1;
  position: relative;
}
[data-element-id] a[data-href='#']:hover::before {
  content: '未設定リンク';
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 90px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #f00;
  background: #9e9e9e;
  position: absolute !important;
  bottom: 100%;
  left: 0;
}
[data-element-id] a[data-href*='.'] {
  outline: solid #ff7c4d 5px !important;
  opacity: 1;
}
[data-element-id] a[data-href*='.']:hover::before {
  content: '外部リンク';
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 90px;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  background: #ff7c4d;
  position: absolute !important;
  bottom: 100%;
  left: 0;
}
[data-element-id] [data-uk-slideshow]:hover::before {
  content: 'スライドショーです。ダブルクリックで画像変更ができます。';
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  display: block;
  padding: 0.5em;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  background-color: #00f;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
[data-element-id] .uk-slideshow > li {
  opacity: 1;
}
[data-element-id] .wrapper {
  opacity: 1;
}
[data-element-id] .imgalt {
  outline: 5px solid #000;
  clear: both;
  position: relative;
}
[data-element-id] .imgalt::before {
  content: 'バリデーションjsコメントアウト';
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  display: block;
  padding: 0.5em;
  font-size: 10px;
  color: #f00;
  line-height: 1.2;
  text-align: center;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}


[data-element-id] [data-ab-test-conversion-button]::after {
  content: "CV";
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  background-color: #ff0;
  color: #000;
}
[data-element-id] [class*='fead-'] {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}
[data-element-id] [class*='fead-'].str {
  opacity: 1;
}
[data-element-id] .fead-cover::before {
  content: none;
}
[data-element-id] .fead-cover>* {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}
[data-element-id] .fead-scale {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}
[data-element-id] .fead-order>* {
  opacity: 1;
  -webkit-transform: unset;
          transform: unset;
}


[data-ab-test-block] [data-ab-test-contents] +[data-ab-test-contents] {
  display: none;
}
[data-element-id] [data-ab-test-contents] {
  padding: 1.5em 0.2em 0.2em;
  outline: 2px solid #8b008b;
  position: relative;
}
[data-element-id] [data-ab-test-contents]::before {
  content: "Aパターン";
  width: 100%;
  display: block;
  padding: 0.5em 0.2em;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  background-color: #8b008b;
  position: absolute;
  top: 0;
  left: 0;
}
[data-element-id] [data-ab-test-contents]+[data-ab-test-contents] {
  outline: 2px solid #556b2f;
}
[data-element-id] [data-ab-test-contents]+[data-ab-test-contents]::before {
  content: "Bパターン";
  background-color: #556b2f;
}
[data-hide-element] {
  padding-top: 1em;
  position: relative !important;
}
[data-hide-element]::before {
  content: '非表示' !important;
  font-size: 10px !important;
  line-height: inherit !important;
  -webkit-transform: unset !important;
          transform: unset !important;
}
[data-hide-element] >* {
  width: 100% !important;
}
[data-recommend-collection-list-content]::after {
  content: '「' attr(data-recommend-type) '」のレコメンドです。記事数は' attr(data-recommend-number) '件です。';
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4b0082;
  z-index: 1000;
}
[data-collection-list-content] {
  position: relative;
  padding-top: 1.5em;
}
[data-collection-list-content]::after {
  content: 'カスタムコンテンツ（編集不可）　' attr(data-list_number) '件表示　' attr(data-sort_column) 'の' attr(data-sort);
  bottom: 0;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #000080;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-collection-list-filtering="[]"]::before {
  content: 'フィルタリング無し';
  background: #000080;
}
[data-collection-list-content][data-collection-list-filtering="[]"]:hover::before {
  content: 'フィルタリング無し';
  background: #000080;
}
[data-collection-list-content]::before {
  content: 'フィルタリング：「' attr(data-value1) '」' attr(data-condition1);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4682b4;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content]:hover::before {
  content: 'フィルタリング：「' attr(data-value1) '」' attr(data-condition1);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4682b4;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-collection-list-filtering="[]"][data-ccalt]::before {
  content: 'フィルタリング無し　' attr(data-ccalt);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4169e1;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-collection-list-filtering="[]"][data-ccalt]:hover::before {
  content: 'フィルタリング無し　' attr(data-ccalt);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4169e1;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-ccalt]::before {
  content: 'フィルタリング：「' attr(data-value1) '」' attr(data-condition1) '　' attr(data-ccalt);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4169e1;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-ccalt]:hover::before {
  content: 'フィルタリング：「' attr(data-value1) '」' attr(data-condition1) '　' attr(data-ccalt);
  top: 0;
  bottom: auto;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 12px;
  color: #fff;
  text-align: left;
  background: #4169e1;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-list-content][data-pagination="1"]::after {
  content: 'カスタムコンテンツ（編集不可）　' attr(data-list_number) '件表示　' attr(data-sort_column) 'の' attr(data-sort) '　ページネーション設定済';
}
[data-collection-filtered-content] {
  position: relative;
  padding-top: 1.5em;
}
[data-collection-filtered-content]::before {
  content: '動的リンク';
  min-width: 100px;
  max-width: 100%;
  width: 100%;
  display: block;
  padding: 0.5em;
  font-size: 10px;
  color: #fff;
  line-height: 1.2;
  text-align: left;
  background-color: #c71585;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
[data-collection-archive-content] {
  position: relative;
  padding-top: 1.5em;
}
[data-collection-archive-content]::before {
  content: 'アーカイブ　表示件数：' attr(data-list_number) '件　0件の月' attr(data-hide_none_contents);
  top: 0;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 10px;
  color: #fff;
  text-align: left;
  background: #008000;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-collection-archive-content]:not([data-hide_none_contents])::before {
  content: 'アーカイブ　表示件数：' attr(data-list_number) '件　0件の月も表示';
  top: 0;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 10px;
  color: #fff;
  text-align: left;
  background: #808000;
  z-index: 1000;
  position: absolute;
  left: 0;
}
[data-max_page_link_number] {
  position: relative;
  padding-top: 1.5em;
}
[data-max_page_link_number]::before {
  content: 'ページネーションの表示件数：' attr(data-max_page_link_number) '件';
  top: 0;
  width: 100%;
  display: block;
  clear: both;
  padding: 5px;
  font-weight: bold;
  font-size: 10px;
  color: #fff;
  text-align: left;
  background: #ff4500;
  z-index: 1000;
  position: absolute;
  left: 0;
}
mark.filtering-link-text {
  display: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: -999;
}
[data-category-search-content] +mark.filtering-link-text {
  display: block;
  background-color: #db7093;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 2em;
  margin: 0.5em;
  padding: 0.5em 1em;
  visibility: visible;
  opacity: 1;
  z-index: 1;
}
[data-element-id] .uk-gird,
[data-element-id] .uk-width-1-1 {
  border: 1px solid #c0c0c0;
  background-color: rgba(245,245,245,0.2);
}

[data-element-id].header{
  position:relative;
}

[data-element-id].dropdown,
[data-element-id].dropdown{
  position:relative;
  max-height: inherit;
  opacity: 1;
  margin-top:10px;
  top:0;
  left:0;
  transform: translateX(0%);
  padding-left:0;
  border:1px solid #333;
}

[data-element-id].nav-list{
  align-items: flex-start;
}

[data-element-id].fead-blur{
    filter: blur(0px);
}

[data-element-id].sp-none{
  display:block;
  border:2px solid blue;
  position:relative;
}

[data-element-id].pc-none{
  display:block;
  border:2px solid green;
  position:relative;
  max-width:375px;
}

[data-element-id].pc-none::after{
  content:"PC時非表示";
  color:#fff;
  font-size:12px;
  display:block;
  text-align:center;
  width:100%;
  background-color:green;
}

[data-element-id].sp-none::after{
  content:"sp時非表示";
  color:#fff;
  font-size:12px;
  display:block;
  text-align:center;
  width:100%;
  background-color:blue;
}

[data-element-id].nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap:wrap;
    }

[data-element-id].nav-logo {
        width: 60px;
    }

[data-element-id].nav-logo a,
[data-element-id].nav-logo img {
        width: 100%;
        display: block;
    }

[data-element-id].nav-head .serch-box {
        width: 100%;
        max-width: 190px;
    }

[data-element-id].nav-head .serch-box input {
        padding: 0.1em 0.5em;
        font-size: 0.8em;
        border: 1px solid #333;
        border-radius: 3px;
    }
    
[data-element-id].h1-txt{
  display:none;
}

[data-element-id].nav-list {
  flex-wrap:wrap;
  justify-content: space-between
}

[data-element-id] ul{
  padding-left:0;
}

[data-element-id].nav-list>.item {
    border:2px solid #eee;
    margin-top:15px;
}

[data-element-id].nav-list>.item.switch>a::after {
    display:none;
}

[data-element-id].swiper,
[data-element-id].grl,
[data-element-id].swiper-box{
  position:relative;
}

[data-element-id].swiper-wrapper{
  overflow-x: scroll;
  display:flex;

}

[data-element-id].swiper::after,
[data-element-id].grl::after,
[data-element-id].swiper-box::after{
  content:"←　横向きにスクロールできます　→";
  display:block;
  width:100%;
  background-color:yellow;
  color:#111;
  text-align: center;
  position:absolute;
 bottom:18px;
  left:0;
  z-index:5;
}


[data-element-id].swiper-wrapper>*{
  display:block;
}

[data-element-id].mv-catch{
  padding-bottom:60px;
}

[data-element-id].gallery-swiper .swiper-wrapper{
  height:500px;
}

[data-element-id].gallery-swiper .swiper-wrapper>div{
  width:100%;
  display:flex;
}

[data-element-id].gallery-swiper .swiper-slide {
   width: calc(100% / 4);
}

[data-element-id].staff-src{
  width:300px;
  height:50px;
  display:block;
  overflow:hidden;
  position:relative;
  margin:0 auto 20px;
}

[data-element-id].staff-src>div{
  width:200px;
  height:50px;
  display:block;
  overflow:hidden;
  position:relative;
}

[data-element-id].staff-src>div::before,
[data-element-id].staff-src>div::after{
  display:none;
}


[data-element-id].staff-src::after{
  content:"スタッフ画像の設定はこちらをクリック";
  color:#fff;
  font-size:14px;
  display:flex;
  align-items: center;
  justify-content: center;
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  background-color:#000080;
}

[data-element-id].staff-card-list{
  display:block;
}
[data-element-id].staff-card-list>div{
 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

[data-element-id].stafflist-cards{
  display:block;
}
[data-element-id].stafflist-cards>div{
 display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

[data-element-id].product-cards{
    display:block;
}

[data-element-id].product-cards>div{
       display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

[data-element-id].gallery-cards{
    display:block;
}

[data-element-id].gallery-cards>div{
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
    list-style: none;
    justify-content: center;
}

[data-element-id].gallery-entry-cards{
    display:block;
}

[data-element-id].gallery-entry-cards>div{
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
}


.G-cal-box{
  position: relative;
  width: 100%;
  padding-bottom: 60%; /* 縦横比を4:3にする場合（高さ÷幅） */
  height: 0;
  overflow: hidden;
}

.G-cal-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

[data-element-id].gallery-tab-content{
  display:block;
}



[data-element-id].staffvoice-cards{
    display:block;
}

[data-element-id].staffvoice-cards>div{
   display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}

[data-element-id].anchor-nav-list.ver-rec{
  display:block;
}

[data-element-id].anchor-nav-list.ver-rec>div{
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

[data-element-id].kidsroom-shop-cards {
    display:block
}


[data-element-id].kidsroom-shop-cards>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}


.checkboxer label {
    display: inline-block;
    margin: 0.5em 0;
    margin-right: 15px;
    padding: 0 10px 0 24px;
    position: relative;
}

.checkboxer label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #999;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 3px;
    left: 0;
}

.checkboxer label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.checkboxer input {
    display: none;
}

.checkboxer input:checked+label {
    text-decoration: underline;
}

.checkboxer input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: red;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 5px;
    left: 2px;
}

.news-item-v2 a {
    display: flex;
    align-items: center;
    flex-wrap:wrap;
    padding: 20px 10px;
    text-decoration: none;
    color: inherit;
    border-bottom: none;
    -webkit-transition: background-color 0.2s, padding-left 0.2s;
    -o-transition: background-color 0.2s, padding-left 0.2s;
    transition: background-color 0.2s, padding-left 0.2s;
    border-bottom: 1px solid #eee;
}

.news-item-v2 a:hover {
    background-color: #fafafa;
    padding-left: 18px;
    color: inherit;
}

.news-date-v2 {
    font-size: 13px;
    color: #999;
    white-space: nowrap;
    font-family: "Noto Serif JP", serif;
    width: 80px;
}


.news-category-v2{
  width:calc(100% - 80px);
  display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 4px;
}

.news-title-v2 {
    width:calc(100% - 80px);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    min-width: 0;
    margin-top:15px;
}

.news-category-v2 span{
    display: inline-block;
    padding: 2px 8px;
    border: 1px solid #b8965a;
    color: #b8965a;
    font-size: 11px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.news-more-v2 {
    width:80px;
    padding-left:20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #bbb;
    white-space: nowrap;
    -webkit-transition: color 0.2s, -webkit-transform 0.2s;
    transition: color 0.2s, transform 0.2s;
}
.news-item-v2 a:hover .news-more-v2 {
    color: #333;
    -webkit-transform: translateX(4px);
    -ms-transform: translateX(4px);
    transform: translateX(4px);
}

[data-element-id].blog-cards {
    display: block;
}

[data-element-id].blog-cards>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 36px 24px;
}

.contents-bg{
  padding:1em;
  border:1px solid #eee;
  border-radius:3px;
}

input[type="file" i]::-webkit-file-upload-button{
    appearance: auto;
    margin-inline-end: 4px;
    font-size: inherit;
    -webkit-user-modify: read-only !important;
    text-align: center;
    cursor: default;
    box-sizing: border-box;
    background-color: buttonface;
    color: buttontext;
    white-space: nowrap;
    margin: 0px;
    padding-block: 1px;
    padding-inline: 6px;
    border-width: 1px;
    border-style: outset;
    border-color: buttonborder;
    border-image: initial;
    padding:.5em;
    margin-right:10px;
}


.card-content-none{
  display:contents!important;
}

.no-title{
  display:none!important;
}

.gal-filter-links a:not(:first-child){
  display:none!important;
}

[data-element-id].card-content-none{
  display:block!important;
  width:100%;
}

[data-element-id].card-content-none>div{
  display:flex!important;
  width:100%;
}

[data-element-id].pc-float-btn__item {
  display:inline-block;
    margin:30px;
    position: relative;
    bottom: 0px;
    right: 0px;
}
[data-element-id].pc-float-btn__recruit {
    opacity: 1;
    visibility:visible;
}

[data-element-id].pc-float-btn__recruit::before {
    content: "採用情報セクション上でのみ表示";
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 24px;
    font-size: 10px;
    text-align: center;
    line-height: 1;
    padding:1em 0;
    background-color:navy;
    color: #fff;
}

[data-element-id].pc-float-btn{
  width:500px;
  border:3px solid #555;
margin:20px;
}

[data-element-id].pc-float-btn::before {
    content: "PC時画面右下で追従";
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 24px;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    padding:1em 0;
    background-color:#555;
    color: #fff;
    width:100%;
}


[data-element-id].sp-float-btn{
  display:flex;
  flex-wrap:wrap;
  position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    width:400px;
      border:3px solid #555;
margin:20px;
align-items: flex-end;
}


[data-element-id].sp-float-btn::before {
    content: "SP時画面下で追従";
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 24px;
    font-size: 14px;
    text-align: center;
    line-height: 1;
    padding:1em 0;
    background-color:#555;
    color: #fff;
    width:100%;
    margin-bottom:20px;
}

.sp-float-btn__reserve .pink a{
  background-color:#7c0000;
  color:#b39855;
}

.sp-float-btn__reserve .pink a::after{
  border:1px solid #b39855;
}

.sp-float-btn__reserve .pink a::before{
  border:1px solid #b39855;
}


#header.recruit .h1-txt{
  color:#fff
}

#header.recruit .header-logo img,
#header.recruit .nav-logo img{
    filter: invert(100%) sepia(3%) saturate(11%) hue-rotate(38deg) brightness(103%) contrast(104%);
}

#header.recruit .sns-icon-list a{
  color:#fff;
}

#header.recruit .serch-box input{
  background-color:#fff;
}

#header.recruit .item>a{
  color:#fff;
}


#header.recruit .nav-list.item>a:hover{
  color:#333;
  background-color:#fff;
}

.active #header.recruit .hum-btn::after {
    -webkit-animation: active-btn18 0.7s 0.25s forwards;
    animation: active-btn18 0.7s 0.25s forwards;
}

@-webkit-keyframes active-btn18 {
    0% {
        border-color: transparent;
        -webkit-transform: rotate(0);
    }

    25% {
        border-color: transparent #fff transparent transparent;
    }

    50% {
        border-color: transparent #fff #fff transparent;
    }

    75% {
        border-color: transparent #fff #fff #fff;
    }

    100% {
        border-color: #fff;
        -webkit-transform: rotate(-680deg);
    }
}

@keyframes active-btn18 {
    0% {
        border-color: transparent;
        transform: rotate(0);
    }

    25% {
        border-color: transparent #fff transparent transparent;
    }

    50% {
        border-color: transparent #fff #fff transparent;
    }

    75% {
        border-color: transparent #fff #fff #fff;
    }

    100% {
        border-color: #fff;
        transform: rotate(-680deg);
    }
}

.abs-pare{
  position:relative;
}


.abs-tags{
  position:absolute;
  top:3px;
  left:3px;
  width:calc(100% - 3px);
  z-index:1;
}

/* ==============================================
   Overlay
   ============================================== */
.overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    animation: overlay-open 0.5s forwards;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
}

@keyframes overlay-open {
    0% {
        transform: translateX(-100vw);
    }

    100% {
        transform: translateX(0);
    }
}

@media(max-width:599px){
  
body.recruit-page .curriculum-step-arrow {
    margin-left:auto;
    margin-right:auto;
}

.flow-step-arrow>i,
.howto-step-arrow>i{
      transform: rotate(90deg);
}

}

.feature-name-sub{
  font-size:.7em;
  opacity:.6;
}

@media(max-width:599px){
  .feature-name-sub{
  font-size:14px;
  display:block;
  margin-top:8px;
}
}

.pc-float-btn__item.pc-float-btn__newcomer{
  transition:.4s;
}


.pc-float-btn__item.pc-float-btn__newcomer.is-recruit{
  right:-190px;
  transition:.4s;
}

    .pc-float-btn__item.pc-float-btn__newcomer a >.beta{
      display:none;
  }

@media(max-width:599px){
  
  .pc-float-btn__item.pc-float-btn__newcomer{
    width:100%;
    right:0;
    bottom:41px;
  }
  .pc-float-btn__item.pc-float-btn__newcomer a{
    width:100%;
    height:auto;
    flex-direction:row;
    border-radius:0;
    padding:5.5px 0;
    /* ① まずベースの線を透明（transparent）で作る */
    border: 3px solid transparent; 
    /* ② その上にグラデーションを乗せる */
    border-image: linear-gradient(45deg, #b39855 0%, #fff9e6 40%, #b39855 80%) 1;
  }
  .pc-float-btn__item.pc-float-btn__newcomer a >.alpha{
    display:none;
  }
    .pc-float-btn__item.pc-float-btn__newcomer a >.beta{
      display:block;
        font-size:16px;
    font-weight: bold;
    background: linear-gradient(to bottom, #b39855 0%, #fff9e6 40%, #b39855 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .pc-float-btn__item.pc-float-btn__newcomer a::before{
    width:100%;
    height:100%;
    background-image:none;
   
  }
}










.schedule-wrapper {
    margin: 0 auto 80px auto;
  }
  
  /* =========================================
     1. 週間スケジュール (Weekly Schedule)
  ========================================= */
  .weekly-container {
    position: relative;
    padding-top: 40px;
    min-width: 600px;
  }

  .weekly-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-left: 1px solid var(--clr-border);
    pointer-events: none;
    z-index: 0;
  }

  .weekly-bg > div {
    border-right: 1px solid var(--clr-border);
  }

  .weekly-headers {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    z-index: 1;
  }

  .weekly-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    padding: 0 8px;
    position: relative;
    z-index: 2;
  }

  .card {
    border-radius: 12px;
    padding: 25px 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    min-height: 160px;
  }

  .card.rest {
    background-color: rgba(212, 184, 150, 0.3); /* --clr-border の透過色 */
    color: var(--clr-main);
    font-weight: bold;
    font-size: 1.1rem;
  }

  .card.active {
    background-color: var(--clr-accent);
    color: var(--clr-main);
    position: relative;
  }

  .card.active .small {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: bold;
  }

  .card.active .large {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .mon { grid-column: span 1; }
  .tue-wed { grid-column: span 2; }
  .thu { grid-column: span 1; }
  .fri-sun { grid-column: span 3; }

  /* 背景の破線を疑似要素で表現 */
  .tue-wed::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    border-left: 1px dashed var(--clr-main);
    opacity: 0.3;
    pointer-events: none;
  }
  .fri-sun::before, .fri-sun::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    border-left: 1px dashed var(--clr-main);
    opacity: 0.3;
    pointer-events: none;
  }
  .fri-sun::before { left: 33.333%; }
  .fri-sun::after { left: 66.666%; }


  /* =========================================
     2. 6ヶ月カリキュラム (Monthly Schedule)
  ========================================= */
  .monthly-container {
    position: relative;
    padding-top: 40px;
    min-width: 800px;
  }

  .monthly-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-left: 1px solid var(--clr-border);
    pointer-events: none;
    z-index: 0;
  }

  .monthly-bg > div {
    border-right: 1px solid var(--clr-border);
  }

  .monthly-headers {
    position: absolute;
    top: 0; left: 0; right: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    text-align: center;
    font-weight: bold;
    padding: 10px 0;
    z-index: 1;
  }

  .monthly-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(36px, auto);
    gap: 6px 4px;
    padding: 0 4px;
    position: relative;
    z-index: 2;
  }

  .bar {
    background-color: var(--clr-accent);
    color: var(--clr-main);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    text-align: center;
    padding: 6px 4px;
    line-height: 1.25;
  }

  .bar.supp {
    writing-mode: vertical-rl;
    text-orientation: upright;
    border-radius: 12px;
    padding: 10px 0;
    letter-spacing: 2px;
  }

  /* テキストサイズ調整用クラス */
  .text-xs { font-size: 0.65rem; }

  /* 配置 (Grid Areas) */
  /* Row 1 */
  .m-shampoo { grid-area: 1 / 1 / 2 / 3; }
  .m-blow    { grid-area: 1 / 3 / 2 / 5; }
  .m-perm    { grid-area: 1 / 5 / 2 / 9; }
  .m-straight{ grid-area: 1 / 9 / 2 / 13; }

  /* Row 2 */
  .m-treat   { grid-area: 2 / 1 / 3 / 3; }
  .m-color   { grid-area: 2 / 3 / 3 / 8; }
  .m-foil    { grid-area: 2 / 8 / 3 / 9; }
  .m-mani    { grid-area: 2 / 9 / 3 / 12; }
  .m-supp    { grid-area: 2 / 12 / 4 / 13; }

  /* Row 3 */
  .m-manner  { grid-area: 3 / 1 / 4 / 2; }
  .m-ttheory { grid-area: 3 / 2 / 4 / 3; }
  .m-ptheory { grid-area: 3 / 3 / 4 / 4; }
  .m-ctheory { grid-area: 3 / 4 / 4 / 5; }
  .m-ptheory2{ grid-area: 3 / 5 / 4 / 6; }
  .m-creative{ grid-area: 3 / 6 / 4 / 9; }
  .m-makeup  { grid-area: 3 / 9 / 4 / 12; }

  /* 吹き出し注釈 */
  .annotation {
    grid-area: 4 / 9 / 5 / 12;
    position: relative;
    margin-top: 15px;
    padding-left: 20px;
    font-size: 0.85rem;
    font-weight: bold;
  }
  
  
  
  
  
  
  
  
  
.staffvoice-detail2{
  display:flex;
  flex-wrap:wrap;
  align-items: center;
  justify-content: space-between;
}
  
.staffvoice-detail-header-card{
  display:flex;
  flex-direction:column;
  justify-content: center;
  align-items:center;
  width:170px;
  background-color:#fff;
  border:3px solid var(--clr-bg);
  padding:10px;
  border-radius:10px;
}

.staffvoice-detail2 .staffvoice-qa{
  width:calc(100% - 200px);
}



@media(max-width:1024px){
  .reason-item .staffvoice-detail-header.mini{
    order:4;
  }
  
  .staffvoice-detail-header.mini{
        margin-right:auto;
    margin-left:auto;
  }
  
  .btnblk{
    order:4;
  }
  
  .welfare-card .staffvoice-detail-header.mini{
    display:block;
  }
  
    .welfare-card .staffvoice-detail-header.mini .img{
    margin:0 auto;
  }
}

@media(max-width:599px){
  .staffvoice-detail2 {
    display:block;
}

.staffvoice-detail-header-card,
.staffvoice-detail2 .staffvoice-qa{
  width:100%;
}

  .welfare-card .staffvoice-detail-header.mini{
    display:flex;
    text-align: left;
  }
  
  .bcad,
  .bcad .staffvoice-detail-header.mini{
    width:100%;
    max-width:100%;
  }
}

.scroll-hint-icon-wrap{
  z-index:3;
}

.menu-mini-txt{
  font-size:11px;
  color:#888;
display:block;
  text-align: center;
  line-height:1em;
}

.drop-item .menu-mini-txt{
  display:inline-lock;
  text-align: left;
  padding-left:1.5em;
  position:relative;
}

.drop-item .menu-mini-txt::before{
  content: "ー";
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left:.5em;
    color:#aaa;
}

@media(max-width:599px){
  .pc-float-btn__item.pc-float-btn__newcomer.is-recruit {
    right: 0px;
    transition: .4s;
}
}
