@charset "utf-8";
/* CSS Document */

/*=================================================================*/	
/*　　　　　　　　　　　　　　　general　　　　　　　　　　　　　　　　  */
/*=================================================================*/

html,body{
	font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	color: #000;
	font-size: 16px;
	letter-spacing: 0.05rem;
    word-break: break-all;
}
a:hover {opacity: 0.8; transition:0.3s;}
p {margin: 0; padding: 0;line-height: 26px;text-align: justify;font-feature-settings: "palt";
}
ul { padding: 0; margin: 0;}
.wrapper { margin-bottom: 0;}
#content{
    display: block;
}
#main{
	width: 100%;
}

@media only screen and (max-width: 1024px){
    #content{
        padding: 0;
    }
}

@media only screen and (max-width: 767px){
p{
    font-size: 14px;
    line-height: 24px;
}
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　css変数　　　　　　　　　　　　　　　    */
/*=================================================================*/
:root {
    --brand-primary: #81373C;
    --brand-secondary: #DDDDDD;
	--font-color: #000;
    --font-writing-color: #A5A5A5;
    --title-font: 'Libre Baskerville', serif;
    --title-font-ja: 'Shippori Mincho', serif;
}

/*=================================================================*/	
/*　　　　　　　　　　          move　　　　　　　　　　　             */
/*=================================================================*/
/*========= じわっと出現 ===============*/
.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  
  @keyframes blurAnime {
    from {
      filter: blur(10px);
      transform: scale(1.02);
      opacity: 0;
    }
  
    to {
      filter: blur(0);
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .blurTrigger {
    opacity: 0;
  }

/* 左へ */
.flipLeft{
    animation-name:flipLeftAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    perspective-origin:left center;
    opacity:0;
    }
    
    @keyframes flipLeftAnime{
      from {
       transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
      opacity: 0;
      }
    
      to {
      transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
      opacity: 1;
      }
    }

.flipLeftTrigger{
    opacity: 0;
}

/* 下から */
.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
        from {
          opacity: 0;
        transform: translateY(100px);
        }
      
        to {
          opacity: 1;
        transform: translateY(0);
        }
      }

.fadeUpTrigger{
    opacity: 0;
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　Top-general　　　　　　　　　　　　　　　*/
/*=================================================================*/
body.top #content{
    width: 100%;
    margin-top: 180px;
}
body.top section.sect{
    max-width: 1200px;
    width: 95%;
    margin-bottom: 120px;
}
#mainVisual{
   margin: 100px auto 0;
}
@media only screen and (max-width: 1024px){
    body.top #main section.sect{
        width: 95%;
    }
    body.top #main section.sect02,body.top #main section.sect05,body.top #main section.sect06{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    body.top #main section.sect{
        margin: 0 auto;
    }
    body.top #content{
        margin-top: 60px;
    }
    #mainVisual{
        margin-top: 80px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　drower menu　　　　　　　　　　　　　　　*/
/*=================================================================*/
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    padding: 5% 2% 2%;
    background: #626262;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: perspective(500px) rotateY(90deg);
    transform: perspective(500px) rotateY(90deg);
    opacity: 0;
    box-shadow: 0px 0px 5px #1E1E1E;
}
.g-nav-list{
margin-bottom: 30px;
}
.drawer-menu li {
text-align: center;
}
.drawer-menu li a {
display: block;
/* height: 50px; */
line-height: 45px;
font-size: 16px;
font-family: var(--title-font);
color: #fff;
-webkit-transition: all .8s;
transition: all .8s;
}
.drawer-menu ul.g-nav-list li a:hover {
color: #1a1e24;
background: #96908D;
}
.check {
display: none;
}
.menu-btn {
position: absolute;
display: block;
top: 30px;
left: 20px;
display: block;
width: 40px;
height: 40px;
font-size: 10px;
text-align: center;
cursor: pointer;
z-index: 3;
}
.bar {
position: absolute;
top: 0;
left: 0;
display: block;
width: 40px;
height: 2px;
background: #000;
-webkit-transition: all .5s;
transition: all .5s;
-webkit-transform-origin: left top;
-ms-transform-origin: left top;
transform-origin: left top;
}
.bar.middle {
top: 12px;
opacity: 1;
}
.bar.bottom {
top: 24px;
-webkit-transform-origin: left bottom;
-ms-transform-origin: left bottom;
transform-origin: left bottom;
}
.menu-btn__text {
position: absolute;
bottom: -15px;
left: 0;
right: 0;
margin: auto;
color: #fff;
-webkit-transition: all .5s;
transition: all .5s;
display: block;
visibility: visible;
opacity: 1;
}

/* Hover Effects */
.menu-btn:hover .bar {
background: #000;
}
.menu-btn:hover .menu-btn__text {
color: #999;
}
.close-menu {
position: fixed;
top: 0;
left: 300px;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0);
-webkit-transition-property: all;
transition-property: all;
-webkit-transition-duration: .3s;
transition-duration: .3s;
-webkit-transition-delay: 0s;
transition-delay: 0s;
visibility: hidden;
opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
-webkit-transition-delay: .3s;
transition-delay: .3s;
-webkit-transform: none;
-ms-transform: none;
transform: none;
opacity: 1;
z-index: 2;
}
.check:checked ~ .contents {
-webkit-transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: translateX(-300px);
-ms-transform: translateX(-300px);
transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
visibility: hidden;
opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
width: 56px;
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
width: 56px;
top: 40px;
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
-webkit-transition-duration: 1s;
transition-duration: 1s;
-webkit-transition-delay: .3s;
transition-delay: .3s;
background: rgba(0, 0, 0, .5);
visibility: visible;
opacity: 1;
z-index: 3;
}

.g-nav_snsLink{
    display: flex;
    justify-content: space-around;
    width: 60%;
    margin: 0 auto 40px;
    /* gap: 30px; */
}
.g-nav_snsLink li{
    width: 35px;
}
.g-nav_reserve p{
    margin-bottom: 20px;
}
.g-nav_reserve p a{
    display: block;
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 14px;
    font-weight: normal;
    text-align: center;
    color: #fff;
    background: #000;
    padding: 5px;
}
.g-nav_reserve p a::before{
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(/img/upload/2022/06/tel_icon.png) no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-right: 1rem;  
}
.g-nav_reserve p.reserve_btn a::before{
    background: url(/img/upload/2022/06/reserve_icon.png) no-repeat;
    background-size: contain;
}

@media only screen and (max-width: 1024px){
    .drawer-menu{
        padding: 10% 2% 10%;
    }
}

@media only screen and (max-width: 767px){
    .menu-btn{
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
    .bar{
        width: 30px;
    }
    .bar.middle{
        top: 10px;
    }
    .bar.bottom{
        top: 20px;
    }
    .drawer-menu{
        width: 100%;
        height: 100vh;
        padding: 10% 5% 5%;
    }
    .drawer-menu li a{
        font-size: 14px;
        line-height: 34px;
    }
    .g-nav-list{
        margin-bottom: 20px;
    }
    .g-nav_snsLink{
        display: none;
    }
    .g-nav_reserve p{
        margin-bottom: 10px;
    }
    .close-menu{
        left: 100%;
    }
    .check:checked ~ .menu-btn .bar.top{
        width: 40px;
    }
    .check:checked ~ .menu-btn .bar.bottom{
        width: 40px;
        top: 28px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　keyvisial　　　　　　　　　　　　　　　　*/
/*=================================================================*/
/*======= header =======*/
header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 800;
    width: 100%;
    background: #fff;
    border-top: none;
}
header #headerInner{
    width: 100%;
    min-height: auto;
    height: 80px;
    display: block;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.nav_recruit{
    width: 150px;
    height: 80px;
    text-align: center;
    margin-left: auto;
} 
.nav_recruit a{
    display: block;
    font-family: var(--title-font);
    font-size: 20px;
    color: #fff;
    background-color: #000;
    line-height: 80px;
}
.nav_reserve{
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 200;
    width: 100px;
}
.nav_reserve a{
    display: block;
}
.nav_reserve a:hover{
    opacity: 0.9;
}

header #headerInner .logoArea{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}
header #headerInner .logoArea a.logo{
    width: 120px;
    /* position: static;
    display: flex;
    justify-content: center; */
}

/*======= slider ======*/
.slider_key {
    width:94%;
    margin:0 auto;
}
.slider_key img {
    width:60vw;
}
.slider_key .slick-slide {
    transform: scale(0.8);
    transition: all .5s;
    opacity: 0.5;
}
.slider_key .slick-slide.slick-center{
    transform: scale(1);
    opacity: 1;
}

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    height: 15px;
    width: 15px;
}
.slick-prev {
    left: -1.5%;
    transform: rotate(-135deg);
}
.slick-next {
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
    bottom: -50px !important;
}
.slick-dots li {
    display:inline-block;
    margin:0 5px;
}
.slick-dots button {
    color: transparent;
    outline: none;
    width:10px !important;
    height:10px !important;
    display:block;
    border-radius:50%;
    background:#ccc;
}
.slick-dots .slick-active button{
    background:transparent;
}
.slick-dots li button:before{
    font-size: 20px !important;
}

@media only screen and (max-width: 767px){
    header #headerInner{
        height: 50px;
    }
    header #headerInner .logoArea a.logo{
        width: 70px;
        margin-left: 0;
    }
    .nav_recruit{
        width: 90px;
        height: 50px;
    }
    .nav_recruit a{
        font-size: 14px;
        line-height: 50px;
    }
    .nav_reserve{
        width: 80px;
        bottom: 5px;
        right: 5px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　       section-title　　　　　　　　　　　       */
/*=================================================================*/
body.top section.sect .titleArea{
    border-bottom: none;
}
body.top section.sect .titleArea h2{
    color: #000;
    text-align: left;
}
body.top section.sect .titleArea h2 span.en{
    font-family: var(--title-font);
    font-size: 3.6rem;
    letter-spacing: 0.05em;
}
/* ====== タイトルライン ===== */
body.top section.sect.sect03 .titleArea h2 span.en{
    position: relative;
    display: block;
    margin-bottom: 30px;
}
body.top section.sect.sect03 .titleArea h2 span.en::after{
    content: '';
    display: inline-block;
    width: calc(100% - 20rem);
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #000;
}
/* ====== /タイトルライン ===== */

body.top section.sect .titleArea.line_title h2{
    padding-bottom: 1em;
}

@media only screen and (max-width: 1024px){
    body.top #main section.sect{
        margin-bottom: 5rem;
    }
    body.top #main section.sect .titleArea{
        border-bottom: none;
        padding: 0;
        margin-bottom: 30px;
    }
    body.top #main section.sect .titleArea h2{
        font-family: var(--title-font);
    }
    body.top section.sect .titleArea.line_title{
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px){
    body.top #main section.sect.sect03{
        margin-bottom: 80px;
    }
    body.top section.sect.sect03 .titleArea h2 span.en::after{
        display: none;
    }
    body.top #main section.sect.sect03 .titleArea h2 span.en{
        border-bottom: 2px solid #000;
        padding-bottom: 15px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　       more btn　　　　　　　　　　　            */
/*=================================================================*/
.link_btn{
    display: flex;
    justify-content: right;
}
.link_btn.display_sp{
    display: none;
}
.more_btn{
    position: relative;
    display: inline;
    width: 100%;
    text-align: right;
    color: #000;
    margin:0 10px 20px 10px;
}
.more_btn:hover{
    opacity: 0.7;
}
.more_btn span{
    font-family: var(--title-font);
    transition: all .2s linear;
}

/*波形の設定*/
.more_btn:hover::before {
    content: '';
    position: absolute;
    right:-20%;
    top:-50%;
    border: 1.5px solid #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    opacity:1;
    animation:1s circleanime2 forwards;
}

/*波形が広がるアニメーション*/
@keyframes circleanime2{
    0%{
    transform: scale(0);
    }
    100%{
    transform:scale(2);
    opacity: 0;
    }
}

.btn_line{
    position: relative;
    display: inline-block;
}
/*線の設定*/
.btn_line::before,
.btn_line::after{
    content:'';
    position:absolute;
    z-index:1;
    bottom:-20px;
    left:0;  
    background:#333;
    width:125%;
    height:2px;
    transition:all 0.3s ease-in-out;
}

    /*hover時に伸びる線の形状*/   
    .btn_line::after{
    width:0;
    background:#ccc;
}

    /*hover時に100%に伸びる*/   
    .btn_line:hover::after {
    width:125%;
}

/*hover時に矢印が移動*/   
.btn_line:hover span::after {
    right:15px;
}

/* 矢印が右に移動 */
.btn_allow{
    position: absolute;
    top:5px;
    right: -28px;
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}

