@charset "utf-8";

html {
  scroll-behavior: smooth;
}
body {
  padding-bottom: 116px;
}
.page-top {
  position: fixed;
  right: 20px;
  bottom: 150px;
  width: 50px;
  height: 50px;
  background: #000;
  color: #fff;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  border-radius: 50%;
  z-index: 1000;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.page-top {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.page-top.is-show {
  opacity: 1;
  pointer-events: auto;
}

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

.header__logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.header__logo img {
  max-height: 35px;
  width: auto;
  display: block;
}

.shoplist_sp {
  width: 100%;
  margin-top: 60px;
}
.shop-card {
  position: relative;
  height: 180px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #fff;
  text-decoration: none;
  text-align: right;
}
.shop-card--tricot {
  background: url('../img/sp_shop_tricot.jpg') no-repeat center / cover;
}
.shop-card--atelier {
  background: url('../img/sp_shop_atelier.jpg') no-repeat center / cover;
}
.shop-card--live {
  background: url('../img/sp_shop_live.jpg') no-repeat center / cover;
}
.shop-card--eco {
  background: url('../img/sp_shop_eco.jpg') no-repeat center / cover;
}
.shop-card--life {
  background: url('../img/sp_shop_life.jpg') no-repeat center / cover;
}
.shop-card--mind {
  background: url('../img/sp_shop_mind.jpg') no-repeat center / cover;
}
.shop-card--palette {
  background: url('../img/sp_shop_palette.jpg') no-repeat center / cover;
}
.shop-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.shop-card__logo img {
  height: 30px;
  width: auto;
  display: block;
}
.shop-card__area {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}
.shop-card__arrow {
  margin-left: 10px;
  margin-top: -20px;
}
.shop-card__arrow img {
  width: 20px;
  height: auto;
}

.sp-concept {
  background: url('../img/sp_bk.jpg') no-repeat center / cover;
  color: #fff;
  padding: 50px 40px 80px;
  line-height: 2;
  letter-spacing: 0.1em;
}
.sp-concept_title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* リクルートボタン固定 */
.sp-recruit-button {
  display: flex;
  height: 116px;
  position: fixed;
  bottom: 0;
  left:0;
  right: 0;
  z-index: 1000;
}

/* リクルートボタンSP・PC共通 */
.recruit-button {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  margin: 0 auto;
  padding: 10px;
}
.recruit_new {
  background-color: #23361E;
  color: #fff;
}
.recruit_mid {
  background-color: #E0E0E0;
}
.recruit-button img {
  max-width: 66%;
}
.recruit-button__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
  line-height: 1;
}

/* PCブロック非表示 */
.pc-slider {
  display: none;
}
.overlay {
  display: none;
}
.right-section {
  display: none;
}



/* ==== PC用レイアウト ==== */
@media screen and (min-width: 768px) {



  body {
    font-size: 1.1rem;
    padding-bottom: 0;
  }

  /* SPブロック非表示 */
  .sp-concept {
    display: none;
  }

  .container {
    flex-direction: row;
    height: 100vh;
  }

  /* 左側（スライダー＋オーバーレイ） */
  .left-section {
    width: 75%;
    height: 100vh;
    position: relative;
  }
  .slider {
    width: 100%;
    height: 90%;
    position: relative;
  }
  .swiper {
    width: 100%;
    height: 100%;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .pc-slider {
    display: block;
    filter: brightness(0.8);
  }  

  /* PC用オーバーレイ */ 
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    z-index: 10;
  }

  /* オーバーレイ上部 テキスト部分 */ 
  .overlay-top {
    display: block;
    flex: 1;
  }

  .pc-concept {
    color: #fff;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s ease-out forwards;
    width: 70%;
    animation-delay: 0.2s;
  }
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .pc-header__logo {
    width: 180px;
    height: auto;  
    display: block;
    margin-top: 20px;
  }
  .sub-title {
    font-size: 1.6rem;
    line-height: 3;
    margin: 15px 0;
    white-space: nowrap;
    transform: translateY(50px);
    animation: fadeInText 1s ease-in-out forwards;
  }

  @keyframes fadeInText {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

 /* オーバーレイ下部 ショップ部分 */ 
  .overlay-bottom {
    width: 100%;
    background: rgba(0,0,0,1);
    color: #fff;
  }
  .shoplist {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
  }
  .shop {
    display: flex;
    align-items: stretch;
    height: clamp(100px, 7vw, 130px);
    overflow: hidden;
    border-bottom: 1px solid black;
    position: relative;
  }
  .shop > div:first-child {
    flex: 0 0 40%;
  }
  .shop-img {
    position: relative;
    flex: 0 0 45%;
    height: 100%;
  }
  .shop-img img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .shop-logo-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .shop__logo {
    display: block;
    height: 15px;
    width: auto;
  }
  .shop__logo img {
    height: 15px;
    width: auto;
    display: block;
  }
  .shop__area {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    margin-top: 3px;
    display: block;
  }
  .shop-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1rem;
    letter-spacing: 0.2rem;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
  }
  .shop {
    display: flex;
    align-items: stretch;
    height: clamp(80px, 7vw, 130px);
    overflow: hidden;
    border-bottom: 1px solid black;
    position: relative;
    text-decoration: none;
    color: inherit;
  }
  .shop:hover .shop-overlay {
    opacity: 1;
  }

  /* PC右メニュー */
  .right-section {
    display: flex;
    width: 30%;
    background: #000;
    flex-direction: column;
    justify-content:flex-start;
    align-items: center;
    gap: 0;
    z-index: 333;
  }

  .salon-button {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    border-bottom: 1px solid #fff;
  }
  .label-default,
  .label-hover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 20px;
    transition: opacity 0.3s ease;
    flex-direction: column;
  }
  .label-default {
    opacity: 1;
  }
  .rightmenu_logo {
    width: auto;
    height: 20px;
  }
  .salon__area {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-top: 3px;
    display: block;
  }
  .label-hover {
    opacity: 0;
    font-size: 0.9rem;
    line-height: 1.8;
    text-align: left;
  }
  .salon-button:hover .label-default {
    opacity: 0;
  }
  .salon-button:hover .label-hover {
    opacity: 1;
  }
  .salon__info {
    font-size: 1.2rem;
    margin-bottom: 3px;
    display: block;
  }
  

/* リクルートボタン */
  .recruit-button {
    height: 80px;
    transition: 0.3s;
  }
  .recruit-button.recruit_new:hover {
    background-color: rgb(21, 65, 21);
  }
  .recruit-button.recruit_mid:hover {
    background-color: rgb(242, 242, 215);
  }
  .recruit-button img {
    max-width: 100%;
  }
  .recruit-button__text {
    font-size: 2rem;
  }
  .recruit-button__logo,
  .recruit-button__text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
    padding: 1rem;
    text-align: center;
  }  
  .recruit-button img {
    height: 16px;
    width: auto;
  }
  .recruit-button__text {
    font-size: 1.3rem;
  } 
}