@charset "utf-8";
/* ---------------------------------------------------------------------------------
Copyright©SAKURAYA All Rights Reserved.

HTML CSS Selectors LP common 2025

$Revision: 1.0 $
--------------------------------------------------------------------------------- */

/*---------------------------------------------------------------------------------
初期設定
--------------------------------------------------------------------------------- */
:root {
  --min-width:1366px;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Roboto", sans-serif;
  --font-serif: "Noto Serif JP", serif;
}
*, *::before, *::after {
  box-sizing: border-box;
}
body {
	margin: 0px;
	padding: 0px;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 14px;
	line-height: 1.8;
  letter-spacing: 0.05em;
	color: #220000;
  -webkit-text-size-adjust: none; /* フォントサイズ自動調整 */
    word-break : break-all;
    word-wrap : break-word;
    overflow-wrap : break-word;
}

h1,h2,h3,h4,h5,h6 {
}
h1,h2,h3,h4,h5,h6,
ul,ol,dl,
p,li,dt,dd,th,td,em,strong,blockquote {
  margin: 0px;
  padding: 0px;
  border: 0;
  vertical-align: baseline;
  font-weight: inherit;
}
em {
  font-style: normal;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
	margin: 0px;
	padding: 0px;
}

p,dd,li {
  list-style: none;
}
em,strong {
  font-weight: bold;
}

img {
  vertical-align:top;
  max-width: 100%;
  height: auto;
}
.fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a img {
	border: none;
}
a:link,
a:visited,
a:hover,
a:active {
	color: inherit;
	text-decoration: none;
}

a:hover {
	transition: 0.2s ease-in-out;
  opacity: 0.5;
}

.clearfix::after {
	content: ""; 
	display: block;
	clear: both;
	height: 0;
}
.none {
  display: none!important;
}

.nolink {
  pointer-events: none;
}
.anchor {
  display: block;
  height: 0;
  position: relative;
  top: -120px;
}
/*---------------------------------------------------------------------------------
エフェクト
--------------------------------------------------------------------------------- */
/* 画面外にいる状態 */
.effect {
  opacity : 0;
	transition : all 700ms 300ms;
}
.fade-drop {
  transform: translate(0,-50px);
}
.fade-rize {
  transform: translate(0,50px);
}
.fade-left-in {
  transform: translate(-50px,0);
}
.fade-right-in {
  transform: translate(50px,0);
}
.slide-img {
  opacity: 1.0;
	transform: translate(0,0px);
  position: relative;
  overflow:hidden;
}
.slide-img::after {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition : all 700ms 300ms;
  z-index: 10;
  content:"";
}
/* 画面内に入った状態 */
.effect-on {
  opacity: 1.0;
	transform: translate(0,0px); 
}
.effect-on.slide-img::after {
  left: 100%;
}
/*ファーストビューエフェクト*/
.fv-effect {
  transition : all 700ms cubic-bezier(0.000, 0.000, 0.000, 1.000);
  opacity: 0;
}
.fv-effect.slide-img {
  opacity: 1;
  transform: translate(0,0);
}

.loaded .fv-effect {
  opacity: 1;
  transform: translate(0,0);
}
.loaded .fv-effect.slide-img::after {
  left: 100%;
}
.loaded .delay01 {
  transition-delay:0ms;
}
.loaded .delay02 {
  transition-delay:200ms;
}
.loaded .delay03 {
  transition-delay:400ms;
}
.loaded .delay04 {
  transition-delay:700ms;
}
.loaded .delay05 {
  transition-delay:1000ms;
}
/*アニメーション*/
.delay0,
.delay0.slide-img::after {
  transition-delay:0ms;
}
.delay1,
.delay1.slide-img::after {
  transition-delay:100ms;
}
.delay2,
.delay2.slide-img::after {
  transition-delay:200ms;
}
.delay3,
.delay3.slide-img::after {
  transition-delay:300ms;
}
.delay4,
.delay4.slide-img::after {
  transition-delay:400ms;
}
.delay5,
.delay5.slide-img::after {
  transition-delay:500ms;
}
.delay6,
.delay6.slide-img::after {
  transition-delay:600ms;
}
.delay7,
.delay7.slide-img::after {
  transition-delay:700ms;
}
.delay8,
.delay8.slide-img::after{
  transition-delay:800ms;
}
.delay9,
.delay9.slide-img::after{
  transition-delay:900ms;
}
.delay10,
.delay10.slide-img::after {
  transition-delay:1000ms;
}