@media only screen and (max-width: 1024px){
.link_btn{
    margin-right: 20px;
}
}
@media only screen and (max-width: 767px){
    .link_btn{
        margin-right: 20px;
    }
    .link_btn.display_pc{
        display: none;
    }
    .link_btn.display_sp{
        display: block;
    }
    .btn_line::before, .btn_line::after{
        width: 105%;
        bottom: -15px;
    }
    .btn_allow{
        right: -18px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　Concept　　　　　　　　　　　　　　　　  */
/*=================================================================*/
body.top section.sect.sect01{
    display: flex;
    /* gap: 3%; */
    margin-bottom: 200px;
}
.concept_img,.concept_text{
    width: 50%;
}
.concept_img span{
    display: block;
    box-shadow: 5px 5px 8px 1px rgb(0 0 0 / 7%);
}
.concept_img span:first-of-type{
    width: 80%;
}
.concept_img span:last-of-type{
    width: 40%;
    margin: -80px 0 0 auto;
}
.concept_text{
    padding: 0 5%;
    box-sizing: border-box;
}
.concept_text h2{
    font-family: var(--title-font-ja);
    text-align: left;
    line-height: 36px;
    margin-bottom: 30px;
}
.concept_title_en{
    width: 90%;
    margin: -30px 0 10px -50px;
}
.concept_description{
    line-height: 32px;
    margin-bottom: 30px;
}
body.top section.sect.sect01 .link_btn{
    margin-right: 5%;
}

@media only screen and (max-width: 1200px){
    body.top #main section.sect.sect01{
        margin-bottom: 10rem;
    }
}

@media only screen and (max-width: 900px){
    body.top #content{
        margin-top: 0;
    }
    body.top #main section.sect.sect01{
        flex-direction: column-reverse;
    }
    .concept_title_en{
        width: 77%;
        margin-top: 20px;
    }
    .concept_text h2{
        margin-top: -20px;
    }
    .concept_img{
        width: 100%;
    }
    .concept_img span:last-of-type{
        margin: -150px 0 0 auto;
    }
    .concept_text{
        width: 90%;
        margin: 0 auto 80px;
    }
}

@media only screen and (max-width: 767px){
    .concept_text{
        width: 100%;
        margin-bottom: 60px;
    }
    .concept_title_en{
        width: 85%;
        margin-left: 0;
    }
    .concept_text h2{
        font-size: 18px;
        line-height: 30px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .concept_text p{
        line-height: 28px;
        margin: 0;
        margin-top: 20px;
    }
    .concept_img span:last-of-type{
        margin-top: -80px;
    }
    body.top section.sect.sect01 .link_btn{
        margin-top: 20px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　style　　　　　　　　　　　　　　　　    */
/*=================================================================*/
body.top section.sect.sect02{
    width: 100%;
    max-width: 100%;
    position: relative;
}
body.top section.sect.sect02::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -100;
    width: 95%;
    height: 100%;
    background: url(/img/upload/2022/06/style_bg.jpg) no-repeat;
    background-size: cover;
    opacity: 0.5;
}
.title_bg_block{
    position: absolute;
    top: -80px;
    left: 0;
    z-index: -100;
    width: 80%;
    height: 500px;
    background-color: var(--brand-secondary);
}
body.top section.sect.sect02 .titleArea{
    position: relative;
    z-index: 100;
    margin-bottom: 60px;
}
body.top section.sect .titleArea h2{
    position: relative;
    z-index: 100;
    float: none;
}
body.top section.sect .titleArea h2 span.en{
    font-family: var(--title-font);
    font-size: 3.6rem;
    letter-spacing: 0.05em;
}
body.top section.sect.sect02 .titleArea p{
    position: absolute;
    top: 0;
    left: 300px;
    width: 30%;
}
.style_inner{
    width: 95%;
    max-width: 1200px;
    padding-bottom: 100px;
    margin: 0 auto;
}
body.top section.sect.sect02 .wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2%;
    margin-bottom: 60px;
}
body.top #main section.sect.sect02 ul.wrapper li{
    width: 100%;
    margin: 0;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(2){
    margin-top: 20px;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(3){
    margin-top: 40px;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(4){
    margin-top: 60px;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(5){
    margin-top: -40px;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(6){
    margin-top: -20px;
}
body.top #main section.sect.sect02 ul.wrapper li:nth-child(8){
    margin-top: 20px;
}
body.top #main section.sect.sect02 ul.wrapper li a{
    display: block;
    position: relative;
    overflow: hidden;
}
body.top #main section.sect.sect02 ul.wrapper li a img{
    transition: transform .6s ease;
}
body.top #main section.sect.sect02 ul.wrapper li a:hover img{
    transform: scale(1.1);
}
/* body.top #main section.sect.sect02 ul.wrapper li a::before{
    content: '';
    display: block;
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px solid var(--brand-primary);
} */
body.top section.sect.sect02 .eyestyle_content ul.wrapper li a::before{
    border: 2px solid #ABABAB;
}

@media only screen and (max-width: 1024px){
    body.top section.sect.sect02::before{
        width: 90%;
    }
    .style_inner{
        padding-bottom: 80px;
    }
    body.top #main section.sect02 .titleArea{
        margin-bottom: 40px;
    }
    body.top section.sect.sect02 .titleArea p{
        top: -17px;
        left: 120px;
        width: 28%;
    }
    body.top #main section.sect.sect02 ul.wrapper li,body.top #main section.sect.sect02 ul.wrapper li:nth-child(3n+2){
        margin: 0;
    }
    body.top #main section.sect.sect02 ul.wrapper li:nth-child(2){
        margin-top: 20px;
    }
    body.top #main section.sect.sect02 ul.wrapper li:nth-child(5){
        margin-top: -40px;
    }
    body.top #main section.sect.sect02 ul.wrapper li:nth-child(6){
        margin-top: -20px;
    }
    body.top #main section.sect.sect02 ul.wrapper li:nth-child(8){
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px){
    body.top #main section.sect.sect02{
        margin-bottom: 0;
    }
    body.top #main section.sect.sect02 .titleArea h2 span.en{
        font-size: 2rem;
    }
    body.top section.sect.sect02 .titleArea p{
        width: 60%;
        top: -25px;
    }
    body.top section.sect.sect02::before{
        width: 100%;
    }
    .title_bg_block{
        top: -60px;
        height: 250px;
    }
    .eyestyle_content .title_bg_block{
        top: -40px;
        height: 200px;
    }
    .eyestyle_content .style_inner{
        padding-bottom: 60px;
    }
    body.top section.sect.sect02 .wrapper{
        display: block;
        width: 85%;
        margin: 0 auto 50px;
    }
    body.top #main section.sect.sect02 ul.wrapper li,body.top #main section.sect.sect02 ul.wrapper li:nth-child(3n+2),body.top #main section.sect.sect02 ul.wrapper li:nth-child(3),body.top #main section.sect.sect02 ul.wrapper li:nth-child(4),body.top #main section.sect.sect02 ul.wrapper li:nth-child(6){
        margin: 0;
    }
    body.top #main section.sect.sect02 ul.wrapper li{
        top: 0;
    }

    /* ----- slick slider -----*/
    ul.wrapper.slider_style .slick-dots{
        display: flex !important;
        width: 60% !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        bottom: -20px !important;
    }
    ul.wrapper.slider_style .slick-dots li button:before{
        font-size: 20px !important;
    }
    ul.wrapper.slider_style .slick-prev,.slick-next{
        left: -10% !important;
        z-index: 200;
        width: 25px !important;
        height: 50px !important;
    }
    ul.wrapper.slider_style .slick-next{
        left: auto !important;
        right: -10% !important;
    }
    ul.wrapper.slider_style .slick-prev:before, ul.wrapper.slider_style .slick-next:before{
        content:'' !important;
        display: inline-block;
        width: 25px !important;
        height: 50px !important;
        background: url(/img/upload/2022/06/arrow_l.png) no-repeat;
        background-size: contain;
        opacity: 1;
    }
    ul.wrapper.slider_style .slick-next:before{
        background: url(/img/upload/2022/06/arrow_r.png) no-repeat;
        background-size: contain;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　Other_content　　　　　　　　　　　　　 */
/*=================================================================*/
.other_linkList{
    display: flex;
    justify-content: space-around;
}
.other_linkList li{
    position: relative;
    width: 28%;
    padding-top: 28%;
    cursor: pointer;
    overflow: hidden;
}
.other_linkList li::before{
    content: '';
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    width: 90%;
    padding-top: 90%;
    background: rgba(171 167 167 / 0.5);
}
.other_linkList li::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url(/img/upload/2022/06/menu_img.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.other_linkList li:nth-of-type(2)::after{
    background: url(/img/upload/2022/06/coupon_img.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.other_linkList li:nth-of-type(3)::after{
    background: url(/img/upload/2022/06/staff_img.jpg) no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-size: cover;
}
.other_linkList li a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 300;
}
.other_linkList li p{
    position: absolute;
    top: 15px;
    left: 44px;
    z-index: 200;
    color: #fff;
    font-family: var(--title-font);
    font-size: 40px;
    transform: rotate(90deg);
    transform-origin: left top;
}
.other_linkList li:hover::after{
    opacity: .8;
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    }

    @media only screen and (max-width: 900px){
        .other_linkList li p{
            top: 10px;
            left: 36px;
            font-size: 32px;
        }
    }

    @media only screen and (max-width: 767px){
        .other_linkList{
            display: block;
        }
        .other_linkList li{
            width: 100%;
            aspect-ratio: 4 / 3;
            padding-top: 0;
            margin-bottom: 30px;
        }
        .other_linkList li::before{
            width: 90%;
            aspect-ratio: 4 / 3;
            padding-top: 0; 
        }
        .other_linkList li p{
            font-size: 10vw;
            top: 5%;
            left: 12%;
        }
    }

/*=================================================================*/	
/*　　　　　　　　　　　　　　　news　　　　　　　　　　　　　　　　     */
/*=================================================================*/
body.top section.sect.sect04 .section_inner{
    display: flex;
}
.news_titleArea{
    width: 30%;
}
body.top section.sect.sect04 .titleArea{
position: relative;
margin-bottom: 80px;
}
body.top section.sect.sect04 .titleArea p{
    position: absolute;
    top: 30px;
    left: 80px;
    width: 60%;
}
body.top section.sect.sect04 .link_btn{
        justify-content: left;
    }
body.top section.sect.sect04 div.wrapper{
    width: 70%;
    padding-left: 10%;
    box-sizing: border-box;
}
body.top section.sect.sect04 .wrapper ul.wrapper{
    padding-left: 0;
}
body.top section.sect.sect04 ul.wrapper li{
    position: relative;
    border-bottom: 1px solid #000;
    text-align: left;
    padding: 15px;
}
body.top section.sect.sect04 ul.wrapper li a.txt p{
    display: inline;
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    font-weight: 500;
    padding-right: 0.5rem;
}
body.top section.sect ul.wrapper li a.txt span{
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
}
body.top section.sect ul.wrapper li a.txt h3{
    font-size: 14px;
    color: #000;
    margin: 0.5rem 0 0;
}
.news_btn{
    display: block;
    width: 30px;
    height: 30px;
    background-color: #000;
    margin-left: auto;
    position: absolute;
    right: 0;
    bottom: 0;
}
.news_btn::before{
    content: '';
    position: absolute;
    top: 9px;
    left: 7px;
    width: 10px;
    height: 10px;
    border-top: 1.5px solid #fff;
    border-right: 1.5px solid #fff;
    transform: rotate(45deg);
}
@media only screen and (max-width: 1024px){
    body.top #main section.sect.sect04{
        margin-bottom: 80px;
    }
    body.top #main section.sect.sect04 .titleArea{
        margin-bottom: 70px;
    }
    body.top section.sect.sect04 .titleArea p{
        top: 10px;
        left: 40px;
        width: 70%;
    }
    body.top #main section.sect ul.wrapper li a.txt h3{
        color: #000;
        font-size: 14px;
        margin-top: 5px;
    }
    
}

