/* solid013 */
.button_solid013 a {
    background: #696969;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 5px;
    border-bottom: 4px solid #000000;
    overflow: hidden;
}
.button_solid013 a:active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.button_solid013 a:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.button_solid013 a:after {
  content: '»';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}

/* LINE006 */
.button_line006 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 600;
}
.button_line006 a:before,
.button_line006 a:after {
  position: absolute;
  width: 100%;
  height: 3px;
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  background: #000;
}

.button_line006 a:before {
  top: 0;
  left: 0;
}

.button_line006 a:after {
  right: 0;
  bottom: 0;
}

.button_line006 a:hover:before,
.button_line006 a:hover:after {
  width: 0;
}

#topbox #profdata .wait_time {
color:#000;
}


/* フォントを明朝体に（他のページに影響しないように） */
.spa-w-concept, .spa-w-service, .spa-w-luxury {
    font-family: "游明朝", "Yu Mincho", serif;
    color: #333;
    background: transparent;
    line-height: 1.8; /* 行間を元に戻す */
}

/* セクション共通スタイル */
section.spa-w-concept-section {
    padding: 40px 5%; /* 上下の余白を縮める */
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

/* セクション間の余白を短縮（テキスト間の改行余白はそのまま） */
.spa-w-concept-section + .spa-w-concept-section {
    margin-top: -20px;
}

/* メインタイトル */
.spa-w-concept-title {
    font-size: 3.0em;
    text-align: center;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}

/* リード文 */
.spa-w-concept-lead {
    font-size: 1.4em;
    text-align: center;
    font-weight: 500;
    margin-bottom: 30px;
}

/* 強調テキスト */
.spa-w-strong {
    color: #8b5e3b;
}

/* サービスブロック */
.spa-w-service-block {
    background: rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* ホバーエフェクト */
.spa-w-service-block:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* サービスタイトル */
.spa-w-service-title {
    font-size: 1.8em;
    font-weight: 600;
    color: #b8860b;
    margin-bottom: 15px;
    text-align: center;
}

/* ラグジュアリー体験セクション */
.spa-w-luxury-experience {
    text-align: center;
    padding-top: 20px;
}

/* ラグジュアリータイトル */
.spa-w-experience-title {
    font-size: 2em;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 15px;
}

/* パラグラフスタイル（改行幅を元に戻す） */
.spa-w-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

/* コンセプトのサブテキスト（センター揃え） */
.spa-w-concept-feature {
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
    color: #8b5e3b;
    margin-bottom: 30px;
}

/* 不要な改行削除を取り消し（改行を元に戻す） */
.spa-w-text br {
    display: inline;
}

/* モバイル対応 */
@media (max-width: 768px) {
    section.spa-w-concept-section {
        padding: 30px 8%;
    }

    .spa-w-concept-title {
        font-size: 1.8em;
    }

    .spa-w-service-title {
        font-size: 1.5em;
    }

    p.spa-w-text {
        font-size: 1em;
    }

    .spa-w-service-block {
        padding: 20px;
        margin-bottom: 20px;
    }
}

/* 新人ページコメントを5行まで */
#newface .gallist li article .comment {
    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 5; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
}
