@charset "utf-8";


/* アバウトのdiv */
						
.about { 
display: grid; 
width:700px;
grid-template-columns: 700px; 
grid-template-rows: 50px auto; 
grid-column-gap: 0px;
grid-row-gap: 0px; 
border: 1px solid #3c7a5a;
margin:0 auto 0px auto;
}
.a-midashi { grid-area: 1 / 1 / 2 / 2; 
  font-size: 13px;
  color: #ccc;
  font-weight: bold;
  border: solid #302833;
  border-width:1px 0px 1px 0;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
  background-color: #302833;
						} 
.a-nakami { grid-area: 2 / 1 / 3 / 2; 
  font-size: 13px;
  padding: 15px;
  text-align: left;
  line-height:160%;
  background-color: #d3cfd9;
  text-align: justify;                 /*文字列均等配置*/
  text-justify: auto;                  /*文字列均等配置*/
						} 
						
						
.migiyose{/*要素の右寄せ*/
  padding: 15px 30px 15px 15px;
  text-align: right;
  vertical-align: middle;
						}
							
										
						
/* スマホサイズのグリッド配置 about*/
@media screen and (max-width: 768px) {
.about { 
display: grid; 
width:100%;
box-sizing: border-box;               /* 親をはみ出ない about*/
grid-template-columns: 100%; 
grid-template-rows: 50px auto; 
grid-column-gap: 0px;
grid-row-gap: 0px; 
}
.a-midashi { grid-area: 1 / 1 / 2 / 2; 
  padding: 15px 15px 15px 18px;} 
.a-nakami { grid-area: 2 / 1 / 3 / 2; 
  padding: 15px 15px 15px 20px;
							} 
			}
						
/* トレーラー表示 */
.trailer{
  width:500px;
  min-height: 150px;
  font-size:14px;
  line-height: 2.5em;
  text-align: justify;                 /*文字列均等配置*/
  text-justify: auto;                  /*文字列均等配置*/
  background-color:rgba(234, 237, 247, 0.5);
  border-radius:30px;
  margin:0px auto 60px auto;
  padding:30px 30px 40px 30px;
}
						
@media screen and (max-width: 768px) {
.trailer{
width: 100%;
  padding:30px 15px 40px 15px;
box-sizing: border-box;                /* 親をはみ出ない トレーラー*/
}
						}							

/* パスワード入力欄 */
						
.nuroku {
  width:300px;
  height: 44px;
  font-size: 12px;
  color: #ccc;
  background-color: #302833;
  margin:0px auto;
  border-radius: 22px;
  display:flex;
  align-items: center;  
  justify-content: center;
						}
						
.textlines {
  border: 1px solid #0d0015;  /* 枠線 */
  border-radius: 0.67em;   /* 角丸 */
  padding: 0.5em;          /* 内側の余白量 */
    background-color: #a59aca;  /* 背景色 */
  width: 100px;             /* 横幅 */
  }
::placeholder {
  color: #ccc;
}
						
						
.button {
  display       : inline-block;
  border: 1px solid #0d0015;  /* 枠線 */
  font-size     : 12px;        /* 文字サイズ */
  text-align    : center;      /* 文字位置   */
  padding       : 5px 10px;   /* 余白       */
  background    : #615c66;     /* 背景色     */
  color         : #bfbfbf;     /* 文字色     */
  line-height   : 1em;         /* 1行の高さ  */
 margin:0 0 0 6px;
}
					
						
/* 秘匿開いた時の装飾 */
						
.sou-syoku { 
display: grid; 
width:100px;
margin:0px auto;
grid-template-columns: repeat(2, 50px); 
grid-template-rows: 30px 30px; 
grid-column-gap: 0px;
grid-row-gap: 0px; 
}
.syoku1 { grid-area: 1 / 1 / 2 / 2; 
							border-right: 1px solid;
						} 
.syoku2 { grid-area: 1 / 2 / 2 / 3; } 
.syoku3 { grid-area: 2 / 1 / 3 / 2; 
border-right: 1px dashed;
						} 
.syoku4 { grid-area: 2 / 2 / 3 / 3; } 
					
	
/* ハンドアウト表示部分の大枠 */
.waku{
width:700px;
margin:70px auto 0 auto;
padding:0;
						}
						
/* 表書きと秘密共通 */
.omote1,.omote2,.himitu1,.himitu2 { 
display: grid; 
width:600px;
grid-template-columns: 600px; 
grid-template-rows: 36px auto; 
grid-column-gap: 0px;
grid-row-gap: 0px
}
.omote1 {                            /* 表書き１ マージン指定 */
margin:30px 100px 0px 0px; 
border:1px solid #455765;
}						
.omote2 {                             /* 表書き２ マージン指定 */
margin: 30px 0 0px 100px; 
border:1px solid #455765;
}
.himitu1{                             /* 秘密１ マージン指定 */
margin:0px 100px 0px 0px; 
border: solid #455765;
border-width:0px 1px 1px 1px;
						}
.himitu2{                             /* 秘密２ マージン指定 */
margin:0px 0px 0px 100px; 
border: solid #455765;
border-width:0px 1px 1px 1px;
						}
.o-midasi1,.o-midasi2,.h-midasi1,.h-midasi2 { grid-area: 1 / 1 / 2 / 2;       /* 表書きと秘密 見出し共通 */
  font-size: 13px;
  font-weight: bold;
  border:1px solid #455765;
  padding: 10px 15px 10px 15px;
  text-align: left;
  vertical-align: middle;
						} 
.o-midasi1,.o-midasi2 {              /* 表書き 見出し色指定 */
  background-color: #d3cfd9;
  border-width:0px 0px 1px 0;
						}
.h-midasi1,.h-midasi2 {              /* 秘密 見出し色指定 */
  background-color: #f5f6fb;
  border: dashed #455765;
  border-width:0px 0px 1px 0px;
						}
						
.o-nakami1,.o-nakami2,.h-nakami1,.h-nakami2 { grid-area: 2 / 1 / 3 / 2;         /* 表書きと秘密 中身共通 */
  font-size: 13px;
  padding: 15px;
  text-align: left;
  line-height:160%;
  min-height: 80px;
  text-align: justify;                 /*文字列均等配置*/
  text-justify: auto;                  /*文字列均等配置*/
						} 
.h-nakami1,.h-nakami2 {               /* 秘密中身 色 */
  background-color: #f5f6fb;
						}
						
@media screen and (max-width: 768px) {    /* 表書きなどのメディアサイズ */
.waku{
width:100%;
box-sizing: border-box;                /* 親をはみ出ない waku*/
							}
[class^="omote"]{                /* omoteって付くヤツまとめて指定 */
width:100%;
box-sizing: border-box;                /* 親をはみ出ない 表書き*/
grid-template-columns: 100%; 
margin: 60px 0px 0px 0px;
								}
[class^="himitu"]{                /* omoteって付くヤツまとめて指定 */
width:100%;
box-sizing: border-box;                /* 親をはみ出ない 秘密*/
grid-template-columns: 100%; 
margin: 0px;
								}
							}
							
.secret {
	display : none;
}