/*
Theme Name: Twenty Twenty-Five SCTL
Theme URI: https://wordpress.org/themes/twentytwentyfive-sctl/
Author: Spatial Computing TechLab
Author URI: https://example.com/
Description: Twenty Twenty-Five の子テーマ。Spatial Computing TechLab のカスタマイズを含みます。
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: twentytwentyfive-sctl
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* 親テーマのスタイルを継承 */
@import url('../twentytwentyfive/style.css');

/* カスタムスタイル */
body {
    font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ヘッダーのカスタマイズ */
/* .wp-block-template-part.header {
    background-color: #22A9BC;
    color: #ffffff;
} */
.my-card {
    width: 300px;        /* 幅を固定したい場合 */
    max-width: 90%;      /* レスポンシブにしたい場合 */
    margin: 0 auto;      /* 中央寄せ */
    box-shadow: 0 2px 8px rgba(0,0,0,0.15); /* カード風の影 */
    border-radius: 8px;  /* 角丸 */
    padding: 16px;
    background: #fff;
}
/* リンクの色 */
a {
    color: #0066cc;
}

a:hover {
    color: #004499;
}