@media only screen and (max-width: 767px){
    body.top section.sect.sect04 .section_inner{
        display: block;
    }
    .news_titleArea{
       
        width: 100%;
    }
    body.top #main section.sect.sect04 .titleArea{
        margin-bottom: 40px;
    }
    body.top section.sect.sect04 .titleArea p{
        width: 50%;
    }
    body.top section.sect.sect04 div.wrapper{
        width: 100%;
        padding-left: 0;
        margin-bottom: 30px;
    }
    body.top section.sect.sect04 ul.wrapper li{
        padding: 15px 10px 10px;
    }
    body.top section.sect ul.wrapper li a.txt span{
        font-size: 12px;
    }
    body.top #main section.sect ul.wrapper li a.txt h3{
        font-size: 14px;
    }
    .news_btn{
        width: 20px;
        height: 20px;
    }
    .news_btn::before{
        top: 7px;
        left: 6px;
        width: 5px;
        height: 5px;
    }
    body.top section.sect.sect04 .link_btn.link_btn.display_sp{
        display: flex;
        justify-content: right;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　blog　　　　　　　　　　　　　　　　    */
/*=================================================================*/
body.top section.sect.sect05{
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 50px 0 80px;
}
body.top section.sect.sect05::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -100;
    width: 60%;
    height: 100%;
    background-color: var(--brand-secondary);
}
body.top section.sect.sect05 .section_inner{
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
body.top section.sect.sect05 .titleArea{
    position: relative;
    margin-bottom: 60px;
    }
body.top section.sect.sect05 .titleArea p{
    position: absolute;
    top: 0;
    left: 40px;
    width: 20%;
}
body.top section.sect.sect05 ul.wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    align-items: flex-start;
    gap: 2%;
    margin-bottom: 40px;
    /* display: flex;
    gap: 2%;
    margin-bottom: 20px; */
}
body.top section.sect.sect05 ul.wrapper li{
    box-shadow: 5px 5px 5px #c9c9c9;
    cursor: pointer;
    transition: all .3s;
}
body.top section.sect.sect05 ul.wrapper li:hover{
    transform: translate3d(0, -10px, 1px);
}
.blog_img{
    position: relative;
}
.blog_img img{
    width: 100%;
}
/* body.top section.sect.sect05 ul.wrapper li{
    position: relative;
} */
body.top section.sect.sect05 ul.wrapper li a.txt .blog_img span{
    position: absolute;
    display: block;
    margin-top: -10px;
    }
body.top section.sect.sect05 ul.wrapper li a.txt h3{
    font-size: 14px;
    margin-bottom: 10px;
}
.blog_text{
    z-index: -100;
    background-color: #fff;
    text-align: left;
    padding: 10px 10px 0;
}
body.top section.sect.sect05 ul.wrapper li a.txt .blog_text p{
    display: block;
    font-size: 14px;
    margin-top: 15px;
}
body.top section.sect.sect05 ul.wrapper li a.txt .blog_text p::before{
    content: '';
    display: inline-block;
    width: 3px;  
    height: 1rem; 
    background-color: #000;
    vertical-align: middle;
    margin-right: 0.5rem;
}
body.top section.sect.sect05 ul.wrapper li a.txt .blog_text span.blog_date{
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    font-weight: 500;
    color: #AFAFAF;
    background-color: transparent;
    padding: 0;
}
body.top section.sect.sect05 .link_btn{
    justify-content: left;
}

@media only screen and (max-width: 1024px){
    body.top #main section.sect.sect05 .titleArea{
        margin-bottom: 60px;
    }
    body.top section.sect.sect05 .titleArea p{
        top: -10px;
    }
    body.top section.sect.sect05 ul.wrapper{
        margin-bottom: 30px;
    }
    body.top #main section.sect ul.wrapper li a.txt p{
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px){
    body.top section.sect.sect05{
        background-color: var(--brand-secondary);
        margin-bottom: 0;
    }
    body.top section.sect.sect05::before{
        display: none;
    }
    body.top section.sect.sect05 .section_inner{
        width: 90%;
    }
    body.top section.sect.sect05 .titleArea p{
        top: 0;
        width: 50%;
    }
    body.top section.sect.sect05 ul.wrapper{
        display: block;
    }
    body.top section.sect.sect05 ul.wrapper li{
        z-index: 100;
        margin-bottom: 30px;
    }
    body.top #main section.sect ul.wrapper li a.txt p{
        font-size: 14px;
    }
    body.top section.sect.sect05 ul.wrapper li a.txt .blog_text p::before{
        margin-right: 5px;
    }
    body.top section.sect.sect05 ul.wrapper li a.txt .blog_text span.blog_date{
        font-size: 16px;
    }
    body.top section.sect.sect05 .link_btn{
        justify-content: right;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　shop date　　　　　　　　　　　　　　　　*/
/*=================================================================*/
body.top section.sect.shopDate{
    width: 100%;
    max-width: 100%;
}
.sect_shopDate_inner{
    width: 95%;
    max-width: 1200px;
    margin: 0 auto 60px;
}
body.top section.sect.shopDate .titleArea{
    position: relative;
    z-index: 200;
}
body.top section.sect.shopDate .titleArea p{
    position: absolute;
    top: -20px;
    left: 240px;
    width: 25%;
}
.shopDate_wrapper{
    position: relative;
}
.shop_img{
    position: absolute;
    top: -60px;
    left: 0;
    z-index: 100;
    width: 45%;
}
.shopDate_list{
    position: relative;
    width: 70%;
    margin-left: auto;
    background: var(--brand-secondary);
    padding: 5%;
    margin-top: 100px;
    box-sizing: border-box;
}
.shopDate_inner{
max-width: 500px;
text-align: left;
margin-left: auto;
}
.shopDate_list h5{
    font-size: 18px;
    margin-bottom: 20px;
}
.shopDate_list ul li{
    margin-bottom: 0.5em;
}
.shopDate_list ul li:last-of-type span{
    font-family: 'Alegreya SC', serif;
    font-size: 24px;
}
.shopDate_list table{
    margin-bottom: 40px;
}
.shopDate_list table tr{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #000;
}
.shopDate_list table tr::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 25%;
    height: 4px;
    background-color: #000;
}
.shopDate_list table tr th{
    width: 25%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}
.shopDate_list table tr td{
    width: 75%;
    padding: 15px;
    box-sizing: border-box;
}
.shopDate_wrapper .link_btn{
position: absolute;
bottom: 50px;
left: 40px;
}
/* .shopDate_wrapper .btn_line::before, .shopDate_wrapper .btn_line::after{
    color: #fff;
}
.shopDate_wrapper .more_btn{
    color: #fff;
} */
.shopDate_wrapper .btn_allow{
    border-top: 1px solid #000;
    border-right: 1px solid #000;
}
.shopDate_wrapper .btn_line::after{
    background: #000;
}
body.top section.sect.shopDate iframe{
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

@media only screen and (max-width: 1200px){
    .shop_img{
        width: 40%;
    }
}

@media only screen and (max-width: 1024px){
    body.top #main section.sect.shopDate{
        width: 100%;
    }
    .shopDate_inner{
        max-width: 85%;
        margin-bottom: 40px;
    }
    body.top section.sect.shopDate .titleArea p{
        left: 130px;
    }
    .shopDate_list table{
        margin-bottom: 0;
    }
    .shopDate_wrapper .link_btn{
        left: auto;
        right: 8%;
    }
}

@media only screen and (max-width: 900px){
    .shop_img{
        position: relative;
        top: 0;
        width: 80%;
    }
    .shopDate_list{
        width: 80%;
        padding: 18% 5% 5%;
        margin-top: -90px;
    }
    .shopDate_inner{
        max-width: 100%;
        margin-bottom: 0;
    }
    .shopDate_list table{
        margin-bottom: 50px;
    }
    .shopDate_wrapper .link_btn{
        left: auto;
        right: 40px;
    }
}

@media only screen and (max-width: 767px){
    body.top section.sect.shopDate .titleArea p{
        width: 55%;
        top: -10px;
    }
    .shop_img{
        display: block;
        width: 90%;
        position: relative;
        top: auto;
        left: auto;
        margin: 0 auto;
    }
    .shopDate_list{
        width: 100%;
        padding: 100px 15px 30px;
        margin-top: -60px;
    }
    .shopDate_list h5{
        font-size: 16px;
    }
    .shopDate_list ul li{
        font-size: 14px;
    }
    .shopDate_list ul li:last-of-type span{
        font-size: 22px;
    }
    .shopDate_list table{
        font-size: 13px;
    }
    .shopDate_list table tr{
        width: 100%;
        display: block;
        padding: 10px;
        padding-left: 0;
        margin-bottom: 5px;
        box-sizing: border-box;
    }
    .shopDate_list table tr::before{
        display: none;
    }
    .shopDate_list table tr th{
        width: 100%;
        display: inline;
        border-bottom: 3px solid #000;
        padding: 10px 0;
    }
    .shopDate_list table tr td{
        width: 100%;
        display: block;
        line-height: 18px;
        padding: 15px 5px 0 0;
        margin: 13px auto 0;
    }
    .shopDate_wrapper .link_btn{
        right: 5px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　recruit　　　　　　　　　　　　　　　　  */
/*=================================================================*/
body.top section.sect.sect06{
    width: 100%;
    max-width: 100%;
    background: url(/img/upload/2022/07/recruit_bg.jpg) no-repeat top center;
    background-size: cover;
    color: #fff;
    padding: 80px 0;
    margin-bottom: 0;
    box-sizing: border-box;
}
.recruit_inner{
    width: 70%;
    max-width: 1200px;
    text-align: center;
    background-color: rgba(255,255,255,0.7);
    padding: 40px 60px;
    margin: 0 auto;
    box-sizing: border-box;
}
body.top section.sect.sect06 .titleArea{
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
}
body.top section.sect.sect06 .titleArea p{
    position: absolute;
    bottom: -10px;
    right: -180px;
    width: 60%;
}
body.top section.sect.sect06 .titleArea h2{
    font-family: var(--title-font);
    font-size: 3.6rem;
    text-align: center;
    margin-bottom: 30px;
}
body.top section.sect.sect06 .recruit_inner h4{
    font-family: var(--title-font-ja);
    font-size: 24px;
    line-height: 26px;
    color: #000;
}
.recruit_text{
    display: flex;
    justify-content: center;
    color: #000;
    margin-bottom: 30px;
}
.recruit_btn span{
    display: inline-block;
    color: #fff;
    background-color: #000;
    padding: 10px 100px;
    box-sizing: border-box;
}

@media only screen and (max-width: 1024px){
    body.top #main section.sect.sect06{
        padding-bottom: 100px;
        margin-bottom: 0;
    }
    body.top  #main section.sect.sect06 .titleArea{
        margin-bottom: 20px;
    }
    body.top section.sect.sect06 .titleArea p{
        bottom: -10px;
        right: -90px;
    }
    .recruit_inner{
        width: 90%;
    }
}

@media only screen and (max-width: 767px){
    body.top #main section.sect.sect06{
        padding: 20% 2%;
    }
    body.top #main section.sect.sect06 .titleArea{
        margin-bottom: 10px;
    }
    body.top section.sect.sect06 .titleArea p{
        bottom: 0;
        right: 0;
        width: 100%;
    }
    .recruit_inner{
        width: 95%;
        padding: 30px 15px;
    }
    body.top section.sect.sect06 .recruit_inner h4{
        font-size: 16px;
    }
    .recruit_btn span{
        display: inline-block;
        width: 100%;
        font-size: 14px;
        padding: 15px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　footer　　　　　　　　　　　　　　　　   */
/*=================================================================*/
#footer{
    position: relative;
    background-color: var(--brand-primary);
    padding: 60px 0 0;
}
a#goTop{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    height: 80px;
    font-family: var(--title-font);
    font-size: 12px;
    font-weight: bold;
    background: none;
    border-radius: 10px 10px 0 0;
    padding: 0.5rem;
    margin: 0;
    box-sizing: border-box;
}
a#goTop span{
    display: inline-block;
    color: #fff;
    margin-bottom: 5px;
}
a#goTop::after{
    content: '';
    display: inline-block;
    width: 35px;
    height: 42px;
    background: url(/img/upload/2022/06/goto_btn_w.png);
    background-size: cover;
}
#footerLogo{
    text-align: center;
}
#footerLogo a{
    display: inline-block;
    width: 200px;
}
#footerLogo a img{
    width: 100%;
}
#footer_wrapper{
    display: flex;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
}
footer #footerInner #footerContent{
    display: block;
    width: 50%;
    padding: 3%;
    box-sizing: border-box;
}
footer #footerInner #footerContent #footerInfo .footer_address{
    margin-bottom: 30px;
}
footer #footerInner #footerContent #footerInfo .footer_address li{
    color: #fff;
    text-align: left;
    margin-bottom: 0.5rem;
}
footer #footerInner #footerContent #footerInfo .footer_address li .salonPhone{
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    font-weight: 500;
}
footer #footerInner #footerContent .businessHour p, footer #footerInner #footerContent .finalAcceptance p{
    font-size: 16px;
    margin-bottom: 10px;
}
.footer_snsLink{
    display: flex;
    justify-content: left;
    /* gap: 30px; */
    margin: 30px 0;
}
.footer_snsLink li{
    width: 40px;
    margin-right: 30px;
}
.footer_navigation{
    width: 50%;
    padding: 8% 3% 3%;
    box-sizing: border-box;
}
.footerList{
    margin-bottom: 60px;
}
.footerList li{
text-align: right;
    margin-bottom: 20px;
}
.footerList li a{
    width: 270px;
    display: inline-block;
    color: #fff;
    border: 1.5px solid #fff;
    text-align: center;
    padding: 8px 0;
}
.footerMenu{
    display: flex;
    justify-content: space-between;
    width: 270px;
    margin-left: auto;
}
.footerMenu li{
    display: flex;
    align-items: center;
}
.footerMenu li::before{
    content: '';
    display: inline-block;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid #fff;
    margin-right: 0.5rem;
}
.footerMenu li a{
    color: #fff;
    vertical-align: text-top;
}
small{
    display: block;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 1rem 0;
}

