@charset "utf-8";


/*--------------------
Reset
--------------------*/
/* * {text-transform:lowercase;} */
/* *::first-letter {text-transform:capitalize;} */
/* .text-lower::first-letter {text-transform:lowercase;} */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
li {
    list-style: none;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section,main {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
img,video {
    vertical-align: bottom;
}
img {
   image-rendering: auto; 
  /* image-rendering: -webkit-optimize-contrast; */
  width:100%;
  height: auto;
  display: block;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #ccc;
    margin:1em 0;
    padding:0;
}
input, button, select, textarea {
   vertical-align:middle;
   font-family: inherit;
   font-size: inherit;
}
*,
*::before,
*::after {
   box-sizing: border-box;
}

/* PC only */
@media (max-width: 768px) {
    .pc {
        display: none;
    }
}

/* SP only*/
@media (min-width: 769px) {
    .sp {
        display: none;
    }
}


body {
    color: #333333;
    font-family: "Libre Baskerville", serif;
    font-weight: 400;
    font-size: 16px;
    overflow: visible;
}

body.no-scroll {
    overflow: hidden;
}

a {
    color: #333333;
}

main {
    font-size: 1rem;
}

p {
    letter-spacing: 0.09rem;
    line-height: 1.6;
}

/* === bodyフェードイン（固定ページのみ）=== */
.fade-body {
    opacity: 0;
    transition: opacity 1s ease;
  }
  body.is-loaded.fade-body {
    opacity: 1;
  }
  

/* // ANCHOR: btn */
.more_btn {
    width:350px;
    height:55px;
    border-radius: 8px;
    color: #ffffff;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1;
    padding-top: 2px;
    margin: 3rem auto;
    transition: transform 300ms ease;
}

.more_btn:hover {
    transform: scale(1.05);
}

.hv {transition: transform 300ms ease;}
.hv:hover {transform: scale(1.05);}

/* ぱんくず */
.breadcrumb {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.6rem;
    line-height: 1;
}

.breadcrumb ul li {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.breadcrumb ul li:after {
    content: "keyboard_arrow_right";
    font-family: "Material Icons";
    font-size: 1rem;
    /* margin-bottom: 2px; */
    margin-left: 0.5rem;
}

.breadcrumb ul li:last-child:after {
    content: none;
}

.breadcrumb ul li a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.breadcrumb ul li a i {
    font-size: 0.8rem;
}

/* ページャー */
ul.pager { 
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

ul.pager li {
    width: 2rem;
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #efefef;
    font-size: 0.9rem;
    font-family: Arial, Helvetica, sans-serif;
}

ul.pager li.now {
    background: #8a8a8a;
    color: #ffffff;
}

ul.pager li.move {
    width: 1rem;
}

ul.pager li a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background: #efefef;
    color: #343434;
}

ul.pager li a:hover {
    background: #8a8a8a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .more_btn {
        width: 70%;
    }
}


/* // ANCHOR: PC header */
@media (min-width: 769px) {
    header {
        background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 40px, 
        rgba(255, 255, 255, 0.9) 60px, 
        rgba(255, 255, 255, 0.8) 60%,
        rgba(255, 255, 255, 0) 100%);
        /* background: linear-gradient(to bottom, #fffffff4, rgba(255, 255, 255, 0));  */
        width: 100%;
        height: 140px;
        padding: 2px 0 20px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 0;
        transition: opacity 1s ease;
    }

    header .hd_main {
        display: flex;
        height: 100%;
        justify-content: space-between;
        align-items: flex-end;
        padding: 0 40px 20px;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    header .hd_main .logo {
        flex: 1 1 auto; 
    }

    h1 {
        font-size: 1.3rem;
        letter-spacing: 0.11em;
        line-height: 1.7;
        white-space: nowrap;
        color: #111111;
    }
    h1 small {
        font-size: 0.6rem;
        display: block;
        font-weight: normal;
        letter-spacing: 0.1rem;
    }

    /* === h1のスライドイン === */
    h1.slide-h1 {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .slide-h1.is-visible {
    opacity: 1;
    transform: translateX(0);
  }

    header .hd_main nav {
        flex: 1 1 auto; /* 必要に応じて幅を調整 */
        text-align: right; /* 改行時に右寄せ */
    }

    nav div.hamburger {
        display: none;
    }

    nav ul.menu {
        display: flex;
        justify-content: flex-end;
        gap: 0.7rem 2rem;

        flex-wrap: wrap;
    }
    nav ul.menu li {
    }

    nav ul.menu li a {
        white-space: nowrap;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 0.7rem;
        letter-spacing: 0.25em;
        transition: color 0.3s ease, text-shadow 0.3s ease;
    }
    nav ul.menu li a:hover {
        color: #ffffff;
        text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
    }
}

@media (max-width: 1200px) {
    header .hd_main {
        padding: 0 30px 20px;
    }
    h1 {
        font-size: clamp(1rem, 1.7vw, 1.3rem);
    }

}



/* // ANCHOR: SP header */
@media (max-width: 768px) {
    header {  background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.942) 0%, 
        rgba(255, 255, 255, 0.942) 50%, 
        rgba(255, 255, 255, 0) 100%);
        width: 100%;
        height: 120px;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 10;
        opacity: 1;
        transition: opacity 1s ease;
        
    }

    header .hd_main {
        height: 100%;
        padding: 1.5rem 1.3rem ;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }


    h1 {
        font-size: 1.3rem;
        letter-spacing: 0.11em;
        white-space: nowrap;
        color: #111111;
        line-height: 1.2;
    }

    h1 small {
        font-size: 0.6rem;
        display: block;
        font-weight: normal;
        margin-bottom: 0.3rem;
    }

    /* === h1のスライドイン === */
    h1.slide-h1 {
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 1s ease, transform 1s ease;
      }
      .slide-h1.is-visible {
        opacity: 1;
        transform: translateX(0);
      }
    
    /* // ANCHOR: SP hamburger */
    nav {
        position: absolute;
        top: 0;
        right: 0;
        width: 100vw;
        z-index: 200;
        /* height: 100vw; */
    }

    nav .hamburger {
        background-size: contain;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 18px;
        height: 36px;
        flex-shrink: 0;
        z-index: 200;
        cursor: pointer;
        position: absolute;
        top: 1.5rem;
        right: 1.3rem;
        }
    
    .hamburger span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 0.3125rem;
        background: #000;
        margin: 0.1rem 0;
        transition: 0.3s;
        }

        .hamburger span:last-child {
            margin-bottom: 10px;
        
        }
        
        /* ハンバーガーを×マークに変化 */
        .hamburger.active span:nth-child(1) {
            transform: translateY(2px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }


    nav .menu {
        opacity: 0;
        width: 90%;
        height: 100vh;
        position: absolute;
        overflow: scroll;
        right: 0;
        top: 0;
        background: #ffffff;
        box-shadow: -10px 2px 10px 0px rgba(25, 13, 2, 0.3);
        transition: transform 0.4s ease, opacity 0.4s ease;
        transform: translateX(100%); /* 初期位置を画面外に設定 */
        z-index: 150;
        padding: 3rem 1rem 2rem;
    }


    .menu.active {
        opacity: 1;
        transform: translateX(0%);
    }
    
    .menu_bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(89, 78, 60, 0.8);
        z-index: 10;
        /* display: none; */
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
    }

    .menu_bg.active {
        /* display: block; */
        opacity: 1;
    }

    ul.menu li {
        width: 100%;
        border-bottom: solid 1px #EEEEEE;

    }

    ul.menu li a {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 1.3rem 0.5rem;
        width: 100%;
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        color: #333333;
    }

    ul.menu li a small:before,
    ul.menu li a small:after {
        content: "-";

    }
}

