﻿@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* wrapperの指定 */   
#wrapper {
  background-color: white;
  text-align: left;  
  width: 1024px;  
  margin: 0 auto;  
  padding: 0;  
}  

/* headerの指定 */   
#header {
  /* background-color: lavender; */
  display: block;
  color: #202f55;
  height: 260px;  
  margin: 0px;  
  padding-top: 5px;  
}

/*containerの指定*/  
#container {
  position: relative;  
  width: 100%;  
}  

/*contentsの指定*/  
#contents {
  word-wrap: break-word;  
  /* width: 620px; */
  min-height:690px;
  margin: 0 215px;
  padding-top: 20px;
  padding-left: 10px;  
}  

/*sidebarの指定 メニュー配置*/  
#left-sidebar {
  width: 200px;
  margin: 0;  
  padding: 0;    
  position: absolute;  
  top: 0;  
  left: 0;  
}  

/*right-sidebarの指定*/  
#right-sidebar {
  width: 200px;  
  margin:0px -20px 0px px;
  padding-left: 20px;    
  position: absolute;  
  top: 0;  
  right: 0;  
}  

/*footerの指定*/  
#footer {
  /*background-color: lightcyan; */
  clear:both;
  color: teal; 
  text-align: center;
  height: 40px;
  margin-top: 50px;  
  padding: 10px;  
}  

/* */
.slider{
  display: none;
}
.slider.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}

/* フォントサイズ等の設定*/
h1 {
  	color: #326693;			/* 見出しテキストの色を指定する */
	padding-left:10px;		/* ボックス内左側の余白を指定する */
	border-left: 10px solid #31a9ee;	/* ボーダー左側のスタイルを指定する */
  	border-bottom: 1px solid #31a9ee; 	/* ボーダー下部のスタイルを指定する */
}

h2 {
  color: darkslateblue;
  padding-left:5px;		/* ボックス内左側の余白を指定する */
  border-left: 5px solid mediumslateblue;	/* ボーダー左側のスタイルを指定する */
  /*border-bottom: 1px dashed #000;*/
}

span.size_s {font-size: small; }
span.size_m {font-size: medium; }
span.size_l {font-size: large; }
span.size_xl {font-size: x-large; }
span.size_xll {font-size: xx-large; }

span.tab1 {
	display:block;
	margin-left:40px;
	/* padding-right:-20px; */ 
}

span.tab2 {
	display:block;
	margin-left:70px;
	/* padding-right:-20px; */ 
}

span.tab3 {
	display:block;
	margin-left:90px;
	/* padding-right:-20px; */ 
}

span.delete_line {
	text-decoration: line-through;	
}

span.red {
	color: #FF0000;
}

summary {
  position: relative;
  display: block;
  cursor: pointer; /* カーソルをポインターに */
  font-weight: bold;
  /*background-color: #e2f0f7;*/
  transition: 0.2s;
}

summary:hover {
  background-color: #ccebfb;
}
summary::-webkit-details-marker {
  display: none;　/* 矢印を消す */
}

/* 疑似要素でアイコンを表示 */
/*
summary:before,
summary:after {
  content: "";
  margin: auto 0 auto 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}
summary:before {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #1da1ff;
}
summary:after {
  left: 6px;
  width: 5px;
  height: 5px;
  border: 4px solid transparent;
  border-left: 5px solid #fff;
  box-sizing: border-box;
  transition: .1s;
}
*/

/* オープン時のスタイル */
details[open] summary {
  background-color: #ccebfb;
}
details[open] summary:after {
  transform: rotate(90deg); /* アイコンを回転 */
  left: 4px; /* 位置を調整 */
  top: 5px; /* 位置を調整 */
}

/* アニメーション */
details[open] .details-content {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* 括弧つきのリスト*/

ol.brackets{
  padding:0 0 0 2em;
  margin:0;
}
ol.brackets li{
  list-style-type:none;
  list-style-position:inside;
  counter-increment: cnt;
}
ol.brackets li:before{
  display: marker;
  content: "(" counter(cnt) ") ";
}
