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

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

.post-19 .date-tags {
display: none;
}

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

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

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









 
  




<!-- WordPress Cocoon 子テーマ向けのカスタムCSS＆HTML（オレンジ基調・保育園イメージ） -->

<!-- カスタムCSS（style.css に追加） -->
<style>
body {
  background-color: #fff8f0;
  font-family: "Helvetica Neue", sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

.header-container {
  background-color: #ffa733;
  color: white;
  padding: 20px;
  text-align: center;
  border-bottom: 5px solid #ff8000;
}

h1, h2, h3 {
  color: #ff8000;
  font-weight: bold;
}

.btn-orange {
  background-color: #ff8000;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.btn-orange:hover {
  background-color: #cc6600;
}

.notice-box {
  background: #fff3e0;
  border-left: 6px solid #ffa733;
  padding: 15px;
  margin: 20px;
}

.decor-stars::before {
  content: "\2728";
  margin-right: 5px;
}

.footer-container {
  background-color: #ffe3c1;
  color: #333;
  padding: 15px;
  text-align: center;
  font-size: 0.9em;
  border-top: 3px solid #ff8000;
  margin-top: 40px;
}

/* フォーム・レスポンシブ調整 */
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .header-container, .footer-container, section, .notice-box {
    padding: 15px;
  }
}
</style>