/* // ANCHOR: FOOTER */
footer {
    width: 100%;
    background: #000000;
    padding: 1rem;
}

footer ul {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.8rem;
}

footer ul li a {
    font-size: 0.9rem;
    color: #ffffff;
}

footer p {
    font-size:0.6rem;
    color: #ffffff;
    text-align: center;
    display: block;
}

/* // ANCHOR: SP FOOTER */
@media (max-width: 768px) {}





/* // ANCHOR: main */
main {
    width: 100%;
    overflow: hidden;
}

main section {
    padding-top: 3rem;
}

h2 {
    font-size: 3.5rem;
    text-align: center;
    width: 100%;
    font-family: "zahrah", serif;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: normal;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 1rem;
}
h2 small {
    font-size: 1.1rem;
}


.mainvisual {
    width: 100%;
    height: 720px;
    display: flex;
    flex-wrap: nowrap;
    padding-top: 0;
    margin-top: 40px;
}
.mainvisual:before {
    content: "";
    display: block;
    width: 100%;
    height: 140px;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 40px, rgba(255, 255, 255, 0.9) 60px, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0) 100%);

    }

.mainvisual img {
    width: 100%;
    /* width: 33.33%; */
    object-fit: cover;

}

@media (min-width: 769px) {
    .mainvisual.mvslide {
        display: none;
    }

}

/* // ANCHOR: SP mainvisual */
@media (max-width: 768px) {
    .mainvisual_bg {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 5rem;
        background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 1) 40%, 
        rgba(255, 255, 255, 0) 100%);
        z-index: 2;
    }
    .mainvisual {
        width: 100%;
        height: calc(100vh - 2rem);
        overflow: hidden;
        z-index: 1;
        margin-top: 2rem;
    }

    .mainvisual img {
        width: 100%;
        height: calc(100vh - 2rem);
        object-fit: cover;
    }

    .mainvisual.pc {
        display: none;
    }

}

.scene_btn {}

.scene_btn ul {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 90%;
    margin: 0 auto;

}

.scene_btn ul li {
    align-items: center;
    background: #ffffffff;
    /* border-bottom: 1px solid #000000ff; */
    /* border-left: 1px solid #000000ff; */
    border-radius: 0;
    /* border-right: 1px solid #000000ff; */
    /* border-top: 1px solid #000000ff; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    flex: none;
    flex-direction: column;
    flex-wrap: nowrap;
    height: 150px;
    justify-content: center;
    margin: 30px 0px 0px 0px;
    /* padding: 15px 30px 15px; */
    transition-duration: 300ms;
    width: 33%;
    max-width: 260px;
    z-index: 1;
}

.scene_btn ul li:hover {
    transform: scale(1.05); /* 少し大きくする */
}

.scene_btn ul li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.scene_btn ul li a img {
    /* width: 32px; */

}

.scene_btn ul li a span {
    font-size: 18px;
    font-weight: bold;
    font-family: "Helvetica", "Arial", "sans-serif"; /* ゴシック体を指定 */
}

/* // ANCHOR: SP SCENE */
@media (max-width: 768px) {

    .scene_btn ul {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
        gap: 1rem;
    }

    .scene_btn ul li {
        width: 100%;
        height: fit-content;
        max-width: 100%;
        margin-top: 10px;
    }

    
}



.news {
    margin-bottom: 1rem;
}

.news div {
    width: 530px;
    height: 200px;
    overflow-y: scroll;
    margin: 0 auto;
    border: solid 2px #000000;
    padding: 1rem;
    background: #ffffff;
}

.news div span.news_day {
    font-size: 0.7rem;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 0.2em;
    padding-top: 0.7em;
}

.sd[data-s-85c19892-5a51-4d74-96a4-8711cb536f06] {
    color: #ff0000ff; /* 赤色 */
    font-size: 20px; /* フォントサイズ */
    overflow-x: visible;
    line-height: 1;
}