.effect2 {
  opacity : 0;
  transform: translate(0,0);
	transition : all 700ms 0ms;
}
.effect-on .effect2 {
  opacity: 1.0;
}

/*---------------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------------- */
#header-wrapper {
  width: 100%;
  min-width: var(--min-width);
  position: fixed;
  opacity: 1;
  z-index: 50;
  top: 0;
  left: 0;
}
.header-logo {
  width: 154px;
  margin: 57px 0 0 112px;
  position: relative;
}
.header-logo span {
  display: block;
  width: 136px;
  position: absolute;
  top: 56px;
  left: -54px;
}

.header-entry {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 0;
  right: 0;
}
.header-entry a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #242427;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.header-entry a span.en {
  display: block;
  padding: 60px 0 15px;
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.side-txt {
  width: 50px;
  height: calc(100vh - 160px);
  padding-top: 107px;
  background-color: rgba(255,255,255,0.6);
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 49;
}
.side-txt::before {
  width: 1px;
  height: 100px;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  content:"";
  z-index: 50;
}
.side-txt-in {
  width: 15px;
  height: 100%;
  margin: 0 auto;
  overflow:hidden;
}
.side-txt-in__tic {
  height: fit-content;
  font-size: 15px;
  line-height: 1;
  writing-mode: vertical-rl;
  white-space: nowrap;
  animation: flowing 15s linear infinite;    /*アニメーション*/
  transform:translateY(100%);              /*最初の位置*/
}
@keyframes flowing {
  100% {
    transform:translateY(-100%);    /*終わりの位置*/
  }
}

#toggle_menu {
	width: 100px;
	height: 22px;
	position: fixed;
	top: 63px;
	right: 0;
  left: 0;
  margin: 0 auto;
	z-index:101;
	cursor: pointer;
}
#toggle_menu:hover {
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	filter: alpha(opacity=50);
	-moz-opacity:0.5;
	opacity:0.5;
}

#toggle_menu .inner {
	width: 100%;
	height: 100%;
	position:relative;
}
#toggle_menu .inner div {
	width: 100px;
	height: 2px;
	background-color: #fff;
	position: absolute;
}
.sc #toggle_menu .inner div {
	background-color: #504B46;
}
#toggle_menu .menu1 {
	top: 0px;
}
#toggle_menu .inner .menu2 {
	top: 20px;
}
#toggle_menu .menu1, #toggle_menu .menu2 {
  transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out; /* opera */
  -moz-transition: all 0.5s ease-out; /* firefox */
  -webkit-transition: all 0.5s ease-out; /* chrome, safari */
  -ms-transition: all 0.5s ease-out; /* ie */
}
#toggle_menu .menuclick1 {
  top: 20px;
  -moz-transform: rotate(405deg);
  -webkit-transform: rotate(405deg);
  -o-transform: rotate(405deg);
  -ms-transform: rotate(405deg);
  transform: rotate(405deg);
  background-color: #fff!important;
}
#toggle_menu .menuclick2 {
  top: 20px;
  -moz-transform: rotate(-405deg);
  -webkit-transform: rotate(-405deg);
  -o-transform: rotate(-405deg);
  -ms-transform: rotate(-405deg);
  transform: rotate(-405deg);
  background-color: #fff!important;
}