@media only screen and (max-width: 1024px){
#footerLogo{
    text-align: center;
margin-bottom: 30px;
}
}

@media only screen and (max-width: 767px){
    a#goTop{
        width: 60px;
        height: 60px;
        right: 10px;
        font-size: 10px;
        padding: 5px;
    }
    a#goTop::after{
        width: 25px;
        height: 30px;
    }
    footer{
        padding-top: 40px;
    }
    #footer_wrapper{
        display: block;
    }
    #footerLogo a{
        width: 180px;
    }
    footer #footerInner #footerContent{
        display: block;
        width: 100%;
    }
    footer #footerInner #footerContent #footerInfo{
        width: 100%;
    }
    footer #footerInner #footerContent #footerInfo .footer_address{
        margin-bottom: 10px;
    }
    footer #footerInner #footerContent #footerInfo .footer_address li{
        font-size: 14px;
    }
    .footer_address li.salonName{
        font-size: 16px !important;
    }
    footer #footerInner #footerContent .businessHour p, footer #footerInner #footerContent .finalAcceptance p{
        font-size: 14px;
    }
    .footer_snsLink{
        width: 50%;
        justify-content: space-around;
        margin: 30px auto 10px;
    }
    .footer_snsLink li{
        width: 35px;
        margin-right: 0;
    }
    .footer_navigation{
        width: 100%;
        padding: 3% 3% 10%;
    }
    .footer_navigation li{
        text-align: center;
        font-size: 14px;
    }
    .footerList{
        margin-bottom: 30px;
    }
    .footerList li a{
        width: 100%;
    }
    .footerMenu{
        width: 100%;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    small{
        font-size: 11px;
        padding: 1rem 0.5rem;
    }
}


/*=================================================================*/	
/*　　　　　　　　　　　　　　　Lower-general　　　　　　　　　　　　　 */
/*=================================================================*/
/* ----- header ---- */
body.lower header{
    background: transparent;
}
body.lower header.change-color{
    background: #fff;
}
body.lower header #headerInner .logoArea{
    top: 10px;
    left: 80px;
    transform: translate(0,0);
}
/* ----- keyvisual ---- */
body.lower #pageTitleArea{
    height: 200px;
    padding-top: 60px;
    background: url(/img/upload/2022/06/clement_low_key.jpg) no-repeat top center;
    background-size: cover;
}
body.lower #pageTitleArea h1 span{
    font-family: var(--title-font);
    font-size: 38px;
    letter-spacing: 0.3rem;
    text-transform:none;
    color: #fff;
    text-shadow: 3px 3px 4px #b5b5b5;
    margin-top: 10px;
}
/* ----- パンくず ---- */
.breadcrumb{
    width: 90%;
    font-size: 14px;
    margin-bottom: 80px;
}
.breadcrumb li{
    line-height: 18px;
}
.breadcrumb li a{
    color: #000;
}
/* ----- content ---- */
body.lower #content_wrapper{
    max-width: 1200px;
    width: 95%;
    display: block;
    background: #fff;
    padding-top: 40px;
    margin: -100px auto 120px;
}
body.lower #content{
    width: 90%;
    margin: 0 auto;
}
body.lower.onecolumn #content #main{
    width: 70%;
    margin: 0 auto;
}
body.lower #content #main{
    width: 100%;
}
/* ----- pagination ---- */
.pager ul li{
    margin-right: 0.5rem;
}
.pager ul li a{
    background: var(--brand-primary);
}
.pager ul li a:hover{
    background: #161616;
}

@media only screen and (max-width: 1024px){
    /* ----- header ---- */
    body.lower header #headerInner .logoArea{
        left: 60px;
    }
      /* ----- keyvisual ---- */
    body.lower #pageTitleArea h1 span{
        margin-top: 15px;
    }
    /* ----- パンくず ---- */
    .breadcrumb{
        display: block;
    }
    /* ----- content ---- */
    body.lower #content_wrapper{
        margin-top: -150px;
    }
    body.lower #content #main{
        width: 100%;
        margin: 0 auto;
    }

}

@media only screen and (max-width: 900px){
        /* ----- content ---- */
    body.lower.onecolumn #content #main{
        width: 90%;
    }
}

@media only screen and (max-width: 767px){
    /* ----- header ---- */
    .openbtn{
        top: 0;
        left: 5px;
    }
    body.lower header #headerInner .logoArea{
        left: 60px;
    }
     /* ----- keyvisual ---- */
    body.lower #pageTitleArea{
        height: 150px;
        padding-top: 50px;
    }
    body.lower #pageTitleArea h1 span{
        font-size: 28px;
        letter-spacing: 0.2rem;
        margin-top: 25px;
    }
      /* ----- パンくず ---- */
    .breadcrumb{
        margin-bottom: 40px;
    }
    .breadcrumb li,.breadcrumb li a{
        font-size: 12px;
    }
    .breadcrumb li:not(:first-child)::before{
        margin: 0 3px 0 3px;
    }

       /* ----- content ---- */
    body.lower #content_wrapper{
        padding-top: 30px;
        margin: -130px auto 120px;
    }
    body.lower #content{
        width: 95%;
    }
    body.lower.onecolumn #content #main{
        width: 100%;
        padding-top: 30px;
    }
    body.lower #content #main{
        width: 100%;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　　　Side Bar　　　　　　　　　　　　　      */
/*=================================================================*/
#sub{
    width: 25%;
}
#sub .subBox .titleArea{
    position: relative;
    border-bottom: none;
    margin-bottom: 20px;
}
#sub .subBox .titleArea p{
    padding-bottom: 10px;
}
#sub .subBox .titleArea p::after{
    content: '';
    display: inline-block;
    width: 50px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #000;
}
#sub .subBox .titleArea p span.en{
    font-family: var(--title-font);
    font-size: 24px;
}
#sub #subStaff ul li a, #sub #subCategory ul li a, #sub #subFaq ul li a, #sub #subNewscate ul li a, #sub #subMedicate ul li a, #sub #subBlogcate ul li a{
    color: #000;
    font-size: 14px;
    margin: 5px 0;
}
#sub #subBlogcate ul li a{
    line-height: 22px;
}

/* ===== Staff_sidebar ===== */
#sub #subStyle ul li{
    position: relative;
}
#sub #subStyle ul.wrapper li a.img{
    margin-bottom: 0;
    overflow: hidden;
}
#sub #subStyle ul.wrapper li a.img img{
    transition: transform .6s ease;
}
#sub #subStyle ul.wrapper li a.img:hover img{
    transform: scale(1.1);
}
.sub_styleText{
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    transition: .3s ease-in-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}
#sub #subStyle ul li .sub_styleText h3{
    font-size: 12px;
}
#sub #subStyle ul li:hover .sub_styleText{
    opacity: 1;
}
#sub #subStyle ul li .style_text_sp{
    display: none;
}

/* ----- Blog_Sidebar ---- */
#sub .subBox{
    margin-bottom: 40px;
}
#sub .subBox:last-of-type{
    margin-bottom: 120px;
}
dl.search2 dt input{
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
dl.search2 dd button{
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 16px;
    background-color: #000;
    border: 1px solid #000;
}
#sub .subBox .wrapper article ul li{
    border: 2px solid #eee;
    margin-bottom: 20px;
}
#sub #subBlog .sidebar-blog-img a.blogImg:hover{
    opacity: 1;
}
#sub #subBlog .sidebar-blog-img p{
    margin-top: -10px;
}
#sub #subBlog .sidebar-blog-img span{
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
}
.sidebar-blog-txt{
    padding: 10px;
}
.sidebar-blog-txt a{
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: #000;
}
.sidebar-blog-txt a.postUser::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 1rem;
    background-color: #000;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.sidebar-blog-txt .newsTime{
    margin-bottom: 5px;
}
.sidebar-blog-txt h5{
    font-size: 14px;
    margin-bottom: 0;
}
.sidebar-blog-txt h5 a{
    color: #000;
    line-height: 18px;
}
.subyear{
    font-size: 16px;
    color: #afafaf;
}
.subyear:before{
    left: 80px;
    border-bottom: solid 2px #afafaf;
    border-right: solid 2px #afafaf;
}
#sub .subBox .side_blog_btn{
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 0;
}
#sub .subBox .side_blog_btn span{
    color: #000;
    background: none;
    padding-right: 0;
}
#sub .subBox .side_blog_btn::before{
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(/img/upload/2022/06/more_btn.png) no-repeat;
    background-size: contain;
    margin-right: 8px;
}
@media only screen and (max-width: 1024px){
    #sub{
        width: 95%;
        margin-bottom: 8rem;
    }
    #sub .subBox{
        margin-bottom: 0;
    }
    dl.search2{
        margin-bottom: 0;
    }
    #sub .subBox .titleArea{
        padding-bottom: 0;
        margin-bottom: 10px;
    }
    #sub .subBox .titleArea::after{
        top:50px;
    }
    #sub .subBox .wrapper{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 2%;
    }
    #sub .subBox .wrapper article{
        margin-bottom: 0;
    }
    #sub .subBox .wrapper article ul li{
        margin-bottom: 0;
    }
    #sub #subStyle ul li .style_text_sp{
        display: block;
    }
}

@media only screen and (max-width: 767px){
    #sub{
        margin-bottom: 0;
    }
    #sub .subBox:last-of-type{
        margin-bottom: 0;
    }
    #sub .subBox .titleArea p span.en{
        font-size: 22px;
    }
    #sub .subBox .wrapper{
        grid-template-columns: repeat(2,1fr);
    }
    #sub #subBlog .sidebar-blog-img span{
        font-size: 11px;
    }
    .sidebar-blog-txt a{
        font-size: 12px;
    }
    .sidebar-blog-txt .blog_date{
        font-size: 16px;
    }
    #sub #subStyle ul.wrapper li a.img, #subNewscate ul.wrapper li a.img{
        margin-bottom: 0;
    }
}
/*=================================================================*/	
/*　　　　　　　　　　　　　　　Concept-Page　　　　　　　　　　　　　  */
/*=================================================================*/
body.concept.lower #content #main section.sect h2{
    width: 85%;
    font-family: var(--title-font-ja);
    font-size: 22px;
    line-height: 34px;
    border-bottom: 3px double #b7b7b7;
    padding-bottom: 15px;
    margin: 0 auto 30px;
}
body.concept section.sect p, body.recruit section.sect p, body.company section.sect p{
    width: 85%;
    font-size: 14px;
    margin: 0 auto 60px;
}

@media only screen and (max-width: 900px){
    body.concept.lower #content #main section.sect h2,body.concept section.sect p, body.recruit section.sect p, body.company section.sect p{
        width: 100%;
    }
}


@media only screen and (max-width: 767px){
    body.concept.lower #content_wrapper{
        margin-bottom: 120px;
    }
    body.concept.lower #content #main section.sect h2{
        font-size: 18px;
        line-height: 28px;
    }
    body.concept section.sect p, body.recruit section.sect p, body.company section.sect p{
        font-size: 14px;
        margin-bottom: 0;
    }
    
}

/*=================================================================*/	
/*　　　　　　　　　　　　　Infomations-Page　　　　　　　　　　　    　*/
/*=================================================================*/
body.news.lower #content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}
body.news.lower #content #main{
    width: 70%;
}
body.news #main .couponArea{
    width: 100%;
    margin-bottom: 0;
}
.info_article li{
    position: relative;
    border-bottom: 1px solid #000;
    padding: 15px 10px;
}
body.news #main .newsTime{
    font-family: 'Alegreya SC', serif;
    font-size: 18px !important;
    font-weight: 500;
    color: #000;
    padding-right: 0.5rem;
    margin-bottom: 5px;
}
body.news #main .newsTime a{
    color: #000;
    font-size: 14px;
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.info_category{
    display: inline-block;
    background-color: #000;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    padding: 3px 10px;
    margin-bottom: 10px;
}
.info_category a{
    color: #fff;
}
.info_category p{
    position: relative;
    border-bottom: 1px solid #000;
    padding: 3px 10px;
}

.info_article li h5{
    font-size: 16px;
    margin-bottom: 0;
}
.info_article li h5 a{
    color: #000;
    font-size: 14px;
    line-height: 18px;
}

@media only screen and (max-width: 1024px){
    body.news.lower #content{
        display: block;
    }
    body.news.lower #content #main{
        width: 90%;
        margin-bottom: 60px;
    }
    body.news.lower #content #sub{
        width: 90%;
    }
}

