body {
    font: 14px/1.7 "メイリオ","ＭＳ Ｐゴシック",arial,helvetica,clean,sans-serif;
    color: #333;
    -webkit-text-size-adjust: 100%;
}

input:focus, select:focus, textarea:focus {
outline: 1px solid #7842ab;
}
.word-wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
  max-width: 925px;
}
@media screen and (max-width: 640px) {
  .word-wrapper {
    width: 100%;
    padding: 0;
    margin: 0 auto;
  }
}
.word-title {
  border-bottom: 2px solid #CCC;
  font-weight: bold;
  padding-bottom: 0.83em;
  font-size: 157%;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
}
#word-contents .search-box-flex {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 640px) {
  #word-contents .search-box-flex {
    flex-direction: column;
  }
}
#word-contents .search-box {
  margin-bottom: 30px;
  width: 49%;
}
@media screen and (max-width: 640px) {
  #word-contents .search-box {
    margin-bottom: 40px;
    width: 100%;
  }
}
#word-contents .search-box input {
  width: 80%;
  height: 45px;
  padding: 13px;
  font-size: 100%;
  letter-spacing: 1.7px;
  box-sizing: border-box;
  font-size: 16px;
}
@media screen and (max-width: 640px) {
  #word-contents .search-box input {
    width: 300px;
  }
}
#word-contents .search-box .zoom:before{
  content:'';
  position: absolute;
  top: 13%;
  right: 10%;
  width: 65px;
  height: 65px;
  background-image :url("../images/zoom.png");
  background-size: 30px;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 640px) {
  #word-contents .search-box .zoom:before{
    right: 30px;
  }

}
#word-contents .search-box .search-title {
  background: #7842AB;
  font-size: 120%;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
  border-radius: 3px 3px 0 0;
}
#word-contents .search-box .search {
  background: #dfdfdf;
  text-align: center;
  padding: 15px 0;
  position: relative;
}
#word-contents .word-list {
  width: 300px;
}
#word-contents .search select{
  width: 80%;
  height: 45px;
  font-size: 16px;
  padding-left: 20px;
}
.hidden_box {
  margin: 0 0 0.5em;
  padding: 0;
  border-bottom: 1px #bdbaba dashed;
}
.hidden_box input {
  display: none;
}

.hidden_box .hidden_show {
  height: 0;
  padding: 0 20px;
  overflow: hidden;
  background-color: #f6edff;
  transition: all .3s linear 0s;
  -webkit-transition: all .3s linear 0s;
  border-radius: 10px;
}
.hidden_box input:checked ~ .hidden_show {
  padding: 10px 0;
  height: auto;
    margin-bottom: 20px;
}

.hidden_box .word {
  color:#0D6BBD;
  line-height: 1.5em;
  font-size: 100%;
  font-weight: bold;
  cursor: pointer;
  display: inline-block;
  position: relative;
}

@media screen and (max-width: 640px) {
  .hidden_box .word {
    color:#0D6BBD;
    line-height: 1em;
    font-size: 100%;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
  }
}
.hidden_box .word-text {
  padding: 0 15px;
  /* font-size: 115%; */
  font-size: 1rem;
}
@media screen and (max-width: 640px) {
  .hidden_box .word-text {
    padding: 0 15px;
    font-size: 1.0rem;
  }
}

.fa {
  font-size: 10px;
  position: absolute;
  bottom: 3px;
  left: 0;
  -webkit-transition: all .3s linear 0s;
transition: all .3s linear 0s
}
.mytoggle {
  transform:rotate(90deg);
  -webkit-transform:rotate(90deg);
  transition: all .3s linear 0s;
  -webkit-transition: all .3s linear 0s;
}
/* .hidden-box-wrapper .hidden_box:last-child{
  padding-bottom: 200px;
} */

.hidden_box .word:hover {
  color: #ff7d1d;
}


/*	主にWii用の指定	*/

@media tv {
	/*	ルビの縦ずれを補正
		rbやrtのfont-size、line-heightによらず0.5em
	*/
	html body ruby {
		padding-bottom: 0.5em;
	}
}




/* ruby（ルビ文字組み全体のインライン領域）
------------------------------------------- */
/* Firefox、Safari、Opera用指定 */
ruby {
	display			: inline-table;
	text-align		: center;
	text-indent		: 0px;
	white-space		: nowrap;
	border			: none;
	margin			: 0px;
	padding-left			: 10px;
	line-height		: 2;
	height			: 1em;
	vertical-align	: text-bottom;
	border			: none;
}

/* IE8 beta 2用指定 (現在無効) */
/*
html:first-child  ruby {
	white-space		: normal;
}
*/
/* IE7用指定 */
*:first-child+html ruby {
	white-space		: normal;
}
/* IE6用指定 */
* html body ruby {
	white-space		: normal;
	display			: inline-table;
	vertical-align	: baseline;
}


/* rb（本文）
------------------------------------------- */
/* Firefox、Safari、Opera用指定 */
rb {
	display			: table-row-group;
	line-height		: 1;
	text-align		: left;
	border			: none;
	margin			: 0px;
	padding			: 0px;
  white-space		: nowrap;
  font-size: 1.08rem;
}
/* IE8 beta 2用指定 (現在無効) */
/*
html:first-child  rb {
	white-space		: normal;
}
*/
/* IE7用指定 */
*:first-child+html rb {
	white-space		: normal;
}
/* IE6用指定 */
* html body ruby rb {
	display			: table-row-group;
	vertical-align	: bottom;
	white-space		: normal;
}
#hidden-area {
  padding-left: 25px;
}

/* rt（フリガナ）
------------------------------------------- */
/* Firefox、Safari、Opera用指定 */
rt {
	display			: table-header-group;
	font-size		: 0.8em;	/*	振り仮名のメインテキストに対する相対サイズ	*/
	line-height		: 1.7;
	text-align		: left;
	white-space		: nowrap;
	border			: none;
	margin			: 0px;
	padding			: 0px;
}
/* IE8 beta 2用指定 (現在無効) */
/*
html:first-child  rt {
	white-space		: normal;
}
*/
/* IE7用指定 */
*:first-child+html rt {
	white-space		: normal;
}
/* IE6用指定 */
* html body ruby rt {
	white-space		: normal;
	line-height		: 1em;
	display			: table-header-group;
	position		: static;
	top				: 0em;
}


/* rp（CSS OFF状態での区切り文字、通常不可視）
------------------------------------------- */
/* 全ブラウザ共通指定 */
rp {
	display			: none;
}


/* hn要素での振り仮名サイズ調整（必要な場合、適当に調整してください）
------------------------------------------- */
/*
h1 rt	{	font-size: 0.39em;	}
h2 rt	{	font-size: 0.42em;	}
h3 rt	{	font-size: 0.45em;	}
h4 rt	{	font-size: 0.48em;	}
h5 rt	{	font-size: 0.52em;	}
h6 rt	{	font-size: 0.57em;	}
*/


}