.news div p.news_txt {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}



/* // ANCHOR: SP NEWS */
@media (max-width: 768px) {
    .news {
        margin-bottom: 3rem;
    }
    
    .news div {
        width: 90%;
    }

}


/* // ANCHOR: ABOUT US */
.top_aboutus {

    position: relative;
    padding-bottom: 3rem;
}

.top_aboutus:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/top_aboutus_bg.jpg');
    background-size: cover;
    filter: grayscale(1) brightness(0.5);
    z-index: 1;
}

.top_aboutus h2,
.top_aboutus p,
.top_aboutus div,
.top_aboutus a {
    position: relative;
    z-index: 2;
}

.top_aboutus h2 {
    color: #ffffff;
    margin-bottom: 2rem;
}

.top_aboutus p {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.top_aboutus div {
    color: #ffffff;
    width: 590px;
    height: 90px;
    border-radius: 1rem;
    background: #00000047;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 auto 20px;
    font-size:1.25rem;
    font-family: serif;
    font-weight: bold;
    padding: 1rem;
    gap: 1rem;
}

.top_aboutus div span {
    font-size: 2rem;
    font-weight: 700;
    font-family: "Libre Baskerville";
}

.top_aboutus a {
    font-size: 1.1rem;
    font-weight: bold;
    width: 350px;
    height: 57px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    color: #000000ff;;
    background: #ffffff;
    margin: 4rem auto 0;
    transition: transform 300ms ease, box-shadow 300ms ease; /* アニメーションを追加 */
}

.top_aboutus a:hover {
    transform: scale(1.05);
}

/* // ANCHOR: SP TOP ABOUTUS */
@media (max-width: 768px) {

    .top_aboutus h2 {
        font-size: 2.5rem;

    }

    .top_aboutus p { 
        font-size: 1rem;

    }

    .top_aboutus div {
        width: 90%;
        height: 5rem;
        border-radius: 0.7rem;
        font-size: 1rem;
    }

    .top_aboutus div span { 
        font-size: 1.5rem;
    }

    
    .top_aboutus a {

        width: 80%;
        margin-top: 3rem;
    }

}


/* // ANCHOR: TOP GALLERY */
section.top_gallery h2 {
    font-size: 3rem;
    text-align: left;
    line-height: 1;
}

section.top_gallery {
    display: flex;
    max-width: 1280px;
    width: 90%;
    margin-left:auto;
    margin-right:auto;
    gap: 2rem;
}

section.top_gallery div {
    width: 280px;
    flex-shrink: 0;
}

section.top_gallery div p {
    font-size: 1.05rem;
    text-align: justify;
    line-height: 1.6;
    margin-bottom: 3rem;
}

section.top_gallery div a {
    display: flex;
    width: fit-content;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    background: #000000;
    border-radius: 0.5rem;
    padding: 0.5rem 2rem;
    font-size: 1rem;
    transition: transform 300ms ease; 
}

section.top_gallery div a:hover {
    transform: scale(1.05);
}

section.top_gallery ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 1000px) {
    section.top_gallery ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    }
}
section.top_gallery ul li {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

section.top_gallery ul li a img {
    transition: transform 0.4s ease;

}

section.top_gallery ul li a img:hover {
    transform: scale(1.08);
}



/* // ANCHOR: SP TOP GALLERY */
@media (max-width: 768px) {
    section.top_gallery h2 {
        font-size: 2.3rem;
    }
    section.top_gallery {
        flex-direction: column;
        width: 76%;
    }

    section.top_gallery div {
        width: 100%;
    }

    section.top_gallery div p {
        margin-bottom: 2rem;
    }

    section.top_gallery ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 2rem;
    }
    section.top_gallery ul li {
        aspect-ratio: 4 / 3;
    }

    section.top_gallery ul li:nth-of-type(n+3) {
        display: none;
    }


}

/* // ANCHOR: TOP_STAFF  */
section.top_staff {}

section.top_staff ul.top_staff_slide {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}


.top_staff_slide li {
    padding: 0 5px; /* スライド間の余白（調整可） */
    box-sizing: border-box;
}
.top_staff_slide li h3 {
    font-weight: normal;
    text-align: center;
    margin-bottom: 6px;
}

.top_staff_slide li img.stylist {
    width: 100%;
    aspect-ratio: 200 / 260;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 8px;
    object-position: center top; 
}

.top_staff_slide li span {
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    font-weight: normal;
    margin-bottom: 10px;
}

.top_staff_slide li div.links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 2rem;
}

.top_staff_slide li div.links a{
    transition: transform 300ms ease; 
}
.top_staff_slide li div.links a:hover {
    transform: scale(1.05);
}