@media only screen and (max-width: 767px){
    body.news.lower #content{
        margin-bottom: 80px;
    }
    body.news.lower #content #main{
        width: 100%;
    }
    body.news #main .couponArea{
        width: 100%;
    }
    .info_category{
        padding: 3px;
        margin-bottom: 10px;
    }
    .info_category a{
        font-size: 12px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　Infomation-Page　　　　　　　　　　　    　 */
/*=================================================================*/
body.news #main .sect .titleArea{
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 15px 0;
}
body.news #main .sect .titleArea h3{
   font-size: 18px;
   font-weight: bold; 
   padding: 0;
}
body.news #main .sect .wrapper li{
    background-color: #000;
    font-size: 14px;
    padding: 5px 10px;
    margin-bottom: 10px;
}
body.news #main .articleTxt p,body.news #main .articleTxt p.blog-text{
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif"!important;
    font-size: 16px;
}
body.news #main .articleTxt{
    line-height: 26px;
}

@media only screen and (max-width: 767px){
    body.news #main .sect{
        margin-bottom: 60px;
    }
    body.news #main .sect .titleArea{
        padding: 15px 0;
        margin-bottom: 1.5rem;
    }
    body.news #main .sect .titleArea h3{
        font-size: 14px;
    }
    body.news #main .sect .wrapper li{
        font-size: 12px;
    }
    body.news #main .newsTime{
        font-size: 16px !important;
    }
    body.news #main .articleTxt{
        margin-top: 30px;
    }
    body.news #main .articleTxt p, body.news #main .articleTxt p.blog-text{
        font-size: 14px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　Menu-Page　　　　　　　　　　　    　       */
/*=================================================================*/
body.menu.lower #content #main{
    display: block;
}
body.menu #main .sect{
    width: 80%;
    margin: 0 auto;
}
body.menu #main .sect .titleArea{
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 10px 0;
}
body.menu #main .sect .titleArea h3{
    float: none;
    text-align: center;
    padding-bottom: 0;
}
body.menu #main .sect .titleArea h3 span.en{
    font-family: var(--title-font);
    font-size: 24px;
}
body.menu #main .sect table{
    margin-bottom: 60px;
}
body.menu #main .sect .txtRight{
    font-size: 12px;
    margin-bottom: 0;
}
body.menu #main .sect .table tr{
    display: flex;
    border-top: none;
    border-bottom: 1px dotted #f1f1f1;
}
body.menu #main .sect .table td{
    font-size: 16px;
    padding: 15px;
}
body.menu #main .sect .table > tbody > tr > td:first-child{
    width: 80% !important;
}
body.menu #main .sect .table > tbody > tr > td:first-child::before{
    content: '';
    display: inline-block;
    width: 5px;
    height: 25px;
    background: #000;
    vertical-align: middle;
    margin-right: 8px;
}
body.menu #main .serviceSubTxt{
    font-size: 14px !important;
}
body.menu #main .sect .table > tbody > tr > td:first-child > .serviceSubTxt{
    margin-left: 13px;
}
body.menu #main .sect .table > tbody > tr > td:last-child > .serviceSubTxt{
    display: none;
}
body.menu #main .sect .table > tbody > tr > td:last-child{
    width: 20%;
    display: flex;
    justify-content: right;
    align-items: center;
}

@media only screen and (max-width: 1024px){
    body.menu #main .sect .table tr{
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 900px){
    body.menu #main .sect{
        width: 100%;
    }
    body.menu #main .sect table{
        margin-bottom: 60px;
    }
    
}

@media only screen and (max-width: 767px){
    body.menu #main .sect .titleArea h3 span.en{
        font-size: 20px;
    }
    body.menu #main .sect table{
        margin-bottom: 40px;
    }
    body.menu #main .sect .table tr{
        display: block;
    }
    body.menu #main .sect .table td{
        font-size: 14px;
    }
    body.menu #main .sect .table > tbody > tr > td:first-child{
        padding: 10px 5px 5px;
    }
    body.menu #main .sect .table > tbody > tr > td:last-child{
        padding: 0 5px 10px;
        margin-left: auto;
    }
    body.menu #main .sect .table > tbody > tr > td:first-child::before{
        height: 20px;
        vertical-align: bottom;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　Coupon-Page　　　　　　　　　　　    　     */
/*=================================================================*/
body.coupon.lower.onecolumn #content #main{
    width: 100%;
}
body.coupon #main section.sect01 .titleArea{
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: none;
    border-right: 1px solid #000;
}
body.coupon #main section.sect01 .titleArea h3 span.en{
    font-family: var(--title-font);
    font-size: 24px;
}
body.coupon #main form section.sect.sect01{
    display: flex;
    margin-bottom: 30px;
}
body.coupon #main section.sect01 .filterArea{
    width: 80%;
    background-color: transparent;
    padding: 20px 20px 20px 30px;
    margin-bottom: 0;
    box-sizing: border-box;
}
body.coupon #main section.sect01 .filterArea dl{
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    box-sizing: border-box;
}
body.coupon #main section.sect01 .filterArea dl dt{
    width: 80px;
    height: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    background: #000;
    color: #fff;
}
body.coupon #main section.sect01 .filterArea dl dd{
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin-left: 20px;
}
body.coupon #main section.sect01 .filterArea dl dd ul li{
    font-size: 16px;
}
body.coupon #main form section.sect.sect01 .btn{
    width: 150px;
    display: flex;
    align-items: center;
    padding: 10px;
}
body.coupon #main form section.sect.sect01 .btn [type="submit"]{
    width: 100%;
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    border: 1px solid #000;
    background-color: transparent;
    padding: 10px;
    transition:  all 0.3s;
}
body.coupon #main form section.sect.sect01 .btn [type="submit"]:hover{
    background-color: #000;
    color: #fff;
    cursor: pointer;
}
body.coupon #main section.result{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
body.coupon #main .result .couponArea,body.style #main .couponArea{
    width: 49%;
    border: 1px solid #bfbfbf;
    background: none;
    box-shadow: 10px 10px #eee;
    margin: 0 0 30px;
    box-sizing: border-box;
}
body.coupon #main .result .couponArea .couponContent,body.style #main .couponArea .couponContent{
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
}
body.coupon #main .result .couponArea h4{
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    background: #000;
    padding: 0 5px 0 7px;
    margin-bottom: 0;
}
body.coupon #main .result .couponArea .couponContent .img,body.style #main .couponArea .couponContent .img{
    width: 33%;
    border-right: 2px solid #646464;
    padding-right: 8px;
    box-sizing: border-box;
}
body.coupon #main .result .couponArea .couponContent .img img,body.style #main .couponArea .couponContent .img img{
    width: 100%;
}
body.coupon #main .result .couponArea .couponContent .img p,body.style #main .couponArea .couponContent .img p{
    font-size: 12px;
    line-height: 18px;
}
body.coupon #main .result .couponArea .couponContent .txt,body.style #main .couponArea .couponContent .txt{
    width: 67%;
    padding-left: 8px;
    box-sizing: border-box;
}
body.coupon #main .result .couponArea .couponContent .txt h5,body.style #main .couponArea .couponContent .txt h5{
    font-size: 16px;
    line-height: 24px;
}
body.coupon #main .result .couponArea .couponContent .txt ul,body.style #main .couponArea .couponContent .txt ul{
    margin-bottom: 10px;
}
body.coupon #main .result .couponArea .couponContent .txt ul li,body.style #main .couponArea .couponContent .txt ul li{
    font-size: 14px;
    line-height: 14px;
    background-color: #ced7dc;
    margin-bottom: 5px;
}
body.coupon #main .result .couponArea .couponContent .txt p.price,body.style #main .couponArea .couponContent .txt p.price{
    color: #d11c1c;
    font-size: 22px;
}
body.coupon #main .result .couponArea .couponContent .txt p.couponDetail,body.style #main .couponArea .couponContent .txt p.couponDetail{
    font-size: 14px;
    line-height: 18px;
    border-top: 1px dotted #646464;
    padding: 8px 0;
}
body.coupon #main .result .couponArea .couponContent .txt a,body.style #main .couponArea .couponContent .txt a{
    font-size: 16px;
    background-color: #646464;
}

@media only screen and (max-width: 1024px){
    body.coupon.lower #content{
        width: 100%;
    }
    body.coupon #main section.sect01 .titleArea{
        width: 18%;
        margin: 0;
    }
    body.coupon #main section.sect01 .filterArea{
        width: calc(82% - 150px);
        padding: 5px 0 5px 20px;
    }
    body.coupon #main .result .couponArea h4,body.style #main .couponArea h4{
        height: auto;
        justify-content: center;
        padding: 5px;
        margin-bottom: 0;
    }
    body.coupon #main section.sect01 .filterArea dl{
        margin-bottom: 0;
    }
    body.coupon #main section.sect01 .filterArea dl dt{
        width: auto;
        height: auto;
        padding: 5px 10px;
        margin-bottom: 0;
    }
    body.coupon #main .result .couponArea .couponContent .img{
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #646464;
        padding-right: 0;
        padding-bottom: 5px;
    }
    body.coupon #main .result .couponArea .couponContent .txt{
        width: 100%;
        padding-left: 0;
    }
    body.coupon #main .result .couponArea .couponContent .txt ul li{
        padding: 5px;
        margin-bottom: 8px;
    }
}

