/*!
Theme Name: Blank
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: blank
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Blank is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */


/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
	background-color: #f4f5f7;
}

/* 返信コメント全体のブロック */
ol.children.mcr-children {
margin-left: 1rem;             /* 親コメントから少し右にずらす */
padding-left: 0.75rem;         /* 中身を少しインデント */
border-left: 4px solid #9ca3af;/* 左だけ太いグレー線 (gray-400くらい) */

overflow: hidden;
max-height: 0;
opacity: 0;
transform: translateY(-4px);
transition:
  max-height 0.25s ease,
  opacity    0.25s ease,
  transform  0.25s ease;
}

/* 開いている状態 */
ol.children.mcr-children.mcr-open {
max-height: 2000px;  /* これより大きくなることはまずない前提値 */
opacity: 1;
transform: translateY(0);
}

img {
  -webkit-user-drag: none;
  user-drag: none;
}