.top_staff_slide li div.links a.bl_btn {
    background: #333333;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

.top_staff_slide li div.links a.wh_btn {
    background: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

.top_staff_slide li div.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.top_staff_slide li div.sns a i.icon_insta {
    color: transparent;
    font-size: 32px;
    background: linear-gradient(90deg, #ffd600ff, rgb(234, 96, 11) 30%, rgb(237, 58, 46) 40%, rgb(195, 19, 185) 56%, #0418b3ff);
    background-clip: text;
    -webkit-background-clip: text;
}

.top_staff_slide li div.sns a i.icon_insta:before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
}

.top_staff_slide li div.sns a i.icon_x {
    font-size: 32px;
    color: #222222;
}

.top_staff_slide li div.sns a i.icon_x:before {
    content: "\e61a";
}

.top_staff_slide li div.sns a i.icon_tiktok {
    font-size: 32px;
    color: #222222;
}

.top_staff_slide li div.sns a i.icon_tiktok:before {
    content: "\e07b";
}


/* ドットの位置調整 */
.slick-dots {
    text-align: center;
    padding-top: 2rem;
    margin: 0;
}

.slick-dots li {
display: inline-block;
margin: 0 5px;
padding: 0;
}

.slick-dots button {
width: 8px;
height: 8px;
border-radius: 50%;
background: #ccc;
border: none;
padding: 0;
text-indent: -9999px;
cursor: pointer;
transition: background 0.3s;
}

.slick-dots .slick-active button {
background: #333;
}

/* 矢印共通 */
.slick-arrow {
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    font-size: 0;
    background: rgba(255, 255, 255, 0.636);
    border: none;
    width: 25px;
    height: 60px;
    cursor: pointer;
    z-index: 100;
  }
  
  /* 左矢印 */
  .slick-prev {
    left: 4px;
  }
  
  .slick-prev::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    margin: -9px 0 0 -4px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    opacity: 1;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    transform: rotate(135deg);

  }
  
  /* 右矢印 */
  .slick-next {
    right: 2px;
  }
  
  .slick-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
    margin: -9px 0 0 -11px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  



/* // ANCHOR: SP TOP_STAFF */
@media (max-width: 768px) {}


/* // ANCHOR: COUPON */
section.coupon_menu {


}

section.coupon_menu .coupon_wrap {
    background: #eeeeee;
    width: 96%;
    margin: 3rem auto;
    padding: 2rem;
}

.coupon_slide {
    max-width: 1200px;
    margin: 0 auto;
}

.coupon_slide .coupon_detail {
    margin: 0 10px; /* スライド間の余白（調整可） */
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 5px;
    padding: 1.5rem;
}

.coupon_detail .category {
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 10px;
}
.coupon_detail .category span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d2b15eff;
    font-size: 0.9rem;
    color: #ffffff;
    width: fit-content;
    padding: 0.1rem 0.3rem;
}

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

.coupon_detail img {
    margin-bottom: 1rem;
}

.coupon_detail small {
    display: block;
    font-size: 0.7rem;
    color: #ff0000;
    line-height: 1;
    /* margin-bottom: 5px; */
}

.coupon_detail strong {
    color: #ff0000;
    font-size: 4rem;
    display: inline-flex;
    vertical-align: bottom;
    align-items: first baseline;
    gap: 0.7rem;
}

.coupon_detail strong small {
    color: #333333;
    font-size: 1rem;
}

.coupon_detail ul {
    padding-left: 1.5rem;

}

.coupon_detail ul li {
    position: relative;
    margin-bottom: 0.7rem;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1rem;
    /* text-align: justify; */
}

.coupon_detail ul li:before {
    content: "";
    display: block;
    position: absolute;
    width: 1rem;
    height: 0.5rem;
    border-left: 2px solid #333333;
    border-bottom: 2px solid #333333;
    top: 0.25rem;
    left: -1.5rem;
    transform: rotate(-45deg);
    margin-top: 3px;
}

.coupon_detail a.more_btn {
    width: 100%;
    margin: 1.5rem auto 0.5rem;
    font-family: Arial, Helvetica, sans-serif;
}

/* 矢印 */
.slick-arrow {
    position: absolute;
    top: 37%;
    transform: translateY(-50%);
    font-size: 0;
    background: rgba(255, 255, 255, 0.898);
    border: none;
    width: 30px;
    height: 70px;
    cursor: pointer;
    z-index: 5;
  }

.coupon_slide .slick-prev {
left: -25px;
}

.coupon_slide .slick-next {
    right: -25px;
    }
    

/* // ANCHOR: SP COUPON */
@media (max-width: 768px) {
    section.coupon_menu .coupon_wrap {
        width: 100%;
        padding: 1rem;
    }

    .coupon_detail .category {
        margin-bottom: 5px;
    }

    .coupon_detail h3 {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .coupon_detail ul li {
        margin-bottom: 0.2rem;
        font-size: 1rem;
    }

    .coupon_slide .slick-arrow {
       background: rgb(194 194 194 / 50%);
    }

    .coupon_slide .slick-next {
        right: -10px;
    }
    .coupon_slide .slick-prev {
        left: -10px;
    }

}


/* // ANCHOR: TOP COLUMN  */

section.top_column .top_column_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    /* gap: 1.5rem; */
    box-sizing: border-box;
    max-width: 1280px;
    width: 90%;
    margin: 3rem auto 2rem;
}

section.top_column .top_column_wrap article {
    width: 31%;
}

section.top_column .top_column_wrap article a {
    width: 100%;
    height: 100%;
}

section.top_column .top_column_wrap article a div.cl_img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: block;
}
section.top_column .top_column_wrap article a img {
    transition: transform 300ms ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-sizing: border-box;
}
section.top_column .top_column_wrap article:hover a img {
    transform: scale(1.09);
}

.top_column_wrap article h3 {
    display: inline-block;
    font-size: 1.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 1rem 0;
    width: 100%;
}

section.top_column .top_column_wrap article p {
    font-size: 0.9rem;
}

/* // ANCHOR: SP TOP COLUMN */
@media (max-width: 768px) {
    section.top_column .top_column_wrap {
        flex-wrap: wrap;
        gap: 2rem;
    }
    section.top_column .top_column_wrap article {
        width: 100%;
    }
}

/* // ANCHOR: TOP_REVIEW */
section.top_review {
    width: 90%;
    max-width: 1200px;
    margin-right:auto;
    margin-left:auto;
}

/* // ANCHOR: SP */
@media (max-width: 768px) {}