@media only screen and (max-width: 767px){
    body.coupon #main form section.sect.sect01{
        display: block;
    }
    body.coupon #main form{
        margin-bottom: 40px;
    }
    body.coupon #main section.sect01 .titleArea{
        width: 100%;
        justify-content: left;
        border-right: none;
        border-bottom: 1px solid #000;
        margin-bottom: 10px;
    }
    body.coupon #main section.sect01 .titleArea h3{
        padding: 5px;
    }
    body.coupon #main section.sect01 .filterArea{
        width: 100%;
        padding: 5px;
    }
    body.coupon #main section.sect01 .filterArea dl{
        width: 100%;
        display: block;
        padding: 0;
        margin-bottom: 20px;
    }
    body.coupon #main section.sect01 .filterArea dl dt{
        display: inline-block;
        margin-bottom: 10px;
    }
    body.coupon #main section.sect01 .filterArea dl dd{
        margin-left: 0;
    }
    body.coupon #main section.sect01 .filterArea dl dd ul li{
        margin-bottom: 3px;
    }
    body.coupon #main form section.sect.sect01 .btn{
        width: 100%;
        padding: 0;
    }
    body.coupon #main section.result{
        width: 95%;
        display: block;
        margin: 0 auto;
    }
    body.coupon #main .result .couponArea{
        width: 100%;
        margin-bottom: 40px;
    }
    body.coupon #main .result .couponArea .couponContent .txt a{
        font-size: 14px;
        padding: 10px 0;
    }
    body.coupon #main .result .couponArea .couponContent .txt a, body.style #main .couponArea .couponContent .txt a{
        font-size: 14px;
        padding: 10px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Staffs-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.stylist.lower #content #main{
    width: 80%;
    margin: 0 auto;
}
body.stylist #main .sect02 h2{
    font-family: var(--title-font);
    font-size: 26px;
}
body.stylist #main .sect02 ul.wrapper_stylist{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2%;
}
body.stylist #main .sect02 ul.wrapper_stylist li{
    width: 100%;
    margin-bottom: 30px;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.img{
    display: block;
    overflow: hidden;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.img img{
    width: 100%;
    transition: transform .6s ease;
    margin: 0 !important;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.img:hover img{
    transform: scale(1.1);
}
.staff_name{
    position: relative;
    margin-top: -14px;
    box-sizing: border-box; 
}
.staff_name span{
    display: inline-block;
    background-color: #000;
    color: #fff;
    padding: 3px 10px;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.txt{
    display: block;
    border-left: 3px solid #000;
    padding: 0 10px 0;
    margin-top: 10px;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.txt h3{
    font-size: 16px;
    color: #000;
    margin: 0;
}
body.stylist #main .sect02 ul.wrapper_stylist li a.txt p{
    font-size: 14px;
    line-height: 16px;
}

@media only screen and (max-width: 1024px){
    .staff_name{
        margin-top: -20px;
    }
    .staff_name span{
        font-size: 14px;
    }
    body.stylist #main .sect02 ul.wrapper_stylist li a.txt h3{
        margin-bottom: 5px;
    }
}

@media only screen and (max-width: 900px){
    body.stylist.lower #content #main{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    body.stylist #main .sect02 .titleArea{
        margin-bottom: 10px;
    }
    body.stylist #main .sect02 .titleArea h3 span.en{
        font-size: 18px;
    }
    body.stylist #main .sect02 ul.wrapper_stylist{
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 30px;
    }
    ul.wrapper_stylist li{
        margin: 0 ;
    }
    body.stylist #main .sect02 ul.wrapper_stylist li{
        width: 49%;
    }
    body.stylist #main .sect02 ul.wrapper_stylist li a.txt h3{
        font-size: 14px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Staff-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.stylist.lower #content{
    display: flex;
}
body.stylist #main .stylistBox{
    justify-content: space-between;
}
body.stylist #main .stylistBox .txtInfo{
    width: 57%;
}
body.stylist #main .stylistBox .txtInfo p.job{
    display: inline;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    padding: 5px 15px;
}
body.stylist #main .stylistBox .txtInfo h2{
    font-size: 20px;
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 10px 0;
    margin-top: 15px;
}
body.stylist #main .stylistBox .txtInfo h2 span{
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin: 5px 0 0;
}
body.stylist #main .stylistBox .txtInfo h6{
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
}
body.stylist #main .stylistBox .txtInfo h6::before,body.stylist #main .stylistBox .txtInfo .career dl dt::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: #000;
    margin-right: 15px;
}
body.style #main .styleBox .txtInfo .box{
    margin-bottom: 30px;
}
body.stylist #main .stylistBox .txtInfo p.catch02{
    font-size: 16px;
    margin-bottom: 10px;
}
body.stylist #main .stylistBox .txtInfo p.comment{
    font-size: 14px;
    line-height: 24px;
}
body.stylist #main .stylistBox .txtInfo .career dl, body.style #main .styleBox .txtInfo .box dl{
    width: 100%;
    border-bottom: 1.5px dotted #b7b7b7;
    padding-bottom: 10px;
}
body.stylist #main .stylistBox .txtInfo .career dl dt{
    display: flex;
    align-items: center;
    width: 180px;
    font-size: 16px;
}
body.stylist #main .stylistBox .txtInfo .career dl dd{
    width: calc(100% - 180px);
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
}
/* ===== Calendar ===== */
body.stylist #main .stylistBox .visualInfo{
    width: 40%;
}
body.stylist #main .stylistBox .visualInfo .photo img{
    width: 100%;
}
body.stylist #main .stylistBox .visualInfo .calendar .calendarInner{
    border: 1px solid #000;
}
body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month{
    height: auto;
    background-color: #000;
    padding: 10px;
}
body.stylist #main .stylistBox .visualInfo .calendar .calendarInner .month span{
    font-size: 14px;
}
body.stylist #main .stylistBox .visualInfo .calendar .calendarInner table tr th{
    font-size: 14px;
}
/* ===== Blog ===== */
.blogArea{
    margin-bottom: 60px;
}
body.stylist #main .sect02 .titleArea{
    border-bottom: none;
    margin-bottom: 30px;
}
body.stylist #main .sect02 .titleArea h3 span.en,body.style #main .sect02 .titleArea h3 span.en{
    font-family: var(--title-font);
    font-size: 24px;
}
body.stylist #main .couponContent{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2%;
}
.staffBlog_wrapper{
    box-shadow: 5px 5px 5px #c9c9c9;
    cursor: pointer;
    transition: all .3s;
}
.staffBlog_wrapper:hover{
    transform: translate3d(0, -10px, 1px);
}
.staffBlog_wrapper .img{
    width: 100%;
}
.staffBlog_wrapper .img a{
    width: 90%;
    margin-left: auto;
}
.staffBlog_wrapper .img a.blog_img:hover{
    opacity: 1;
}
.staffBlog_wrapper .img img{
    width: 100%;
    height: auto;
    margin: 0;
}
.staffBlog_wrapper .img span{
    position: relative;
    display: block;
    margin-top: -10px;
}
.staffBlog_wrapper .img span a{
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
}
.staffBlog_wrapper .txt{
    width: 100%;
    padding: 15px 10px 0;
    box-sizing: border-box;
}
.staffBlog_wrapper .newsTime{
    color: #000;
    font-size: 14px;
    margin-bottom: 5px;
}
.staffBlog_wrapper .txt a{
    display: block;
    font-size: 14px;
    color: #000 !important;
    padding: 0;
}
.staffBlog_wrapper .txt a.postUser::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 1rem;
    background-color: #000;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.staffBlog_wrapper .txt h5{
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 10px;
}
.staffBlog_wrapper .txt a{
    color: #000;
}
.blog_date{
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    font-weight: 500;
    color: #AFAFAF;
    background-color: transparent;
    padding: 0;
}
body.stylist #main .sect02 .titleArea a,body.style #main .sect02 .titleArea a{
    text-decoration: none;
}
body.stylist #main .sect02 .titleArea a span,body.style #main .sect02 .titleArea a span{
    font-size: 14px;
    font-weight: bold;
    background: none;
    padding-right: 0;
}
body.stylist #main .sect02 .titleArea a span::before,body.style #main .sect02 .titleArea a span::before{
    content: '';
    display: inline-block;
    width: 13px;
    height: 13px;
    background: url(/img/upload/2022/06/more_btn.png) no-repeat;
    background-size: contain;
    margin-right: 8px;
}
/* ===== Style ===== */
body.stylist #main .sect02 ul.wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5%;
}
body.stylist #main .sect02 ul.wrapper::before{
    display: none;
}
body.stylist #main .sect02 ul.wrapper li{
    position: relative;
    width: 100%;
    box-shadow: 10px 10px 1px #ebebeb;
    margin-bottom: 60px;
}
body.stylist #main .sect02 ul.wrapper li a.img{
    display: block;
    margin-bottom: 0;
    overflow: hidden;
}
body.stylist #main .sect02 ul.wrapper li a.img img{
    transition: transform .6s ease;
}
body.stylist #main .sect02 ul.wrapper li a.img:hover img{
    transform: scale(1.1);
}
body.stylist #main .sect02 ul.wrapper li:hover .style__text{
    opacity: 1;
}
body.stylist #main .sect02 ul.wrapper li .style__text{
    position: absolute;
    width: 100%;
    height: 100%;
    right: -10px;
    bottom: -10px;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    transition: .3s ease-in-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}
body.stylist #main .sect02 ul.wrapper li .style__text h3{
    font-size: 14px;
}
body.stylist #main .sect02 ul.wrapper li .style_text_sp{
    display: none;
}
body.stylist #sub{
    width: 20%;
    padding-left: 5%;
}

@media only screen and (max-width: 1024px){
    body.stylist.lower #content{
        display: block;
        width: 100%;
    }
    body.stylist.lower #content #main{
        width: 100%;
    }
    body.stylist #main .stylistBox{
        display: flex;
        flex-direction: row-reverse;
    }
    body.stylist #main .stylistBox .txtInfo h6{
        margin-bottom: 15px;
    }
    body.stylist #main .stylistBox .txtInfo p.comment{
        margin-bottom: 20px;
    }
    body.stylist #main .stylistBox .txtInfo .career dl, body.style #main .styleBox .txtInfo .box dl{
        margin-bottom: 15px;
    }
    body.stylist #main .sect03 ul.wrapper li{
        box-shadow: none;
    }
    body.stylist #main .sect03 ul.wrapper li:nth-child(3n+2){
        margin: 0 0 60px;
    }
    #sub #subStyle ul.wrapper li, #subNewscate ul.wrapper li{
        width: 100%;
    }
    #sub .subBox:last-of-type .titleArea{
        margin-bottom: 15px;
    }
    body.stylist #sub{
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px){
    body.stylist.lower #content{
        margin-top: 60px;
    }
    body.stylist #main .stylistBox{
        flex-direction: column-reverse;
    }
    body.stylist #main .stylistBox .txtInfo{
        width: 100%;
    }
    body.stylist #main .stylistBox .txtInfo p.job{
        font-size: 14px;
    }
    body.stylist #main .stylistBox .txtInfo h2{
        font-size: 16px;
    }
    body.stylist #main .stylistBox .txtInfo h6{
        font-size: 14px;
    }
    body.stylist #main .stylistBox .txtInfo .career{
        margin-bottom: 0;
    }
    body.stylist #main .stylistBox .txtInfo .career dl, body.style #main .styleBox .txtInfo .box dl{
        display: block;
    }
    body.stylist #main .stylistBox .txtInfo h6::before, body.stylist #main .stylistBox .txtInfo .career dl dt::before{
        height: 20px;
        margin-right: 10px;
    }
    body.stylist #main .stylistBox .txtInfo p.catch02{
        font-size: 14px;
        font-weight: bold;
    }
    body.stylist #main .stylistBox .txtInfo .career dl dt{
        width: 100%;
        font-size: 14px;
    }
    body.stylist #main .stylistBox .txtInfo .career dl dd{
        width: 100%;
        display: block;
        padding-top: 10px;
        margin-left: 0;
    }
    body.stylist #main .stylistBox .visualInfo{
        width: 100%;
        margin-bottom: 30px;
    }
    body.stylist #main .sect02 .titleArea a,body.stylist #main .sect02 .titleArea a{
        margin-top: 10px;
    }
    body.stylist #main .sect02 .titleArea{
        margin-bottom: 10px;
    }
    body.stylist #main .couponContent,body.stylist #main .sect02 ul.wrapper{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 60px;
    }
    .staffBlog_wrapper .img span a{
        font-size: 12px;
    }
    .staffBlog_wrapper .txt{
        padding-top: 10px;
    }
    .staffBlog_wrapper .txt a{
        font-size: 12px;
    }
    body.stylist #main .sect03 ul.wrapper li{
        margin-bottom: 10px;
    }
    body.stylist #main .sect03 ul.wrapper li:nth-child(3n+2){
        margin: 0 0 10px;
    }
    #sub #subStyle ul.wrapper li, #subNewscate ul.wrapper li{
        margin: 0;
        margin-bottom: 10px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Styles-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.style.lower #content{
    display: flex;
    justify-content: space-between;
}
body.style #main .sect02 ul.wrapper{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2%;
}
body.style #main .sect02 ul.wrapper::before{
    display: none;
}
body.style #main .sect02 ul.wrapper li{
    position: relative;
    width: 100%;
    box-shadow: 10px 10px 1px #ebebeb;
    margin-bottom: 30px;
}
body.style #main .sect02 ul.wrapper li a.img{
    margin-bottom: 0;
    overflow: hidden;
}
body.style #main .sect02 ul.wrapper li a.img img{
    transition: transform .6s ease;
}
body.style #main .sect02 ul.wrapper li a.img:hover img{
    transform: scale(1.1);
}
body.style #main .sect02 ul.wrapper li:hover .style__text{
    opacity: 1;
}
.style__text{
    position: absolute;
    width: 100%;
    height: 100%;
    right: -10px;
    bottom: -10px;
    text-align: center;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    transition: .3s ease-in-out;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px;
    box-sizing: border-box;
}
.style__text h3{
    font-size: 14px;
}
.style_text_sp{
    display: none;
}
body.style.lower #sub{
    width: 20%;
    padding-left: 5%;
}

@media only screen and (max-width: 1024px){
    body.style.lower #content{
        display: block;
    }
    body.style #main .sect02{
        margin-bottom: 60px;
    }
    body.style #main .sect02 ul.wrapper li{
        box-shadow: none;
    }
    body.style #main .sect02 ul.wrapper li:nth-child(3n+2){
        margin: 0;
        margin-bottom: 30px;
    }
    .style__text h3{
        display: none;
    }
    .style_text_sp,body.stylist #main .sect02 ul.wrapper li .style_text_sp{
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        color: #fff;
        background-color: rgba(104,104,104,0.7);
        font-size: 13px;
        line-height: 14px;
        padding: 5px 8px;
    }
    body.style.lower #sub{
        width: 100%;
        padding-left: 0;
    }
}

