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

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

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

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

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

.typing-game {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
}
.typing-game #hiragana {
    font-size: 48px;
    margin: 20px 0;
}
.typing-game #guide {
    font-size: 24px;
    color: gray;
    margin-bottom: 20px;
}
.typing-game #input {
    font-size: 24px;
    width: 200px;
    text-align: center;
}
.typing-game #judgment {
    font-size: 24px;
    margin-top: 20px;
}
.typing-game #error-message {
    font-size: 20px;
    color: red;
    margin-top: 10px;
}
.typing-game .flash-red {
    color: red !important;
    transition: color 0.5s;
}
.typing-game button {
    font-size: 18px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

function enqueue_custom_styles() {
    wp_enqueue_style('custom-typing-game', get_template_directory_uri() . '/css/custom-style.css');
}
add_action('wp_enqueue_scripts', 'enqueue_custom_styles');
