@charset "UTF-8";

/*!
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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
body {
  font-family: Arial, sans-serif;
  padding: 20px;
  background: #f8f8f8;
}

h1 {
  text-align: center;
}

select {
  margin-bottom: 20px;
  padding: 5px;
  font-size: 1em;
}

/* カード風 */
.restaurant-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 15px;
  transition: transform 0.2s;
}

.restaurant-card:hover {
  transform: translateY(-3px);
}

.restaurant-name {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
}

.restaurant-info {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 8px;
}

.restaurant-link {
  text-decoration: none;
  color: inherit;
  display: block; /* カード全体をリンクにできる */
}

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

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

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