/* // ANCHOR: link_banners */
section.link_banners {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

section.link_banners div {
    width: 33%;
}

section.link_banners div a.img_link {
    position: relative;
    width: 100%;
    height: auto;
    /* aspect-ratio: 350 / 200; */
    aspect-ratio: 320 / 210;
    overflow: hidden;
    display: block;
} 
section.link_banners div span {
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 3;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: bold;
}
section.link_banners div img {
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /* filter: brightness(0.8); */
    transition: transform 300ms ease;
}

section.link_banners div a.img_link:hover img {
    transform: scale(1.09);
}

section.link_banners div a.txt_link {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    border: solid 1px #333333;
    color: #333333;
    padding: 0.35rem;
    margin: 1rem auto;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 300ms ease;
    background: #ffffff;
}

section.link_banners div a.txt_link:hover {
    transform: scale(1.05);
}


/* // ANCHOR: SP link_banners */
@media (max-width: 768px) {
    section.link_banners {
        flex-direction: column;
    }
section.link_banners div {
    width: 100%;
}
}



/* // ANCHOR: 推し活・結婚式・着物　INDEX */
main.oshikatsu {
    background: #fff5f5ff;
}

main.oshikatsu .mainvisual img {
    width: 100%;
}


main.wedding {
    background:#f9e6ceff;
}

main.wedding section.coupon_menu .coupon_wrap {
    background: rgb(249, 241, 231);
}
main.wedding .mainvisual img {
    width: 100%;
}

main.kimono {
    background:#e6f5ffff;
}

main.kimono section.coupon_menu .coupon_wrap {
    background: rgb(216, 238, 255);
}

main.kimono .mainvisual img {
    width: 100%;
}


/* // ANCHOR: サブページ　*/
main.sub {
    padding-top: 13rem;
}

div.line {
    height: 1px;
    width: 80%;
    margin: 3rem auto 1rem;
    background: #e2e2e2;
}

/* // ANCHOR: SP サブページ　*/
@media (max-width: 768px) {
    main.sub {
        padding-top: 8rem;
    }
    div.line {
    width: 90%;
    margin: 2rem auto 0;
    }
}


/* // ANCHOR: COLUMN */
main.column .top_column_wrap {
    width: 70%;
    gap: 2rem 0;

}
@media (max-width: 900px) {
    main.column section.top_column .top_column_wrap article {
        width: 48%;
    }
}

.selectarea {
    width: 80%;
    margin: 0 auto;
    display: flex;
}

.nr_down {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-left: auto;
}

.nr_down::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.nr_down select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: none;
    border-bottom: 2px solid #d0d0d0;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

.nr_down select:focus {
    outline: none;
}

main.column .sns_btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
}

main.column .sns_btn a.fb {
    display: flex;
    align-items: center;
    gap: 0.1rem;
}
main.column .sns_btn i {
color: #0e7bdbff;
font-size: 1.3rem;
}

main.column .art_category {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto 1rem;
    display: flex;
    gap: 0.5rem;
}

main.column .art_category span {

display: flex;
justify-content: center;
align-items: center;
background: rgb(206, 189, 147);
font-size: 0.9rem;
color: #333333;
width: fit-content;
padding: 0.1rem 0.3rem;
border-radius: 4px;
}

main.column .article_main {
    display: flex;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

main.column .article_main img {
    width: 50%;
    max-width: 400px;
    height: fit-content;
}

main.column .article_main h3 {
    font-size: 2rem;
}

main.column .column_page {
    max-width: 1200px;
    width: 90%;
    margin: 3rem auto 2rem;
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
}
main.column .column_page div {
    width: 120px;
}

main.column .column_page a img {
    width: 120px;
}

main.column .column_page a {
    display: block;
    position: relative;
}

main.column .column_page a.g_back {
    margin-right: auto;
}


main.column .column_page a.g_next {
    margin-left: auto;

}

main.column .column_page a:before {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000000a4;
    color: #ffffff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition : 0.3s;
    opacity: 0;
}
main.column .column_page a.g_back:before {
    content: "< BACK";
}

main.column .column_page a.g_next:before {
    content: "NEXT >";

}

main.column .column_page a:hover:before {
    opacity: 1;

}

main.column .column_page a.gc {
    white-space: nowrap;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    padding:  1rem;
    border: solid 1px #cccccc;
    width: 40%;
    transition : 0.3s;
    margin: 0 auto;
}
main.column .column_page a.gc:before {
    content: none;
}
main.column .column_page a.gc:hover {
    background: #cccccc;
    color: #ffffff;
}


/* // ANCHOR: SP COLUMN */
@media (max-width: 768px) {
    main.column section.top_column {
        padding-top: 0;
    }

    main.column section.top_column h2 {
        font-size: 2.5rem; 

    }
    main.column .top_column_wrap {
        width: 80%;
        margin: 1.5rem auto;
    }

    main.column section.top_column .top_column_wrap article {
        width: 100%;
    }

    .selectarea {
        margin-top: 1rem;
    }
    .nr_down {
        margin: 0 auto;
    }

    main.column .sns_btn {
        margin-bottom: 1rem;

    }

    main.column .article_main {
        flex-direction: column;
        gap: 1rem;
    }
    main.column .article_main img {
        width: 100%;
    }

    main.column .column_page {
        gap: 1rem;
    }
    main.column .column_page div {
        width: 4.5rem;
    }
    
    main.column .column_page a img {
        width: 4.5rem;
    }
    main.column .column_page a:before {
        opacity: 1;
        font-size: 0.8rem;
    }

    main.column .column_page a.gc {
        width: 100%;
    }

}

/* // ANCHOR: STAFF */
main.staff {}

main.staff .staff_list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    max-width: 1200px;
    width: 90%;
    margin: 2rem auto;
}