@media only screen and (max-width: 767px){
    body.style #main .sect02 ul.wrapper{
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 20%;
    }
    .style_text_sp,body.stylist #main .sect02 ul.wrapper li .style_text_sp{
        font-size: 12px;
        padding: 5px 12px;
    }
    body.style #main .sect02 ul.wrapper li{
        margin-bottom: 20px;
    }
    body.style #main .sect02 ul.wrapper li:nth-child(3n+2){
        margin: 0;
        margin-bottom: 20px;
    }
    body.style #main .sect02 ul.wrapper li a.img img{
        width: 100%;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Style-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.style.lower #content #main{
    width: 80%;
}
body.lower #content #main section.sect.styleBox{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
body.style #main .styleBox .visualInfo{
    width: 37%;
}
body.style #main .styleBox .txtInfo{
    width: 60%;
    float: none;
    display: block;
}
body.style #main .styleBox .txtInfo h2{
    font-size: 18px;
    font-weight: bold;
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 10px 0;
}
body.style #main .styleBox .txtInfo ul.sns{
    margin-bottom: 10px;
}
body.style #main .styleBox .txtInfo .box p.styleTitle,.style-arrenge-point-title{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    border-bottom: none;
    margin-bottom: 12px;
}
.style-arrange-point{
    margin-top: 30px;
}
body.style #main .styleBox .txtInfo .box p.styleTitle::before,.style-arrenge-point-title::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 30px;
    background-color: #000;
    margin-right: 15px;
}
body.style #main .styleBox .txtInfo .box dl dt,body.style #main .styleBox .txtInfo .box dl dd{
    font-size: 14px;
}
.style-arrenge-point-title{
    letter-spacing: 0.1rem;
    padding-bottom: 0;
    margin-bottom: 10px;
}
.style-arrenge-point-text{
    font-size: 14px;
}
body.style #main .styleBox .txtInfo .box dl{
    display: flex;
    align-items: center;
    padding-left: 20px;
    margin-bottom: 10px;
    box-sizing: border-box;
}
body.style #main .styleBox .txtInfo .box ul li{
    font-size: 14px;
}
.typeOn{
    background-color: #646464;
}
.typeOff{
    background-color: #ced7dc;
}
body.style #main .styleBox .txtInfo .box ul li{
    font-size: 12px;
}
.hairMenu{
    font-size: 14px;
}
body.style #main .styleBox .visualInfo .photo{
    width: 100%;
}
/* ====== stylist_commentArea ===== */
body.style #main .commentArea{
    width: 100%;
    border: 1px solid #c3c3c3;
    background-color: transparent;
    box-shadow: 10px 10px #eee;
    margin-bottom: 40px;
    box-sizing: border-box;
}
body.style #main .commentArea .img{
    width: 20%;
}
body.style #main .commentArea .img a{
    font-size: 14px;
    color: #000;
}
body.style #main .commentArea .img a:hover{
    font-size: 14px;
}
body.style #main .commentArea .txt{
    width: 80%;
    padding: 3%;
    box-sizing: border-box;
}
body.style #main .commentArea .txt h4{
    font-size: 16px;
    border-bottom: 2px dotted #c3c3c3;
    padding-bottom: 10px;
}
body.style #main .commentArea .txt p{
    font-size: 14px;
    margin-top: 15px;
}
/* ====== coupon ===== */
body.style #main .couponArea{
    width: 100%;
    align-items: center;
    background: url(/img/upload/default/bg_coupon.png) repeat-y left;
    margin-bottom: 60px;
}
body.style #main .couponArea h4{
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
    padding: 0 5px 0 7px;
}
body.style #main .couponArea .couponContent{
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
}
body.style #main .couponArea .couponContent .img{
    width: 30%;
    padding-right: 2%;
}
body.style #main .couponArea .couponContent .txt{
    width: 70%;
    padding: 2%;
}
body.style #main .sect02 .titleArea{
    border-bottom: none;
}

@media only screen and (max-width: 1024px){
    body.style.lower #content #main{
        width: 100%;
    }
    body.style #main .styleBox .txtInfo .box{
        overflow: unset;
        margin-top: 20px;
    }
    .pinterestBtn span{
        width: 2.5rem !important;
        height: 2.5rem !important;
        background: url(/img/upload/default/icon_pinterest-1.png) no-repeat !important;
        background-size: cover !important;
    }
    body.style #main .commentArea{
        display: flex;
    }
    body.style #main .commentArea .img img{
        width: 100%;
        margin: 0 0 10px;
    }
    body.style #main .commentArea .img a{
        text-decoration: none;
        text-align: center;
    }
    /* ====== coupon ===== */
    body.style #main .couponArea h4{
        width: 20px;
        background-color: transparent;
    }
    body.style #main .couponArea .couponContent{
        display: flex;
        padding: 3%;
    }
    body.style #main .couponArea .couponContent .img{
        position: static;
    }
    body.style #main .couponArea .couponContent .img img{
        display: block;
        margin-bottom: 10px;
    }
    body.style #main .couponArea{
        display: flex;
    }
    /* ====== /coupon ===== */
    body.style #main .sect02{
        margin-bottom: 0;
        }
    body.style #main .sect02 .titleArea{
        margin-bottom: 10px;
    }
    body.style #main .sect02 ul.wrapper{
        display: grid;
        grid-template-columns: repeat(4,1fr);
        gap: 2%;
    }
    body.style #main .sect02 ul.wrapper li{
        width: 100%;
    }
    /* body.style #main .sect02 ul.wrapper li:nth-child(3n+2){
        margin: 0 0 60px;
    } */
}

@media only screen and (max-width: 767px){
    body.lower #content #main section.sect.styleBox{
        flex-direction: column-reverse;
    }
    body.style #main .styleBox .visualInfo{
        width: 100%;
        margin-bottom: 30px;
    }
    body.style #main .styleBox .txtInfo{
        width: 100%;
    }
    body.style #main .styleBox .txtInfo h2{
        font-size: 16px;
    }
    body.style #main .styleBox .txtInfo ul.sns li{
        width: 2rem;
    }
    .pinterestBtn span{
        width: 2rem !important;
        height: 2rem !important;
    }
    body.style #main .styleBox .txtInfo .box dl{
        padding-left: 5px;
    }
    body.style #main .styleBox .txtInfo .box dl dd{
        margin-left: 0;
    }
    body.style #main .styleBox .txtInfo .box ul{
        display: grid;
        grid-template-columns: repeat(5,1fr);
        gap: 2%;
    }
    body.style #main .styleBox .txtInfo .box ul::before{
        display: none;
    }
    body.style #main .styleBox .txtInfo .box ul li.typeOn.circletype{
        width: 100%;
    }
    body.style #main .styleBox .txtInfo .box p.styleTitle::before, .style-arrenge-point-title::before{
        margin-right: 10px;
    }
    body.style #main .styleBox .txtInfo .box p.styleTitle, .style-arrenge-point-title{
        margin-bottom: 10px;
    }
    body.style #main .commentArea{
        padding: 10px;
    }
    body.style #main .commentArea .img{
        width: 30%;
    }
    body.style #main .commentArea .img a{
        font-size: 12px;
    }
    body.style #main .commentArea .txt{
        width: 70%;
    }
    body.style #main .commentArea .txt h4{
        font-size: 14px;
        margin-bottom: 10px;
    }
     /* ====== /coupon ===== */
    body.style #main .couponArea{
        display: block;
        background: none;
    }
    body.style #main .couponArea h4{
        width: calc(100% - 10px);
        background-color: #000;
    }
    body.style #main .couponArea .couponContent{
        display: block;
    }
    body.style #main .couponArea .couponContent .img{
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #646464;
        padding-right: 0;
        padding-bottom: 5px;
    }
    body.style #main .couponArea .couponContent .txt{
        width: 100%;
    }
    body.style #main .couponArea .couponContent .txt ul li{
        padding: 5px;
        margin-bottom: 8px;
    }
    body.style #main .sect02 ul.wrapper{
        grid-template-columns: repeat(2,1fr); 
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Gallery-Page　　　　　　　　　　　    　  */
/*=================================================================*/
body.gallery.lower #content{
    display: block;
}
.gallery_category{
    display: flex;
    flex-wrap: wrap;
}
body.gallery #main .sect02 .gallery_category a{
    font-size: 16px;
    color: #000;
    border: 1px solid #000;
    padding: 5px 10px;
    transition: all 0.7s;
    margin-bottom: 10px;
}
body.gallery #main .sect02 .gallery_category a:hover{
    color: #fff;
    background-color: #000;
}
.lightbox-title{
    font-size: 14px;
    color: #000;
    margin-top: 0;
}
body.gallery #main .sect02 ul.wrapper{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2%;
}
body.gallery #main .sect02 ul.wrapper li{
    width: 100%;
    margin: 0 0 20px;
}
body.gallery #main .sect02 a{
    margin-right: 0;
}
body.gallery #main .sect02 ul.wrapper li a img{
    width: 100%;
}


@media only screen and (max-width: 1024px){
    body.gallery #main .sect02 ul.wrapper li{
        margin-bottom: 10px !important;
    }
}

@media only screen and (max-width: 900px){
    body.gallery #main .sect02 ul.wrapper{
        grid-template-columns: repeat(3,1fr);
    }
}

@media only screen and (max-width: 767px){
    body.gallery #main .sect02 .gallery_category a{
        font-size: 14px;
    }
    body.gallery #main .sect02 ul.wrapper{
        grid-template-columns: repeat(2,1fr);
        margin-top: 0;
    }
    body.gallery #main .sect02 ul.wrapper li{
        margin-bottom: 0 !important;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Blogs-Page　　　　　　　　　　　    　    */
/*=================================================================*/
body.blog.lower #content{
    display: flex;
    gap: 5%;
}
body.blog.lower #content #main{
    width: 80%;
    display: block;
}
body.blog #main .couponArea{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 2%;
}
body.blog #main .couponArea .couponContent{
    display: block;
    width: 100%;
    box-shadow: 5px 5px 5px #c9c9c9;
    margin-bottom: 50px;
    cursor: pointer;
    transition: all .3s;
}
body.blog #main .couponArea .couponContent:hover{
    transform: translate3d(0, -10px, 1px);
}
body.blog #main .couponArea .couponContent .img{
    width: 100%;
}
body.blog #main .couponArea .couponContent .img a{
    width: 90%;
    margin-left: auto;
}
body.blog #main .couponArea .couponContent .img a.blog_img:hover{
    opacity: 1;
}
body.blog #main .couponArea .couponContent .img img{
    width: 100%;
    height: auto;
    margin: 0;
}
body.blog #main .couponArea .couponContent .img span{
    position: relative;
    display: block;
    margin-top: -10px;
}
body.blog #main .couponArea .couponContent .img span a{
    color: #fff;
    background-color: #000;
    font-size: 14px;
    text-align: center;
    padding: 5px 10px;
}
body.blog #main .couponArea .couponContent .txt{
    width: 100%;
    padding: 15px 10px 0;
    box-sizing: border-box;
}
body.blog #main .newsTime{
    color: #000;
    font-size: 14px !important;
}
body.blog #main .couponArea .couponContent .txt a{
    display: block;
    font-size: 14px;
    color: #000 !important;
    padding: 0;
}
body.blog #main .couponArea .couponContent .txt a.postUser::before{
    content: '';
    display: inline-block;
    width: 3px;
    height: 1rem;
    background-color: #000;
    vertical-align: middle;
    margin-right: 0.5rem;
}
body.blog #main .couponArea .couponContent .txt h5{
    font-size: 14px;
    margin-bottom: 10px;
}
body.blog #main .couponArea .couponContent .txt a{
    color: #000;
}
.blog_date{
    font-family: 'Alegreya SC', serif;
    font-size: 18px;
    font-weight: 500;
    color: #AFAFAF;
    background-color: transparent;
    padding: 0;
}

@media only screen and (max-width: 1024px){
    body.blog.lower #content{
        display: block;
    }
    body.blog.lower #content #main{
        margin-bottom: 60px;
    }
    body.blog.lower #content #sub{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    body.blog #main .couponArea{
        display: block;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Blog-Page　　　　　　　　　　　    　    */
/*=================================================================*/
body.blog #main .sect .titleArea{
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 15px 0;
}
body.blog #main .sect .titleArea h3{
    font-size: 18px;
    font-weight: bold;
    padding: 0;
}
body.blog #main .sect .wrapper li{
    font-size: 14px;
    background-color: #000;
    margin-bottom: 15px;
}
body.blog #main .newsTime .postUser{
    font-size: 14px;
    color: #000 !important;
}

@media only screen and (max-width: 900px){
    body.blog.lower #content #main{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    body.blog #main .sect{
        padding: 0;
    }
    body.blog #main .sect .titleArea{
        border-top: 4px double #b7b7b7;
        border-bottom: 4px double #b7b7b7;
        margin-bottom: 20px;
    }
    body.blog #main .sect .titleArea h3{
        font-size: 16px;
    }
    body.blog #main .newsTime{
        font-size: 14px !important;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Voice-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.voice.lower #content #main{
    width: 80%;
    margin: 0 auto;
}
body.voice #main .voiceBox{
    width: 100%;
    border: 4px double #b7b7b7;
    padding: 3%;
    margin-bottom: 40px;
    box-sizing: border-box;
}
body.voice #main .voiceBox.pickUp .voiceInner,body.voice #main .voiceBox .voiceInner{
    background-color: transparent;
    border-bottom: 2px dotted #b7b7b7;
    padding: 0 0 15px;
    margin: 0 0 20px;
}
body.voice #main .voiceBox .voiceInner dl{
    border-bottom: 3px solid #b7b7b7;
    background: #eee;
    padding: 10px;
}
body.voice #main .voiceBox .voiceInner dl dd:first-of-type::before{
    display: none;
}
.voice_detail{
    display: flex;
}
body.voice #main .voiceBox .voiceInner dl,body.voice #main .voiceBox .voiceInner p,body.voice #main .voiceBox .review h3, body.voice #main .voiceBox .reply h3,body.voice #main .voiceBox .review dl,body.voice #main .voiceBox .reply p{
    font-size: 14px;
}
body.voice #main .voiceBox .voiceInner p{
    padding-left: 0;
    margin: 0;
}
.voice_menu{
    display: flex;
    align-items: center;
    font-size: 14px;
    border-top: 3px double #b7b7b7;
    border-bottom: 3px double #b7b7b7;
    padding: 15px;
    margin-bottom: 20px;
}
.voice_menu span{
    display: flex;
    align-items: center;
}
.voice_menu span::after{
    content: '';
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: #b7b7b7;
    margin: 0 15px 0 15px;
}
body.voice #main .voiceBox .review h3, body.voice #main .voiceBox .reply h3{
    border-bottom: none;
    margin-bottom: 10px;
}
body.voice #main .voiceBox .review{
    background: #eee;
    padding: 15px;
}
body.voice #main .voiceBox .review dl dd{
    color: #4e4e4e;
}

