@charset "UTF-8";

@import "assets/css/style.css";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/************************************
** サイドバー：クリニック紹介カード
************************************/
.clinic-card {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  padding: 10px;
  background: #fff;
  border-radius: 8px;
}
.clinic-card__thumb {
  flex: 0 0 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clinic-card__thumb img {
  max-width: 100%;
  max-height: 100%;
}
.clinic-card__body {
  flex: 1;
  min-width: 0;
}
.clinic-card__name {
  margin: 0;
  padding-top: 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.5;
}
.clinic-card__text {
  margin: 4px 6px;
  font-size: 12px;
  line-height: 1.6;
}
.clinic-card__btn,
.clinic-card__btn:visited {
  display: block;
  margin: 10px 6px 0;
  height: 32px;
  line-height: 32px;
  border-radius: 6px;
  background: #2196f3;
  box-shadow: 0 4px 0 #0e6fbd;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out, transform .2s ease-in-out;
}
.clinic-card__btn:hover {
  color: #fff;
  box-shadow: none;
  transform: translateY(4px);
}