@media (max-width: 1200px) {
    main.staff .staff_list {
    grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 1000px) {
    main.staff .staff_list {
    grid-template-columns: repeat(3, 1fr);
    }
}



section.top_staff ul.staff_list {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}


.staff_list li {

    box-sizing: border-box;
    margin-bottom: 1rem;
}
.staff_list li h3 {
    font-weight: normal;
    text-align: center;
    margin-bottom: 6px;
}

.staff_list li img.stylist {
    width: 100%;
    aspect-ratio: 200 / 260;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 8px;
    object-position: center top; 
}

.staff_list li span {
    text-align: center;
    font-size: 1.2rem;
    width: 100%;
    display: block;
    font-weight: normal;
    margin-bottom: 10px;
}

.staff_list li div.links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.staff_list li div.links a{
    transition: transform 300ms ease; 
}
.staff_list li div.links a:hover {
    transform: scale(1.05);
}

.staff_list li div.links a.bl_btn {
    background: #333333;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

.staff_list li div.links a.wh_btn {
    background: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

.staff_list li div.sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.staff_list li div.sns a i.icon_insta {
    color: transparent;
    font-size: 32px;
    background: linear-gradient(90deg, #ffd600ff, rgb(234, 96, 11) 30%, rgb(237, 58, 46) 40%, rgb(195, 19, 185) 56%, #0418b3ff);
    background-clip: text;
    -webkit-background-clip: text;
}

.staff_list li div.sns a i.icon_insta:before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
}

.staff_list li div.sns a i.icon_x {
    font-size: 32px;
    color: #222222;
}

.staff_list li div.sns a i.icon_x:before {
    content: "\e61a";
}

.staff_list li div.sns a i.icon_tiktok {
    font-size: 32px;
    color: #222222;
}

.staff_list li div.sns a i.icon_tiktok:before {
    content: "\e07b";
}


/* STAFF PROFILE */
main.staff .staff_main {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
}

main.staff .staff_main img {
    width: 300px;
    height: fit-content;
    aspect-ratio: 200 / 260;
    object-fit: cover;
}

main.staff .staff_main .name_area {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
}

main.staff .staff_main .staff_txt h3 {
    font-size: 3rem;
}

main.staff .staff_main .staff_txt h3 small {
    font-size: 1rem;
    display: block;
}

main.staff .staff_main .staff_txt span.certification {
    display: flex;
    color: #ffffff;
    background: #000000;
    border-radius: 9999px;
    width: fit-content;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    line-height: 0.9;
    margin-bottom: 1rem;
}

main.staff .staff_main .staff_txt dl {
    display: flex;
    align-items: center;
    border-bottom:solid 1px  #e5e5e5;
    padding: 0.8rem 0.3rem;
}

main.staff .staff_main .staff_txt dl.top {
    border-top: solid 1px  #e5e5e5;
}

main.staff .staff_main .staff_txt dl dt {
    width: 8em;
    font-weight: bold;
}

main.staff .staff_main .staff_txt dl dd {
    width: calc(100% - 8em);
}

main.staff .staff_main .staff_txt p {
    background: #f4f4f4ff;
    padding: 1em;
    display: block;
    min-height: 8em;
    margin-bottom: 1rem;
    margin-top: 1rem;
}




main.staff .style_gallery .gallery_list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

main.staff .style_gallery .gallery_list a {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
main.staff .style_gallery .gallery_list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/* // ANCHOR: SP STAFF */
@media (max-width: 768px) {
    main.staff .staff_list {
        grid-template-columns: repeat(2, 1fr);
        }

    .staff_list li div.links { 
        flex-direction: column;
        }

    /* STAFF PROFILE */
    main.staff .staff_main {
        flex-direction: column;
    }
    main.staff .staff_main img {
        width: 70%;
        margin: 0 auto;
    }

    main.staff .staff_main .name_area {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    main.staff .staff_main .staff_txt h3 {
        text-align: center;
        font-size: 2.5rem;
    }
    main.staff .staff_main .staff_txt span.certification {
        margin: 0 auto 1rem;
    }

    main.staff .staff_main .staff_txt dl {
        flex-direction: column;
        border-bottom: dotted 1px #c4c4c4;
    }
    
    main.staff .staff_main .staff_txt dl.top {
        border: none;
    }

    main.staff .staff_main .staff_txt dl dt {
        width: 100%;
        text-align: left;

    }

    main.staff .staff_main .staff_txt dl dd {
        width: 100%;
        text-align: left;
    }

    main.staff .style_gallery .gallery_list {
        margin-top: 2rem;
    }
    
    main.staff .style_gallery h2 {
        font-size: 2.5rem;
    }


    main.staff .style_gallery .gallery_list {
        gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    }
}




/* // ANCHOR: privacy */
main.privacy {}
.privacy_txt {
    width: 90%;
    max-width: 1000px;
    margin: 2rem auto;
}

main.privacy h3 {
    font-size: 1.8rem;
}

main.privacy dl {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    padding: 0.3rem 0;
}

main.privacy dl dt {
    width: 7em;

}
main.privacy dl dd:before {
    content: "：";
}

/* // ANCHOR: SP privacy */
@media (max-width: 768px) {}


/* // ANCHOR: SHOP */
main.sub.shop {
    padding-top: 0;
}

main.sub.shop .shop_top {
    height: fit-content;
    position: relative;
}

main.sub.shop .shop_top img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    z-index: 1;
    filter: saturate(2) grayscale(0.4) brightness(0.8);
}

main.sub.shop .shop_top .txt_area {
    position: relative;
    z-index: 2;
    padding:  11rem 2rem 7rem;
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

main.sub.shop .shop_top .txt_area span {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

main.sub.shop .shop_top .txt_area h2 {
    color: #ffffff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    text-align: left;
    gap: 0;

}

main.sub.shop .shop_top .txt_area p {
    font-size: 1.1rem;
    font-weight: bold;
}

main.shop .aboutus {

}

main.shop .aboutus .img_area {
    display: flex;
    width: 90%;
    max-width: 920px;
    margin: 0 auto 2rem;
    gap: 0.7rem;
    
}

main.shop .aboutus .img_area img {
    width: 33%;
}

main.shop .aboutus h3 {
    font-size: 3.5rem;
    text-align: center;
    width: 100%;
    font-family: "zahrah", serif;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: normal;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 1rem;
}

main.shop .aboutus h3 small {
    font-size: 1.1rem;
}

main.shop .aboutus .txt_area {
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 2rem;
    gap: 1.5rem;
}

main.shop .aboutus .txt_area.sc {
    flex-direction: row-reverse;
}

main.shop .aboutus .txt_area img {
    width: 200px;
    height: 150px;
    object-fit: cover;
}

main.shop .aboutus .txt_area div h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

main.shop .aboutus .txt_area div p {
    font-size: 0.8rem;
}

main.shop .map {
    max-width: 900px;
    width: 90%;
    margin: 0 auto 2rem;
}
main.shop .map iframe {
    margin-bottom: 1.5rem;
}
main.shop .map a {
    margin: 0 auto;
    width: 350px;
    display: flex;
    justify-content: center;
    padding: 1rem;
    border-radius: 7px;
    background: #000000;
    color: #ffffff;
    gap: 0.5rem;
}
main.shop .map a i {
    color: #ffffff;
}

main.shop .detail {
    width: 90%;
    max-width: 760px;
    margin: 0 auto 3rem;
}

main.shop .detail dl {
    width: 100%;
    border-bottom: solid 1px #333333;
    padding: 0.6rem 2rem;
}
main.shop .detail dl dt {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.3rem;

}


main.shop .craftsmanship {
    background: #2a1f17;
    padding: 0rem 0 5rem;
}

main.shop .craftsmanship img {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}


/* // ANCHOR: SP SHOP */
@media (max-width: 768px) {

    main.sub.shop .shop_top .txt_area {
        padding:  5rem 1.6rem 4rem;
    }
    main.sub.shop .shop_top .txt_area h2 {
        font-size: 2rem;
    }
    main.sub.shop .shop_top .txt_area p {
        font-size: 0.97rem;
    }

    main.shop .aboutus .img_area {
        justify-content: space-between;
    }
    main.shop .aboutus .img_area img {
        width: 30%;
    }

    main.shop .aboutus h3 {

    }

    main.shop .aboutus .txt_area,
    main.shop .aboutus .txt_area.sc {
        flex-direction: column;
        gap: 0.7rem;
    }
    main.shop .aboutus .txt_area img {
        width: 80%;
        height: 100%;
    }
    main.shop .aboutus .txt_area div h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    main.shop .aboutus .txt_area div p {
        text-align: justify;
    }

    main.shop .map {
        padding-top: 0;
    }
    main.shop .map iframe {
        width: 100%;
    }
    main.shop .map a {
        width: 100%;
    }

    main.shop .detail {
        padding-top: 0;
    }

    main.shop .detail dl {
        padding: 0.5rem 1rem;
    }

    main.shop .craftsmanship {
        background: #2a1f17;
        padding: 0rem 0 2rem;
    }

    main.shop .craftsmanship img {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }


}

/* // ANCHOR: GALLERY */
main.gallery {}

main.gallery .gallery_category {
    width: 70%;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

main.gallery .gallery_category label {
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-family: Arial, Helvetica, sans-serif;
}

main.gallery .gallery_list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

main.gallery .gallery_list a {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
main.gallery .gallery_list a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DETAIL */
main.gallery .gallery_main {
    display: flex;
    justify-content: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
}

main.gallery .gallery_main .gallery_slide {
    width: 300px;
    height: fit-content;
}

main.gallery .gallery_slide img {

    aspect-ratio: 300 / 400;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery_slide .slick-arrow {
    background: #00000044;
    top: 48%;
    height: 40px;
}

.gallery_slide .slick-prev::before,
.gallery_slide .slick-next::before {

    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery_slide .slick-dots {
    padding-top: 1rem;
}

.detail_txt h3 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.detail_txt h3 small {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.detail_txt p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.detail_exp {
    width: 100%;
    background: #fff8eeff;
    padding: 1rem;
}

.detail_exp dl {
    display: flex;
    align-items: center;
    border-bottom:solid 1px rgb(241, 215, 179);
    padding: 0.7rem;
}

.detail_exp dl dt {
    width: 7em;
    font-weight: bold;
    font-size: 1.1rem;
}


.detail_exp dl dd {
    width: calc(100% - 7em);
    display: flex;
    justify-content: flex-start;
    gap: 0.7rem;
}

.detail_exp dl dd span {
    color: #c6c6c6;
}

.detail_exp dl dd span.txt {
    color: #333333;
    display: block;
    width: 5em;
    font-size: 0.9rem;
    font-weight: bold;
}
.detail_exp dl dd span.on {
    color: #1c1c1c;
}

.detail_exp dl dd span:last-child {
    padding-left: 1em;
}



main.gallery .gallery_staff {
    width: 90%;
    max-width:900px;
    margin: 0 auto;
}

main.gallery .gallery_staff h4 {
    font-size: 2.8rem;
    font-weight: normal;
    text-align: center;
    display: block;
    margin-bottom: 2rem;
}

main.gallery .gallery_staff h4 small {
    font-size: 1rem;
    display: block;
}

main.gallery .gallery_staff .staff_main {
    display: flex;
    gap: 1.5rem;
}

main.gallery .gallery_staff .staff_main img {
    width: 300px;
    aspect-ratio: 200 / 260;
    object-fit: cover;
}

main.gallery .gallery_staff .staff_main .staff_txt {

}

.staff_main .staff_txt .name_area {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

main.gallery .gallery_staff .staff_main .staff_txt h5 {
    font-size: 3rem;
}

main.gallery .gallery_staff .staff_main .staff_txt h5 small {
    font-size: 1rem;
    display: block;
}

.staff_main .staff_txt .name_area .sns {
    height: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}


.staff_main .staff_txt .name_area .sns i {
    font-size: 2rem;
}

.staff_main .staff_txt .name_area .sns i.icon_insta {
    color: transparent;
    background: linear-gradient(90deg, #ffd600ff, rgb(234, 96, 11) 30%, rgb(237, 58, 46) 40%, rgb(195, 19, 185) 56%, #0418b3ff);
    background-clip: text;
    -webkit-background-clip: text;
}

.staff_main .staff_txt span {
    display: block;
    padding: 0.4rem 0;
}

.staff_main .staff_txt span.bd {
    display: block;
    padding: 0.7rem 0;
    border-bottom: solid 1px #e5e5e5;
}

.staff_main .staff_txt p {
    background: #f4f4f4ff;
    padding: 1em;
    display: block;
    min-height: 8em;
    margin-bottom: 1rem;
}


.staff_main .staff_txt div.links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    
}

.staff_main .staff_txt div.links a {
    padding: 0.8rem 2rem;
    width: 40%;
}

@media (max-width: 1000px) {
    .staff_main .staff_txt div.links {
        flex-direction: column;
        align-items: center;
    }
    .staff_main .staff_txt div.links a {
        width: 90%;
    }
}

.staff_main .staff_txt div.links a.bl_btn {
    background: #333333;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

.staff_main .staff_txt div.links a.wh_btn {
    background: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-weight: bold;
    font-size: 0.95rem;
}

/* // ANCHOR: SP GALLERY */
@media (max-width: 768px) {
    main.gallery h2 {
        font-size:2.9rem ;
    }
    main.gallery .gallery_category {
        width: 90%;
        gap: 0.5rem 0 ;
        justify-content: flex-start;
    }

    main.gallery .gallery_category label {
        font-size: 0.9rem;
        width: 50%;
    }
    main.gallery .gallery_category label:last-child{
        width: fit-content;
    }

    main.gallery .gallery_list {

        grid-template-columns: repeat(2, 1fr);
    }

    /* DETAIL */
    main.gallery .gallery_main {
        flex-direction: column;
        width: 90%;
    }
    main.gallery .gallery_main .gallery_slide {
        width: 80%;
        margin: 0 auto;
    }

    .detail_txt h3 {
        font-size: 1.5rem;
        text-align: center;
    }
    .detail_txt p {
        font-size: 0.9rem;
    }

    .detail_exp {
        padding: 0.7rem;
    }

    .detail_exp dl {
        padding: 0.5rem 0.3rem;
    }

    .detail_exp dl dt {
        font-size: 0.9rem;
    }
    .detail_exp dl dd {
        font-size: 0.9rem;
        gap: 0.4rem;

    }

    main.gallery .gallery_staff {
        width: 90%;
    }

    main.gallery .gallery_staff .staff_main {
        flex-direction: column;
    }
    main.gallery .gallery_staff .staff_main img {
        width: 80%;
        margin: 0 auto;
    }

    .staff_main .staff_txt .name_area {
        flex-direction: column;
        align-items: center;
        margin-bottom: 1rem;
    }

    main.gallery .gallery_staff .staff_main .staff_txt h5 {
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .staff_main .staff_txt .name_area .sns {
        height: fit-content;
    }
    .staff_main .staff_txt p {
        font-size: 0.9rem;
    }
}



/* // ANCHOR: CONTACT */
main.contact {}

main.contact p.contact_exp {
    padding-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    letter-spacing: normal;
}
main.contact p.contact_exp span {
    color: #ff0000;

}

main.contact form {
    width: 90%;
    max-width: 900px;
    margin: 0 auto 3rem;

}
main.contact form input,
main.contact form textarea {
    border: 0;
    border-radius: 2px;
    padding: 0.7rem;
    background: #efefef;

}
main.contact form input {
    width: 50%;
}

main.contact form input[type="checkbox"] {
    width: fit-content;
}

main.contact form textarea {
    width: 65%;
}

main.contact form .form-group {
    border-bottom: dotted 1px #cccccc;
    padding: 1.5rem 1rem;
}
main.contact form .input {
    display: flex;
}

main.contact form .input label {
    display: block;
    width: 30%;
    max-width: 288px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

main.contact form .input label span {
    color: #ff0000;
}

main.contact form .input label.check {
    width: fit-content;
    display: block;
    font-weight: normal;
    margin-bottom: 0.5rem;
}


main.contact form .form-group p {
    width: 65%;
}

main.contact form .confirm {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
main.contact form .confirm button {
    width: 45%;
    max-width: 300px;
    border-radius: 4px;
    margin: 3rem 0;

}

main.contact form .confirm button.back {
    color: #ffffff;
    background: #828282;
    border: 0;
}

/* // ANCHOR: SP CONTACT */
@media (max-width: 768px) {

    main.contact form .form-group {
        padding: 0.8rem;
    }

    main.contact form .form-group p {
        font-size: 0.9rem;
        width: 100%;
    }

    main.contact form .input {
        display: flex;
        flex-direction: column;
    }


    main.contact form input {
        width: 100%;
    }

    main.contact form textarea {
        width: 100%;
        height: 8rem;
    }
    
    main.contact form .input label {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    main.contact form .confirm {
        margin: 2rem 0 3rem; 
        flex-direction: column;
        gap: 1rem;
        
    }
    main.contact form .confirm button {
        width: 70%;
        margin: 0 auto;
    }

}

/* // ANCHOR: teams */
main.teams ul.nums {

    padding-left: 1.5em;
}
main.teams ul.nums li {
    list-style: decimal;
    margin-bottom: 0.5rem;

}

main.teams ul.dot {

    padding-left: 1.5em;
}

main.teams ul.dot li {
    list-style: disc;
    margin-bottom: 0.5rem;
}


/* // ANCHOR: SP teams*/
@media (max-width: 768px) {}

/* // ANCHOR: */

/* // ANCHOR: SP */
@media (max-width: 768px) {}