#nav-background,
#entry-background{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index:98;
 background-color: rgba(0,0,0,0.8);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity 0.5s, visibility 0s 0.5s;
	transition: opacity 0.5s, visibility 0s 0.5s;
}

.recruit_open #nav-background,
.entry_open #entry-background {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.nav-background-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding-top: 140px;
}

.nav-background-inner li {
  padding-left: 52px;
  font-size: 20px;
  line-height: 2.25;
  color: #fff;
}
.nav-background-inner li a {
  display: block;
  position: relative;
}
.nav-background-inner__list01 {
  margin-bottom: 30px;
}
.nav-background-inner__list01 li {
  padding-left: 40px;
}
.nav-background-inner__list01 li:first-child {
  padding-left: 0;
}

#entry-background {
  z-index: 102;
}
.entry-close {
  width: 160px;
  height: 160px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.entry-close a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/recruit_2025/h_close.svg") no-repeat center #fff;
}
.entry-background-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.entry-background-inner__ttl {
  margin-bottom: 70px;
  font-size: 32px;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.entry-background-inner-in {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.entry-background-inner-in li {
  width: 260px;
  height: 260px;
  background-color: rgba(255,255,255,0.90);
  padding-top: 42px;
  margin: 0 15px;
  text-align: center;
  line-height: 1;
}
.entry-background-inner-in__img {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 112px;
  margin: 0 auto 12px;
}.entry-background-inner-in__img.line a {
  display: block;
  width: fit-content;
  height: 100%;
}
.entry-background-inner-in__img.line img {
  width: auto;
  height: 100%;
}
.entry-background-inner-in__img.form {
  width: 70px;
}
.entry-background-inner-in__img.tel {
  width: 204px;
  padding-top: 40px;
}
.entry-background-inner-in__ttl {
  font-size: 18px;
  margin-bottom: 12px;
}
.entry-background-inner-in__comment {
  font-size: 11px;
}
.entry-background-inner-in__comment::before {
  font-size: 16px;
  content:" ／ ";
}
.entry-background-inner-in__comment::after {
  font-size: 16px;
  content:" ＼ ";
}

/*---------------------------------------------------------------------------------
コンテンツ
--------------------------------------------------------------------------------- */
#contents-wrapper {
  width: 100%;
  min-width: var(--min-width);
  min-height: 100vh;
  overflow:hidden;
}
.sec-ttl {
  width: 1120px;
  margin: 0 auto 45px;
  font-size: 32px;
  line-height: 1;
  font-weight: 500;
  position: relative;
}
.sec-ttl .en {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.2em;
}
.sec-ttl::before {
  width: 0;
  height: 2px;
  background-color: #000;
  position: absolute;
  right: calc(100% + 20px);
  bottom: 2px;
  content:"";
  transition : all 700ms 700ms;
}
.effect-on.sec-ttl::before {
  width: 50%;
}


/*---------------------------------------------------------------------------------
SALON LIST
--------------------------------------------------------------------------------- */
.salon {
  font-family: var(--font-serif);
  width: 100%;
  padding: 50px 0;
  background-color: #f5f5f5;
  margin-bottom: 5px;
}
.salon-inner {
  width: 950px;
  margin: 0 auto;
}
.salon-ttl {
  margin: 0 0 38px 64px;
  position: relative;
  font-size: 44px;
  line-height: 1;
  letter-spacing: 0;
}
.salon-ttl span {
  display: block;
  padding-bottom: 25px;
  font-size: 14px;
  color: #acaaa5;
}
.salon-ttl::before {
  width: 45px;
  height: 2px;
  background-color: #000;
  position: absolute;
  bottom: 3px;
  left: -64px;
  content:"";
}
.salon-ttl .count {
  display: block;
  padding-bottom: 0;
  font-size: 12px;
  line-height: 1;
  color: #a9a9a9;
  position: absolute;
  right: 40px;
  bottom: 0;
}
.salon-ttl .count em {
  font-size: 28px;
  color: #000;
  font-weight: 400;
  display: inline-block;
  padding: 0 5px;
}

.salon-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
}
.salon-list > li {
  width: 33.3%;
  padding-bottom: 40px;
}
/*.salon-list > li:nth-of-type(1),
.salon-list > li:nth-of-type(2),
.salon-list > li:nth-of-type(3) {
  width: 33.3%;
}*/

