


/* 
front */

/* top-news */
.top-news {
    margin-top: 2em;
}
.top-news h2{
    text-align: center;
}
.top-news-box{
    max-width: 590px;
    margin: 20px auto;
    /* background: url(../img/news-bg.png) no-repeat;
    background-size: 100%;
    max-width: 550px;
    margin: 20px auto;
    padding: 40px; */
}
.top-news-box ul li{
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.top-news-box ul li:not(:first-child) {
  margin-top: 20px;
}
.top-news-img {
    width: 100px;
    height: 100px;
    overflow: hidden;
}
.top-news-img img {
    max-width: 100%;
    height: auto;
}
.top-news-days {
    text-align: center;
    font-size: 18px;
}
.top-news-details {
    display: flex;
    gap: 1em;
    align-items: center;
}
.top-news-tl a{
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
}

/* 
today-therapist */
.today-therapist h2{
    text-align: center;
    margin-bottom: 20px;
}
.today-therapist ul {
    display: flex;
    flex-wrap: wrap; /* 改行を許可 */
    gap: 20px;       /* アイテム間の間隔 */
    list-style: none;
    padding: 0;
    text-align: center;
}

.today-therapist ul li {
    width: calc(50% - 20px/2); /* gapの半分を引く */
    box-sizing: border-box;
    position: relative;
}
ul.today-therapist-list 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) {
.today-therapist ul{
    gap: 4vw;
}
.today-therapist ul li {
    width: calc(50% - 2vw);
}
.today-therapist ul li a img{
    max-width: 100%;
    height: auto;
}
ul.today-therapist-list a p {
    font-size: 4vw;
    bottom: 1em;
    padding: 0.5em ;
}
.today-therapist{
    margin-top: 2em;
}

}