
.therapist-name {
  font-family: "Zen Old Mincho", serif;
    text-align: center;
    margin: 2em 0 1em;
    font-size: 36px;
    height: 83px;
    line-height: 83px;
    background: url(../img/bg-tl.png) top center no-repeat;
    color:#a49483 ;
}

.today-work {
    background: var(--blue);
    color: #fff;
    padding: 0.5em 2em;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    border-radius: 2em;
}

.therapist-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

.therapist-info-table th,
.therapist-info-table td {
    border: 1px solid #ccc;
    padding: 10px 15px;
    text-align: left;
    vertical-align: middle;
}

.therapist-info-table th {
    background-color: #f5f5f5;
    width: 150px;           /* ラベル列の幅 */
    font-weight: bold;
    color: #333;
}

.therapist-info-table td {
    background: #fff;
}
.schedule-btn a {
    display: block;          /* ブロックに変更 */
    width: fit-content;      /* ボタン幅に合わせる */
    margin: 2em auto 0;      /* 上:2em、左右:自動、下:0 */
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 0.5em 2em;
    border-radius: 2em;
    font-size: 24px;
    text-align: center;      /* テキスト中央寄せ */
    border:solid 4px var(--red);
}
.schedule-btn a:hover{
    background: #fff;
    color: var(--red);
    transition: 0.4s;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {


}

/* 
スライドショー */
.slider{
    overflow: hidden;
    max-height: 450px;
    margin-top: 40px;
}
.slider img {
  width: 100%;
  height: 450px;        /* 高さ固定 */
  object-fit: cover;
}

/* サムネイル固定表示 */
.thumbnail {
  display: flex;
  gap: 10px;           /* サムネイル間の隙間 */
  justify-content: center;
  margin-top: 20px;
}

.thumbnail-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
}

/* 選択中サムネイルの枠 */
.thumbnail-img.active img {
  border-color: #ff0000;
}


/* 
セラピスト一覧 */

.archive-therapist-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    list-style: none;
    padding: 0;
    text-align: center;
}
.archive-therapist-list li {
    width: calc(50% - 20px / 2);
    box-sizing: border-box;
    position: relative;
}
.archive-therapist-list li a p {
    font-family: "Zen Old Mincho", serif;
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    /* background: rgba(0, 0, 0, 0.5); */
    display: block;
    object-fit: contain;
    color: #fff;
    width: fit-content;
    margin: 0 auto;
    line-height: 1;
    padding: 0.5em 2em;
}




@media (max-width: 750px) {
.therapist-name{
    font-size: 8vw;
}
.top_blog_img img {
    max-width: 100%;
    height: auto;
}
.archive-therapist-list li a p{
    padding: 0.5em 0;
    font-size: 4vw;
}
}