.top-salon-brand-name {

  margin-bottom: 20px;
}
.top-salon-brand-name a {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.top-salon-brand-name a img {
  width: 50px;
  border-radius: 50%;
}
.top-salon-brand-name div {
  padding-left: 20px;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}
.top-salon-brand-name div span {
  display: block;
  padding-top: 8px;
  text-align: right;
  font-size: 10px;
  color: #91a1cb;
}
.top-salon-brand-list {
  padding-left: 42px;
  opacity: 1;
}
.top-salon-brand-list li {
  padding-bottom: 12px;
  font-size: 12px;
  line-height: 1;
  text-decoration: underline;
  position: relative;
  transition : all 700ms 1000ms;
  transform: translate(0,-50px);
  opacity: 0;
}
.top-salon-brand-list.effect-on li {
  opacity: 1.0;
  transform: translate(0,0px); 
}
.top-salon-brand-list li ::before {
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  position: absolute;
  top: -5px;
  left: -20px;
  content:"";
}
.top-salon-brand-list.effect-on li:nth-of-type(1) {
  transition-delay: 1100ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(2) {
  transition-delay: 1200ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(3) {
  transition-delay: 1300ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(4) {
  transition-delay: 1400ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(5) {
  transition-delay: 1500ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(6) {
  transition-delay: 1600ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(7) {
  transition-delay: 1700ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(8) {
  transition-delay: 1800ms;
}
.top-salon-brand-list.effect-on li:nth-of-type(9) {
  transition-delay: 1900ms;
}

.btn-salon-map {
  display: block;
  margin-left: 795px;
  font-size: 16px;
  line-height: 1;
  text-decoration: underline!important;
  position: relative;
}
.btn-salon-map::before {
  position: absolute;
  top: 0;
  left: -20px;
  content:"＞";
}

/*---------------------------------------------------------------------------------
footer
--------------------------------------------------------------------------------- */
.page-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 76px;
  background-color: #161616;
  font-family: var(--font-serif);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #fff;
}

/*---------------------------------------------------------------------------------
script
--------------------------------------------------------------------------------- */

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:visible;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0; padding:0; margin:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:#fff; opacity: 1; filter: alpha(opacity = 100);}
#colorbox{outline:0;}
    #cboxContent{background:transparent; overflow:visible;}
        .cboxIframe{background: transparent;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:0px;}
        #cboxTitle{position:absolute; bottom:0px; left:0; text-align:center; width:100%; color:#999;}
        #cboxCurrent{position:absolute; bottom:0px; left:100px; color:#999;}
        #cboxLoadingOverlay{background:#fff;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:0px; right:42px; color:#444;}
        #cboxPrevious{position:absolute; bottom:0px; left:0; color:#444;}
        #cboxNext{position:absolute; bottom:0px; left:63px; color:#444;}
        #cboxClose{position:absolute; top:0px; left:50%; margin-left: 480px; display:block; width: 72px; height: 96px; background-image: url(../img/common/btn_modal_close.png);background-size: 100% auto;}


/*SP ---------------------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #cboxClose {
    width: 22px;
    height: 22px;
    background-size: 100% auto;
    top: 0px;
    l:a
    right: 0px;
    margin: 0;
  }
  
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.slick-prev {
	background-position: left top;
}
.slick-next {
	background-position: right top;
}
.slick-prev:before,
.slick-next:before {
  display: none !important;
}
.slick-prev:active,
.slick-next:active {
  border: none;
}
.slick-disabled {
  display: none !important;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity:0.5;

}