@media only screen and (max-width: 900px){
    body.voice.lower #content #main{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    body.voice #main .voiceBox{
        margin-bottom: 20px;
    }
    body.voice #main .voiceBox .voiceInner dl{
        flex-direction: column;
    }
    .voice_detail{
        font-size: 13px;
    }
    body.voice #main .voiceBox .voiceInner dl dt{
        margin-bottom: 8px;
    }
    body.voice #main .voiceBox .voiceInner dl dd:first-of-type{
        margin-left: 0;
    }
    .voice_menu{
        display: block;
        padding: 10px;
    }
    .voice_menu span{
        display: block;
        border-bottom: 1px dotted #b7b7b7;
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .voice_menu span::after{
        display: none;
    }
    body.voice #main .voiceBox .review .reviewInner{
        display: block;
    }
    body.voice #main .voiceBox .review .reviewInner dl{
        width: 100%;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Faq-Page　　　　　　　　　　　    　      */
/*=================================================================*/
body.faq.lower #content{
    display: flex !important;
}
body.faq.lower #content #main{
    width: 70%;
}
body.faq.lower #content #main section.sect.styleBox{
    display: block;
}
body.faq #main .sect .titleArea{
    border-bottom: none;
    margin-bottom: 0;
}
body.faq #main .sect .titleArea h3{
    border-bottom: 3px double #b7b7b7;
    padding-bottom: 15px;
}
body.faq #main .sect .titleArea h3 span.jp{
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: bold;
}
div.accordion > ul > li > a{
    font-size: 14px;
    background-color: #000;
}
div.accordion > ul > li > ul > li{
    font-size: 14px;
}

@media only screen and (max-width: 1024px){
    body.faq.lower #content{
        flex-direction: column-reverse;
    }
    body.faq.lower #content #main{
        width: 100%;
    }
    body.faq #sub{
        float: none !important;
        width: 100%;
    }
    body.faq #sub{
        margin-bottom: 30px;
    }
    body.faq.lower #sub .subBox:last-of-type{
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 767px){
    body.faq.lower #content_wrapper{
        margin-bottom: 80px;
    }
    body.faq #sub{
        margin-bottom: 0;
    }
    body.faq #main .sect .titleArea{
        padding: 0;
    }
    body.faq #main .sect .titleArea h3{
        padding-bottom: 10px;
    }
    body.faq #main .sect .titleArea h3 span.jp{
        font-size: 14px;
    }
    div.accordion > ul > li > ul > li{
        line-height: 24px;
        padding: 3%;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Access-Page　　　　　　　　　　　    　   */
/*=================================================================*/
body.access.lower.onecolumn #content #main{
    width: 90%;
    display: block;
}
.shopImg{
    width: 50%;
    margin-left: 0;
}
body.access .shopImg img{
    margin: 0;
}
body.access #main .shopdate{
    width: 90%;
    background: var(--brand-secondary);
    padding: 140px 40px 30px;
    margin: -100px 0 80px auto;
    box-sizing: border-box;
}
body.access section .shopdate .titleArea{
    position: relative;
    border-bottom: none;
    margin-bottom: 10px;
}
.title_en{
position: absolute;
bottom: -20px;
left: 150px;
width: 40%;
}
body.access #main .shopdate h3 span.en{
    position: relative;
    z-index: 200;
    font-family: var(--title-font);
    font-size: 32px;
}
body.access #main table tr{
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid #000;
}
body.access #main table tr::before{
    content: '';
    display: block;
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 25%;
    height: 4px;
    background-color: #000;
}
body.access #main .shopdate td:nth-child(2n){
    width: 75%;
    font-size: 14px;
    padding: 12px;
    padding-left: 30px;
    box-sizing: border-box;
}
body.access #main table tr th{
    width: 25%;
    display: flex;
    justify-content: center;
    line-height: 18px;
    box-sizing: border-box;
}
body.access #main .shopdate p{
    font-size: 16px;
}
body.access #main .shopdate a{
    font-family: 'Alegreya SC', serif;
    font-size: 24px;
    font-weight: 500;
    color: #000;
}
body.access #main .shopdate td{
    font-size: 16px;
}
.ggmap iframe{
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}

@media only screen and (max-width: 1024px){
    body.access #main .shopdate{
        width: 90% !important;
        margin-top: -180px;
    }
}

@media only screen and (max-width: 900px){
    body.access.lower.onecolumn #content #main{
        width: 100%;
    }
}

@media only screen and (max-width: 767px){
    .shopImg{
        width: 90%;
        margin: 0 auto;
    }
    body.access #main section .shopImg img{
        width: 100%;
    }
    body.access #main .shopdate{
        width: 100% !important;
        padding: 120px 15px 30px;
        margin-top: -150px;
        margin-bottom: 60px;
    }
    body.access #main .shopdate h3 span.en{
        font-size: 28px;
    }
    .title_en{
        width: 65%;
        bottom: 0;
        left: 35%;
    }
    body.access #main .shopdate p{
        font-size: 14px;
    }
    body.access #main .shopdate td:nth-child(2n){
        line-height: 18px;
        padding: 10px;
        padding-left: 15px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Contact-Page　　　　　　　　　　　    　  */
/*=================================================================*/
body.contact #main .contactInner{
    margin-top: 100px;
}
body.contact #main .input .contactInner dl dt,body.contact #main .input .contactInner dl dd textarea,body.contact #main .confirm .contactInner dl dt,body.contact #main .confirm .contactInner dl dd{
    font-size: 16px;
}
body.contact #main .input .contactInner dl dt span,body.contact #main .confirm .contactInner dl dt span{
    color: #d11c1c;
}
body.contact #main .input .contactInner dl dd{
    margin-bottom: 20px;
}
body.contact #main .input .contactInner dl dd input{
    width: 100%;
    font-size: 14px;
    box-sizing: border-box;
}
body.contact #main .input .contactInner dl dd textarea{
    width: 100%;
    box-sizing: border-box;
}
body.contact #main .input .btn{
    width: 100%;
}
body.contact #main .input .btn input#btnReset,body.contact #main .input .btn input#btnConfirm,body.contact #main .confirm .btn input#btnBack,body.contact #main .confirm .btn input#btnSend{
    width: 45%;
    font-family: YakuHanJP, YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 16px;
    background-color: var(--brand-secondary);
    cursor: pointer;
}
body.contact #main .input .btn input#btnConfirm,body.contact #main .confirm .btn input#btnSend{
    background-color: #000;
}
/* ===== confirm page ===== */
body.contact #main p.message{
    font-size: 16px;
    font-weight: bold;
}
body.contact #main .confirm .btn{
    display: flex;
    justify-content: space-around;
    width: 100%;
}
/* ===== complete page ===== */
body.contact #main .complete a.returnTop{
    width: 50%;
    font-size: 16px;
    background-color: #000;
    color: #fff;
}

@media only screen and (max-width: 1024px){
    /* ===== confirm page ===== */
    body.contact #main .contactInner{
        width: 100%;
    }
    body.contact #main .confirm .contactInner dl{
        display: flex;
        align-items: center;
        border-bottom: 1px dotted #b7b7b7;
        padding: 15px;
        margin-bottom: 0;
    }
    body.contact #main .confirm .contactInner dl dt{
        width: 40%;
        margin-bottom: 0;
    }
    body.contact #main .confirm .contactInner dl dd {
        width: 60%;
    }
}

@media only screen and (max-width: 900px){
    body.contact #main .contactInner{
        margin-top: 60px;
    }
     /* ===== confirm page ===== */
    body.contact.lower.onecolumn #content #main{
        width: 100%;
    }
/* ===== complete page ===== */
    body.contact #main p.message{
        width: 80%;
        padding: 10px;
        margin-bottom: 30px;
        box-sizing: border-box;
    }
}

@media only screen and (max-width: 767px){
    body.contact #main .contactInner{
        margin-top: 30px;
    }
    body.contact #main .input .contactInner dl dd input{
        padding: 12px;
    }
    /* ===== confirm page ===== */
    body.contact #main .confirm .contactInner dl{
        display: block;
        padding: 10px;
    }
    body.contact #main .confirm .contactInner dl dt{
        margin-bottom: 5px;
    }
    body.contact #main .confirm .contactInner dl dt,body.contact #main .confirm .contactInner dl dd{
        width: 100%;
    }
    body.contact #main .input .contactInner dl dt,body.contact #main .confirm .contactInner dl dt,body.contact #main .confirm .contactInner dl dd{
        font-size: 14px;
    }
    body.contact #main .input .btn,body.contact #main .confirm .btn{
        display: block;
    }
    body.contact #main .input .btn input#btnReset,body.contact #main .input .btn input#btnConfirm,body.contact #main .confirm .btn input#btnBack,body.contact #main .confirm .btn input#btnSend{
        width: 100%;
        font-size: 14px;
        padding: 10px;
    }
    body.contact #main .confirm .btn input#btnBack, body.contact #main .input .btn input#btnReset{
        margin-bottom: 20px;
    }
    /* ===== complete page ===== */
    body.contact #main p.message{
        font-size: 14px;
        margin-bottom: 20px;
        }
    body.contact #main .complete a.returnTop{
        width: 90%;
        padding: 10px;
        box-sizing: border-box;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Sitemap-Page　　　　　　　　　　　    　 */
/*=================================================================*/
body.sitemap #main .shopdate ul a{
    font-size: 16px;
    text-decoration: none;
}
.main_page_link li{
    border-bottom: 2px solid #eee;
    padding: 10px 0 10px 20px;
}
.main_page_link li::before{
    display: none;
}
body.sitemap #main .sublist li{
    border-bottom: none;
    padding: 5px 0 5px 10px;
}
body.sitemap #main .sublist li::before{
content: '';
display: inline-block;
width: 15px;
height: 3px;
background-color: #eee;
vertical-align: middle;
margin-right: 10px;
}

@media only screen and (max-width: 767px){
    body.sitemap #main section{
        margin-top: 30px;
    }
    body.sitemap #main .shopdate ul a{
        font-size: 14px;
    }
    .main_page_link li{
        padding: 5px 0 5px 10px;
    }
    body.sitemap #main .sublist li{
        line-height: 20px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  Privacy-Page　　　　　　　　　　　    　  */
/*=================================================================*/
body.privacy #main section{
    margin: 80px auto;
}
body.privacy section .shopdate .titleArea{
    position: relative;
    border-bottom: none;
    margin-bottom: 60px;
}
body.privacy section .shopdate .titleArea::after{
    content: '';
    display: inline-block;
    width: 50px;
    height: 4px; 
    position: absolute;
    top: 45px;
    left: 0;
    background-color: #000;   
}
body.privacy #main .shopdate ol li{
    font-size: 16px;
}
body.privacy #main .shopdate h3{
    font-size: 28px;
}

@media only screen and (max-width: 767px){
    body.privacy #main section{
        margin-top: 40px;
    }
    body.privacy section .shopdate .titleArea::after{
        top: 50px;
    }
    body.privacy #main .shopdate h3{
        font-size: 20px;
    }
    body.privacy section .shopdate .titleArea::after{
        top: 35px;
    }
    body.privacy #main .shopdate ol li{
        font-size: 14px;
    }
    body.privacy #main .shopdate ol{
        margin-left: -20px;
    }
}

/*=================================================================*/	
/*　　　　　　　　　　　　　  404-Page　　　　　　　　　　　    　     */
/*=================================================================*/
body.lower #content_wrapper.notPage_content{
    padding-top: 100px;
}
body.lower #content_wrapper.notPage_content #content #main p{
    line-height: 32px;
    margin-bottom: 50px;
}
.top_btn{
    display: block;
    width: 280px;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 10px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px){
    body.lower #content_wrapper.notPage_content{
        padding-top: 60px;
    }
    body.lower #content_wrapper.notPage_content #content #main p{
        line-height: 28px;
    }
    .top_btn{
        width: 90%;
        font-size: 14px;
    }
}