﻿@charset "utf-8";

/* CSSプロパティの順序
 * 
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * line-height
 * other text
 * overflow
 * content
 * CSS 3
 */


/* 基本レイアウト
================================================== */

/* 全体 */
html {
  font-size: 62.5%;
}
 
body {
  /*background: #FCFAED url(../img/bg_01.png) no-repeat right bottom;*/
  background-color: #FCFAED;
  color: #222;
  font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, verdana, sans-serif;
  font-size: 1.6em;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

#wrap {
  max-width: 1000px;
  min-width: 768px;
  margin: 0 auto 20px;
  overflow: hidden;
}

main {
  clear: both;
  padding-top: 5px;
  overflow: hidden;
}

article {
  padding: 0 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
  box-sizing: border-box;
  border-radius: 3px;
}

article h1 {
  border-bottom: #f08533 solid 2px;
  font-size: 16px;
  font-size: 1.6rem;
}

article > section:first-child h1,
#bannerBeforeContent + section h1 {
  margin-bottom: 10px;
}

article h2 {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

article .btn.attn {
  font-size: 18px;
  font-size: 1.8rem;
}

article .btn.important {
  background: linear-gradient(#F08533, #d9782e);
  border-bottom: #b06125 solid 1px;
  font-weight: bold;
  color: #FFF;
  padding: 3px 10px;
}

article > section {
  margin-bottom: 10px;
  padding: 10px 15px;
  border: #eaddc9 solid 1px;
  background-color:#FFF;
}

article > section > section {
  padding: 5px 0;
  border-bottom: #eaddc9 dashed 1px;
}

article > section > section:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}

.column2 article {
  float: left;
  width: 68%;
  margin-right: 2%;
}

.column2 aside {
  float: right;
  width: 30%;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

/* ヘッダー
================================================== */

/* 共通 */
#gHeader {
  border-bottom: 5px #f08533 solid;
}

/*
#gHeader p:first-child {
  float: left;
  margin-top: 5px;
}
*/

#toTop {
  background: url(../img/icon_arrow_01.png) no-repeat 0 4px;
  padding-left: 16px; 
}

#header {
  padding: 0 5px 4px 10px;
}

#header:after {
  content: "";
  display: block; 
  clear: both;
  height: 1px;
}

#logo {
  position: relative;
  float: left;
  width: 80px;
  margin: 10px 15px 0 0;
  line-height: 1;
}

#logoText {
  position: absolute;
  left: 115%;
  bottom: 0px;
  width: 300%;
}

/* 共通ナビ */
#navArea {
  float: right;
}

#navArea .trigger {
  display: none;
}

#gNav {
  display: block;
}

#gNav li {
  display: inline-block;
}
  
#gNav li.level2 {
  display: none;
}

#gNav a {
  display: inline-block;
  margin-right: 10px;
  padding: 7px 0 7px 13px;
  background: url(../img/icon_arrow_01.png) no-repeat 0 13px;
}

#gNav .sub a {
  display: inline-block;
  margin-right: 7px;
  padding: 7px 0 7px 10px;
  background: url(../img/icon_arrow_11.png) no-repeat 0 10px;
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#gNav li:last-child a {
  margin-right: 0;
}

/* 検索 */

#navArea form {
  float: right;
}

#inner-search-area {
  width: 235px;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 4px 0;
}

#inner-search-btn {
  width: 50px;
  padding: 2px 13px;
  box-sizing: border-box;
}

#search #inner-search-btn {
  width: 50px;
  padding: 2px 15px;
  box-sizing: border-box;
}

/* 汎用 */

.blockLink {
  list-style: none;
}

.blockLink li a,.blockLink li .noAnchor {
  display: block;
  padding: 10px 0;
  border-top: #eaddc9 dashed 1px;
  overflow: hidden;
}

section.blockLink a,
li.blockLink a {
  display: block;
}

li.blockLink a {
  padding: 10px 0;
}

.blockLink li a:hover,
section.blockLink a:hover,
li.blockLink a:hover {
  background-color: #FFF7EE;
}

.blockLink li:first-child a {
  border-top: none;
}

a.attnIcon {
  color: #FF2D1A;
  text-decoration: underline;
}

a.attnIcon:before {
  content: "！";
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 3px;
  border: #FF2D1A solid 1px;
  color: #FF2D1A;
  font-size: 14px;
  line-height: 1;
  border-radius: 2px;
}

.btnList {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.btnList li {
  float: left;
  margin: 0 1% 5px 0;
  border: #CCC solid 1px;
  text-align: center;
  border-radius: 2px;
}

#wrap .btnList li.on a {
  background-color: #f08533;
  color: #FFF;
}

.btnList li a {
  display: block;
  padding: 5px;
}

.btnList li a:hover {
  background-color: #FFF7EE;
}

.pageBottom {
  text-align: center;
  margin: 1em 0;
}

body.kotoba .pageBottom #fullTxtBtn {
  display: none;
}

.squareTxt {
  display: inline-block;
  position: relative;
  top: -1px;
  margin: 0 1px;
  padding: 1px 1px 0;
  border: solid #222 1px;
  border-radius: 2px;
  font-size: 1.2rem;
  line-height: 1;
  text-indent: 0;
  box-sizing: border-box;
}

a .squareTxt {
  border-color: #03C;
}

.emphasis {
  text-emphasis: dot;
}

strong.emphasis {
  font-weight: normal;
}

/* トップ
================================================== */

#bnrAreaTopTB {
  display: none;
}

#home a:hover {
  color: #EC6701;
  text-decoration: underline;
}

/* ニュース */
#news {
  border-top: none;
  margin-bottom: 15px;
  padding: 0;
}

#newsTxtArea.pickUp {
  float: left;
  width: 66%;
}

#news #pickUpArea {
  position: relative;
  float: right;
  width: 30%;
  margin-right: 2%;
}

#news #pickUpArea h2 {
  display: inline;
}

#news #pickUpArea p {
  display: inline;
}

#news #pickUpArea .imgArea {
  display: table;
  width: 100%;
  height: 180px;
  margin: 5px 0;
  background-color: #EEE;
}

#news #pickUpArea  .imgArea p {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  line-height: 1;
}

#news .imgArea img {
  width: 100%;
  vertical-align: bottom;
}

#news .imgArea .hImg {
  width: auto;
  height: 180px;
}

#news h1 {
  margin: 0 0 0 10px;
  border: none;
}

#news .txtArea p {
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#news #tabBody .others {
  clear: left;
  margin: 10px 0 5px 30px;
  padding-bottom: 3px;
}

/*
#news #kotobaTab ul {
  float: left;
  width: 50%;
}
*/

#news #kotobaList,
#news #kotobaList + div {
  float: left;
  width: 50%;
  padding-right: 2px;
  box-sizing: border-box;
}

#news #kotobaList {
  border-right: #eaddc9 dashed 1px;
}

#news #kotobaList > div,
#news #kotobaList + div > div {
  min-height: 130px;
  margin-bottom: 10px;
  border-bottom: #eaddc9 dashed 1px;
}

#news #kotobaList > div:last-child,
#news #kotobaList + div > div:last-child {
  border-bottom: none;
}

#news #kotobaTab li {
  font-size: 14px;
  font-size: 1.4rem;
}

#news #kotobaTab ul .sub {
  display: none;
}

#kotobaTab .others {
  clear: both;
}

#news #kotobaTab .btn {
  font-size: 14px;
  font-size: 1.4rem;
}

/* 刊行物 */
#bookArea section {
  overflow: hidden;
}

#bookArea .imgArea {
  float: left;
  width: 18%;
  margin-top: 5px;
}

#bookArea .txtArea {
  float: right;
  width: 80%;
}

#bookArea .others {
  padding-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

#bookArea .others .btn {
  margin-right: 15px;
}

#bookArea .othersList h2 {
  font-size: 16px;
  font-size: 1.6rem;
}

#bookArea .othersList {
  margin-top: 10px;
}

#bookArea .othersList ul {
  display: inline-block;
  list-style: none;
  width: 75%;
  overflow: hidden;
}

#bookArea .othersList li {
  float: left;
  width: 14%;
  margin-right: 2%;
  line-height: 1;
}

#bookArea .othersList .btn {
  position: relative;
  top: -13px;
  margin-top: 20px;
}

/* お知らせ
================================================== */

#infoArea .dateArea {
  top: 5px;
  bottom: auto;
  left: 0;
  right: auto;
}

#infoArea .dateArea span {
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#infoArea .txtArea {
  float: left;
  margin: 5px 0 5px 6em;
}

#infoArea a {
  background-image: none;
}


/* 検索結果
================================================== */

#search #listArea h2 {
  font-weight: normal;
}

#search #inner-search-area {
  width: 70%;
  padding: 5px;
  font-size: 20px;
  font-size: 2.0rem;
  box-sizing: border-box;
}

#search #inner-search-btn {
  width: 60px;
  padding: 2px 15px;
  box-sizing: border-box;
}

#search .search-navi {
  margin: 20px 0;
}

#search .search-navi h3 {
  display: inline;
}

#search .search-navi-total {
  display: inline-block;
  margin-left: 10px;
}

#search .search-pager-next {
  margin-top: 10px;
  overflow: hidden;
}

#search .search-pager-next a {
  float: right;
  padding: 5px;
  border: #DDD solid 1px;
  border-bottom-color: #BBB;
  border-radius: 2px;
  background: none;
}

#search .search-pager-next a:first-child {
  float: left;
}

#search .search-navi-display {
  display: inline-block;
  margin-left: 10px;
}

#search .total {
  font-size: 20px;
  font-size: 2.0rem;
  font-weight: bold;
}

#search .result-title {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 5px;
}

#search .highlight {
  font-weight: bold;
}

#search .result-lead {
  font-size: 12px;
}

#search .result-lead:last-child {
  margin-bottom: 25px;
}

#search .result-lead a {
  display: block;
  width: 100%;
  color: #006621;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* 調査・研究成果
================================================== */

#researchLead ul {
  list-style: none;
  margin-top: 1em;
  overflow: hidden;
}

#researchLead li {
  float: left;
  width: 25%;
  padding: 0 5px 15px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  box-sizing: border-box;
}

#researchLead li a {
  display: block;
}

#researchLead li img {
  width: 80%;
}

#research .arrow a {
  padding: 10px 0 10px 20px;
  background-position: 1px 13px;
  font-weight: bold;
  line-height: 1.3;
}

#calendarArea dl {
  padding-top: 10px;
  border-bottom: #eaddc9 dashed 1px;
}

#calendarArea dt {
  font-weight: bold;
}

#calendarArea ul {
  list-style: none;
  overflow: hidden;
}

#calendarArea li {
  float: left;
  width: 7%;
  margin: 0 1% 10px 0;
  text-align: center;
}

#calendarArea li > a,
#calendarArea li > span {
  display: block;
  padding: 8px 0;
  border: #CCC solid 1px;
  border-radius: 2px;
}

#calendarArea li > span {
  border-color: #EEE;
  color: #EEE;
}

#calendarArea li > a:hover {
  background-color: #FFF7EE;
}

#calendarMore .btn {
  display: block;
  width: 150px;
  margin: 10px auto;
}

/* 記事一覧上バナー */
#bannerBeforeContent {
  display: none;
}

#bannerBeforeContent a {
  display: flex;
  border: solid 1px #CCC;
  margin-bottom: 1em;
  padding: 10px 15px;
  background-color: #FFF;
}

#bannerBeforeContent a > div:first-child {
  width: 75%;
  margin-right: 1%;
}

#bannerBeforeContent a > div:last-child {
  width: 24%;
  min-width: 120px;
}

#bannerBeforeContent h2 {
  font-size: 2.4rem;
}

#bannerBeforeContent a p {
  color: #222;
}

#bannerBeforeContent a img {
  vertical-align: bottom;
}

#bannerBeforeContent2 {
  display: none;
}

[data-page="filter3"] #bannerBeforeContent2,
[data-page="filter4"] #bannerBeforeContent {
  display: block;
}

/* 記事一覧 */

#research #lead {
  margin-bottom: 10px;
}

#research #lead .attnIcon {
  display: inline-block;
  margin: 0.5em 0 1em;
}

#listHeader {
  position: relative;
  border-bottom: #CCC solid 1px;
}

#listHeader:after {
  content: "";
  display: block; 
  clear: both;
  height: 1px;
}

#listHeader h2 {
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
}

/* 非表示 */
.domestic #listHeader p,
.history #listHeader p,
.oversea #listHeader p,
.domestic.filtering #number,
.oversea.filtering #number,
.kotoba.filtering #number {
  display: none;
}

#listHeader p {
  float: right;
  color: #03C;
}

#listHeader p:after {
  content: "▼";
  margin-left: 2px;
  font-size: 12px;
}

#listHeader .open p:after {
  content: "▲";
  margin-left: 2px;
  font-size: 12px;
}

#research .arrow .groupList a {
  border-top: none;
  background-image: none;
}

#filter {
  list-style: none;
  position: absolute;
  top: 1.5em;
  right: 0;
  border: #CCC solid 1px;
  background-color: #FFF;
  z-index: 10000;
  border-radius: 2px;
  box-shadow: 0 5px 8px rgba(0,0,0,0.4);
}

#filter li {
  padding: 5px;
  color: #03C;
  cursor: pointer;
}

#filter li:hover {
  background-color: #FFF7EE;
}

#listArea #number {
  color: #999;
  text-align: center;
}

#paging {
  position: relative;
  width: 440px;
  margin: 0 auto;
}

#paging span,
#allListBtn span,
#paging a {
  display: inline-block;
  width: 36px;
  margin: 5px 5px 20px 5px;
  padding: 5px 0;
  border: #DDD solid 1px;
  border-bottom-color: #BBB;
  text-align: center;
  box-sizing: border-box;
  border-radius: 2px;
  cursor: pointer;
}

#paging #pager span.on,
#calendarArea li.on a,
#calendarArea li.on a:hover {
  background-color: #f08533;
  color: #FFF;
}

#paging span:hover {
  background-color: #FFF7EE;
}

#pager {
  width: 280px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}

#pager .none {
  display: none;
}

#paging #prev, #paging #next {
  /*display: none;*/
  position: absolute;
  width: 66px;
  top: 0;
}

#paging #prev {
  left: 0;
}

#paging #next {
  right: 0;
}

#allListBtn {
  display: none;
}

#allListBtn span {
  width: 80%;
}

.filtering #paging {
  display: none;
}

.filtering #allListBtn{
  display: block;
}

/* 記事 */
.articleTmp section {
  padding-top: 10px;
}

.articleTmp section:first-of-type {
  padding-top: 0;
}

.articleTmp table {
  margin-bottom: 1em;
}

.articleTmp th,
.articleTmp td {
  border: #DDD solid 1px;
  padding: 5px 10px;
}

.articleTmp p {
  padding-bottom: 0.5em;
}

#articleArea header {
  margin-bottom: 1em;
  overflow: hidden;
}

#articleArea h1 {
  font-size: 24px;
  font-size: 2.4rem;
}

#articleArea .series {
  background: none;
}

#articleArea #date {
  color: #999;
  float: right;
  font-size: 14px;
  font-size: 1.4rem;
}

#articleArea #subArea {
  float: left;
}

#subArea .btn {
  padding: 5px;
  color: #03C;
  font-size: 14px;
  font-size: 1.4rem;
}
  
#subArea .btn.important {
  color: #FFF;
}

#subArea .icon3 {
    display: inline-block;
    margin-left: 3px;
    padding: 0 1px;
    background-color: #0084FF;
    color: #FFF;
    font-size: 10px;
    font-size: 1.0rem;
    text-align: center;
    vertical-align: middle;
    border-radius: 2px;
}


#articleBody h2,
#articleBody h3,
#articleBody h4,
#articleBody h5 {
  margin: 0.5em 0;
}

#articleBody p {
  margin-bottom: 1em;
  line-height: 1.8;
  text-indent: 1em;
  overflow-wrap: anywhere;
}

#articleBody section {
  margin: 2em 0;
}

#articleBody section h2 {
  margin-top: 1em;
  font-size: 2.2rem;
}

#articleBody section h3 {
  margin-top: 1em;
  font-size: 2rem;
}

#articleBody section h4 {
  margin-top: 1em;
  font-size: 1.8rem;
}

#articleBody section h5 {
  margin-top: 1em;
  font-size: 1.6rem;
}

#articleBody section p {
  text-indent: inherit;
}

#articleBody section figure {
  text-align: center;
  margin: 0;
  padding: 0;
}

#articleBody em {
  text-emphasis: circle;
}

#articleBody sup {
  font-size: 1rem;
}

#articleBody h2 sup,
#articleBody h3 sup,
#articleBody h3 sup {
  font-size: 80%;
}

#articleBody .alignCenter{
	text-indent:0;
}

#articleArea #articleBody .noIndent {
  text-indent: 0;
}

#articleArea #articleBody .leftIndent {
  text-indent: -1em;
  margin-left: 1em;
}

#articleBody .between {
  margin-bottom: 1em;
}

#articleBody p.noBetween {
  margin-bottom: 0;
}

#articleBody.noBetween p {
  margin-bottom: 0;
}

#articleBody.noBetween p:last-child {
  margin-bottom: 1em;
}

#articleBody ul,
#articleBody ol {
  margin: 0 0 1em 20px;
}

#articleBody li {
  margin-bottom: 1em;
}

#articleBody .indentBox {
  padding-left: 2em;
  margin-bottom: 1em;
}

#articleBody .indentBox.kagi {
  text-indent: -1em;
}

#articleBody dl.em5 {
  margin: 10px 0;
  overflow: hidden;
}

#articleBody dl.em5 > dt {
  float: left;
  width: 5em;
}

#articleBody dl.em5 > dd {
  margin-left: 5.3em;
}

#articleBody .characterBox {
  border: #222 solid 1px;
}

#articleBody .simpleBox {
  border: #999 solid 1px;
  padding: 10px;
  margin-bottom: 1em;
}

#articleBody .simpleBox {
  border: #999 solid 1px;
  padding: 10px;
  margin-bottom: 1em;
}

#articleBody .simpleBox p:last-child {
  margin-bottom: 0;
}

#articleBody .sizeS {
  font-size: 90%;
}

#articleBody .sub {
  font-size: 12px;
  font-size: 1.2rem;
}

#articleBody table {
  margin: 0 auto 1em;
}

#articleBody .tableArea table {
  min-width: 300px;
  margin: 0 0 1em;
  text-align: left;
}

#articleBody th,
#articleBody td {
  border: #DDD solid 1px;
  padding: 5px 10px;
}

#articleBody .indentBox p:last-child {
  margin-bottom: 0;
}

#articleArea #name {
  text-align: right;
  margin-bottom: 0.5em;
}

#articleArea .marginNone {
  margin-bottom: 0 !important;
}

#articleArea .border {
  font-size: 90%;
  border: solid 1px #222;
  padding: 0 0.3em;
  vertical-align: middle;
}

#articleArea .dotLine {
  border-bottom: dotted 1px #222;
}

#articleArea .head {
  font-weight: bold;
  margin-bottom: 0;
}

#articleArea .dotBox {
  border: dotted 1px #333;
  margin-bottom: 1em;
  padding: 10px;
}

#articleArea .dotBox > div:not(:last-child) {
  border-bottom: dotted 1px #333;
  margin-bottom: 5px;
  padding-bottom: 5px;
}

#articleArea .noteArea {
  margin: 2em 0;
}


#articleArea .noteArea p {
  font-size: 1.2rem;
}

#articleArea .noteArea li {
  position: relative;
  list-style-type:none;
  counter-increment: cnt;
  padding-left: 2em;
  margin: 10px 10px 16px 0;
  font-size: 1.2rem;
}

#articleArea .noteArea li::before {
  position: absolute;
  left: 0;
  content: "" counter(cnt) ") ";
  margin-right: 0.3em;
}

#sns {
  display: none;
  color: #999;
  font-size: 10px;
  font-size: 1.0rem;
  vertical-align: bottom;
  margin-bottom: 1em;
}

#goIndex {
  text-align: center;
  margin-bottom:1em;
}

#socialbookmark {
  line-height: 1;
}

#social_sns_notice {
  display: none;
}

#fullTxtBtn {
  padding-top: 7px;
  padding-bottom: 7px;
  text-indent: 0;
}

#fullTxtBtn .sub,
#fullTxt .sub {
  margin-left: 5px;
}

.more {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
}

#indexArea ul {
  margin: 0 0 1em 20px;
}

.redTxt {
  color: #f46800;
	font-weight:bold;
}

#engLink {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.4rem;
}

/* 政治意識月例調査 */

#politicalArea table {
  width: 100%;
}

#politicalArea table caption {
  position: relative;
  padding-right: 3em;
  text-align: left;
}

#politicalArea table caption .unit {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 12px;
  font-size: 1.2rem;
}

#politicalArea th {
  background-color: #40953f;
  color: #FFF;
}

#politicalArea td,
#politicalArea th {
  padding: 5px 0;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
}

#naikaku th,
#seito th {
  width: 6%;
}

#naikaku th span,
#seito th span {
  display: inline-block;
  width: 1.2em;
}

#naikaku th span.top-61{
	position: relative;
	color: #000;
	display: block;
	top: -61px;
	width:100%;
	text-align:center;
	margin-bottom:-17px;
}

#naikaku th:first-child,
#seito th:first-child {
  width: 28%;
}

#naikaku td:first-child,
#seito td:first-child {
  padding-left: 5px;
  text-align: left;
}

#politicalList {
  margin: 10px 0;
}

#politicalList li a {
  padding: 5px 14px;
}

.qaBox {
  margin-bottom: 1em;
  border: #DDD solid 1px;
  overflow: hidden;
}

.qaBox dt {
  float: left;
}

.qaBox dt {
  padding: 5px 10px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}

.qaBox .iconA {
  clear: both;
  color: #f46800;
}

.qaBox dd {
  padding: 10px 7px 10px 3em;
  font-weight: bold;
}

.qaBox .iconQ + dd {
  background-color: #ffebbe;
}

.qaBox .iconA + dd {
  color: #f46800;
}

#articleBody .qaBox .iconA + dd .characterBox {
  border-color: #f46800;
}

.commentBox {
  padding: 5px 10px;
  border: #DDD solid 1px;
  font-size: 14px;
  font-size: 1.4rem;
  margin-bottom: 1em;
}

/* 刊行物
================================================== */

#newBookArea ul {
  overflow: hidden;
}

#newBookArea li {
  display: inline-block;
  width: 49%;
  padding: 5px 1%;
  vertical-align: top;
  border-top: #DDD dashed 1px;
  border-right: #DDD dashed 1px;
  box-sizing: border-box;
}

#newBookArea li:first-child,
#newBookArea li:first-child + li {
  border-top: none;
}

#newBookArea li:nth-child(even) {
  padding: 5px 1%;
  border-right: none;
}

#newBookArea li a {
  padding: 5px;
  border: none;
}

#newBookArea .imgArea {
  float: left;
  width: 23%;
}

#newBookArea .txtArea {
  float: right;
  width: 70%;
}

#newBookArea h2 {
  margin-bottom: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.2;
}

#newBookArea .date {
  margin-bottom: 5px;
  line-height: 1.2;
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#bookInfoArea {
  display: table;
  width: 100%;
  box-sizing: border-box;
}

#bookInfoArea section {
  display: table-cell;
  padding-right: 2%;
  width: 31%;
  border-bottom: none;
}

#bookInfoArea section:last-child {
  padding-right: 0;
  width: 33%;
}

#bookInfoArea h2,
#bookInfoArea h1 + p {
  margin-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

#bookInfoArea p {
  margin-bottom: 10px;
  font-size: 12px;
  font-size: 1.2rem;
}

#bookInfoArea .btn {
  color: #03C;
  font-size: 14px;
  font-size: 1.4rem;
}

#bookInfoArea .btn .sub {
  display: inline-block;
  margin-left: 5px;
  color: #222;
  font-size: 10px;
  font-size: 1.0rem;
}

/* バックナンバー */

#bkBookArea ul {
  overflow: hidden;
}

#bkBookArea li {
  float: left;
  width: 23%;
	height: 200px;
  margin-right: 2%;
}

#bkBookArea li a {
  border: none;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.3;
}

#buyArea {
  padding: 10px;
  border: #DDD solid 1px;
}

#buyArea h2 {
  font-size: 16px;
  font-size: 1.6rem;
}

#buyArea p {
  font-size: 14px;
  font-size: 1.4rem;
}


#periodicaArea h1,
#irregularArea h1 {
  margin-bottom: 5px;
}

#periodicaArea li a,
#irregularArea li a {
  padding: 5px 0 0 5px;
}

#periodicaArea li h2,
#irregularArea li h2 {
  float: left;
  font-size: 16px;
  font-size: 1.6rem;
}

#periodicaArea li .date,
#irregularArea li .date {
  float: right;
  padding: 5px;
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#bookIndexArea section {
  padding: 20px 0;
  border-bottom: #eaddc9 solid 1px;
}

#bookIndexArea section:first-of-type {
  padding-top: 0;
}

#bookIndexArea section:last-child {
  border-bottom: none;
  padding-bottom: 10px;
}

#bookIndexArea h1 {
  margin-bottom: 5px;
  font-size: 20px;
  font-size: 2.0rem;
}

#bookIndexArea .series {
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

#bookIndexArea .sub {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}

#bookIndexArea .btn {
  font-size: 12px;
  font-size: 1.2rem;
}

#bookIndexArea .txtArea {
  float: left;
  width: 74%;
}

#bookIndexArea .arrow {
  border-bottom: #eaddc9 dashed 1px;
  margin-bottom: 10px;
}

#bookIndexArea .arrow a,#bookIndexArea .arrow .noAnchor {
  background-position: 3px 14px;
  padding: 10px 5px 10px 20px; 
}

#bookIndexArea .arrow strong {
  font-size: 14px;
  font-size: 1.4rem;
}

#bookIndexArea .imgArea {
  float: right;
  width: 24%;
  margin-top: 20px;
  text-align: center;
}

#columnArea {
  display: none;
}

#columnArea.on {
  display: block;
}

#columnloadTitle {
  margin-bottom: 0;
}

#bookIndexArea #columnArea ul {
  margin-bottom: 0;
  border-bottom: none;
}

#bookIndexArea .kome {
  clear: both;
  color: #999;
}

#ugokiloadList li {
  width: 21.8%;
  font-size: 14px;
  font-size: 1.4rem;
}

#ugokiloadList li:last-child {
  width: 30%;
  margin-right: 0;
}

#ugokiArea h2 strong {
  font-size: 18px;
  font-size: 1.8rem;
}

#ugokiArea h3 {
  padding: 5px 0;
  font-size: 16px;
  font-size: 1.6rem;
}

#ugokiArea p {
  margin-bottom: 1em;
  font-size: 14px;
  font-size: 1.4rem;
}

#ugokiArea .btn {
  margin-top: 10px;
}

#ugokiArea section.blockLink {
  padding: 0;
}

#ugokiArea section.blockLink p {
  margin: 0;
}

#ugokiArea section.blockLink a {
  padding: 10px 0 20px;
}

#focusArea li {
  font-size: 14px;
  font-size: 1.4rem;
}

.ugoki #subArea {
  overflow: hidden;
  margin: 10px 0;
}

.ugoki #subArea .btn {
  float: right;
}

.ugoki #subArea h2 {
  margin-top: 5px;
  font-size: 16px;
  font-size: 1.6rem;
  float: left;
}

body[data-page="japan"] li[data-area="japan"] a,
body[data-page="asia"] li[data-area="asia"] a,
body[data-page="america"] li[data-area="america"] a,
body[data-page="europe"] li[data-area="europe"] a {
  background-color: #FFF7EE;
}


#calendarArea li > span {
  border-color: #EEE;
  color: #EEE;
}

#calendarArea li > a:hover {
  background-color: #FFF7EE;
}

#backnumberArea ul {
  min-height: 100px;
}

#backnumberArea .noData {
  padding: 10px 0;
}

#backnumberArea #paging {
  height: 50px;
}

#backnumberArea #paging a {
  width: 30%;
}

#bookIndexArea > section {
  overflow: hidden;
}

#bookIndexArea .txtOnly {
  margin-top: 10px;
}

#bookIndexArea .txtOnly p {
  margin-bottom: 1em;
}

#bookIndexArea .txtOnly ol {
  margin: 0 0 1em 25px;
}

#bookIndexArea .txtOnly li {
  margin-bottom: 0.5em;
}

#bookContentsArea h1 {
  margin-bottom: 10px;
}

#bookContentsArea.blockList h1 {
  margin-bottom: 20px;
}

#bookContentsArea h1 + a {
  padding: 10px 0;
  overflow: hidden;
}

#bookContentsArea.blockList li.blockLink {
  padding: 0;
}

#bookContentsArea.blockList li {
  padding: 10px 0;
  border-top: #eaddc9 dashed 1px;
}

#bookContentsArea.blockList li:first-child {
  border-top: none;
}

#bookContentsArea ul {
  list-style: none;
}

#bookContentsArea .part {
  margin-top: 10px;
  padding: 10px 0 5px 0;
  border-top: #eaddc9 solid 1px;
}

#bookContentsArea h2,
#bookContentsArea h3 {
  padding: 0;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3;
}

#bookContentsArea.newFormat h2 {
  font-size: 20px;
  font-size: 2.0rem;
}

#bookContentsArea p {
  line-height: 1.3;
}

#bookContentsArea .sub {
  display: inline-block;
  margin-left: 1.2em;
}

#bookContentsArea .txtArea {
  display: inline-block;
  vertical-align: top;
}

#bookContentsArea .pdfArea {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  color: #222;
  vertical-align: top;
}

#bookContentsArea .name {
  margin: 5px 5px 0 0;
  text-align: right;
  color: #222;
}

#bookContentsArea .simpleBox {
  margin: 20px 0;
  padding: 10px;
  border: #CCC solid 1px;
}

/* 年報 */

#annuallyIndexArea .sub {
  margin-left: 0;
}

#annuallyIndexArea .pdf + .sub,
#annuallyIndexArea .sub.name {
  color: #444;
  font-weight: normal;
}

#annuallyIndexArea .noLink {
  padding: 10px 5px 10px 20px;
  border-top: #eaddc9 dashed 1px;
}

#annuallyIndexArea li:first-child .noLink {
  border-top: none;
}

#bkBookLoadList li span {
  display: inline-block;
}

/* 世界 */
#worldBookArea p {
  margin-bottom: 1em;
}


/* サイド
================================================== */


aside #bnrAreaTop,
aside #bnrArea {
  margin-bottom: 10px;
  line-height: 1;
  text-align: center;
}

aside #bnrAreaTop a,
aside #bnrArea a {
  display: block;
  margin-bottom: 5px;
}

aside > section,
#bookSideArea {
  margin-bottom: 10px;
  padding: 5px 10px;
  border: #eaddc9 solid 1px;
  background-color: #FFF;
  font-size: 14px;
  font-size: 1.4rem;
}

aside h1 {
  border-bottom: #f5b380 solid 2px;
  font-size: 16px;
  font-size: 1.6rem;
}

aside h2 {
  font-size: 16px;
  font-size: 1.6rem;
}

#bookSideArea h2 {
  font-size: 14px;
  font-size: 1.4rem;
}

#bookSideArea p {
  color: #222;
  font-size: 12px;
  font-size: 1.2rem;
}

aside ul {
  list-style: none;
}

aside ul a {
  display: block;
  padding: 10px 0;
  border-top: #eaddc9 dashed 1px;
  overflow: hidden;
}

aside ul li:first-child a {
  border-top: none;
}

aside ul .imgArea {
  float: left;
  width: 20%;
  margin-right: 10px;
  text-align: center;
}

aside ul a span {
  display: inline-block;
  margin-left: 5px;
  color: #999;
  font-size: 10px;
  font-size: 1rem;
}

aside .others {
  border-top: #eaddc9 dashed 1px;
  text-align: right;
  font-weight: bold;
}

/* サイドナビ */

aside #sNav {
  padding: 0;
}

aside #sNav h1 {
  border: none;
}

aside #sNav h1 a {
  display: block;
  padding: 4px 5px 5px 5px;
  background-color: #806846;
  background: linear-gradient(#806846, #997c54);
  color: #FFF;
}

aside #sNav ul a {
  display: block;
  padding-left: 25px;
  background-image: url(../img/icon_arrow_07.png);
  background-repeat: no-repeat;
  background-position: 10px 15px;
}

aside #sNav ul li.level1 a {
  border-top-style: solid;
}

aside #sNav ul li.level1:first-child a {
  border-top: none;
}

aside #sNav ul li.level2 a {
  padding-left: 33px;
  background-image: url(../img/icon_arrow_12.png);
  background-position: 20px 14px;
}

/*#forum li[data-snav="index"] a, 
.yoron li[data-snav="yoron"] a,
.monthly li[data-snav="monthly"] a,
.annually li[data-snav="annually"] a {
  background-color: #f2eae1;
}
*/
aside ul a:hover,
body[data-page="index"] li[data-snav="index"] a,
body[data-page="program"] li[data-snav="program"] a,
body[data-page="map"] li[data-snav="map"] a,
body[data-page="docs"] li[data-snav="docs"] a,
body[data-page="form"] li[data-snav="form"] a,
body[data-page="report"] li[data-snav="report"] a,
.domestic li[data-snav="domestic"] a,
.domestic[data-page="filter1"] li[data-snav="domestic01"] a,
.domestic[data-page="filter2"] li[data-snav="domestic02"] a,
.domestic[data-page="filter3"] li[data-snav="domestic03"] a,
.domestic[data-page="filter4"] li[data-snav="domestic04"] a,
.domestic[data-page="filter5"] li[data-snav="domestic99"] a,
.oversea li[data-snav="oversea"] a,
.oversea[data-page="filter1"] li[data-snav="oversea01"] a,
.oversea[data-page="filter2"] li[data-snav="oversea02"] a,
.oversea[data-page="filter3"] li[data-snav="oversea03"] a,
.oversea[data-page="filter4"] li[data-snav="oversea99"] a,
.yoron li[data-snav="yoron"] a,
.yoron[data-page="filter1"] li[data-snav="yoron01"] a,
.yoron[data-page="filter2"] li[data-snav="yoron02"] a,
.yoron[data-page="filter3"] li[data-snav="yoron03"] a,
.yoron[data-page="filter4"] li[data-snav="yoron04"] a,
.yoron[data-page="filter5"] li[data-snav="yoron05"] a,
.yoron[data-page="filter6"] li[data-snav="yoron06"] a,
.yoron[data-page="about"] li[data-snav="yoron07"] a,
.yoron[data-page="political"] li[data-snav="yoron08"] a,
.kotoba li[data-snav="kotoba"] a,
#accent li[data-snav="kotoba"] a,
.kotoba[data-page="filter1"] li[data-snav="kotoba01"] a,
.kotoba[data-page="filter2"] li[data-snav="kotoba02"] a,
.kotoba[data-page="filter3"] li[data-snav="kotoba03"] a,
.kotoba[data-page="filter4"] li[data-snav="kotoba04"] a,
.kotoba[data-page="filter5"] li[data-snav="kotoba05"] a,
#accent li[data-snav="kotoba98"] a,
.history li[data-snav="history"] a,
.history[data-page="filter1"] li[data-snav="history01"] a,
.history[data-page="filter2"] li[data-snav="history02"] a,
#trend #sNav li[data-snav="trend"],
.monthly[data-page="new"] li[data-snav="monthly"] a,
.annually[data-page="new"] li[data-snav="annually"] a,
.world[data-page="new"] li[data-snav="world"] a,
.irregular[data-page="new"] li[data-snav="irregular"] a,
.media[data-page="new"] li[data-snav="media"] a,
body[data-page="backnumber"] li[data-snav="backnumber"] a,
body[data-page="2009"] li[data-snav="2009"] a,
body[data-page="2010"] li[data-snav="2010"] a,
body[data-page="2011"] li[data-snav="2011"] a,
body[data-page="2012"] li[data-snav="2012"] a,
body[data-page="2013"] li[data-snav="2013"] a,
body[data-page="2014"] li[data-snav="2014"] a,
body[data-page="2015"] li[data-snav="2015"] a,
body[data-page="2016"] li[data-snav="2016"] a,
body[data-page="2017"] li[data-snav="2017"] a,
body[data-page="2018"] li[data-snav="2018"] a,
body[data-page="2019"] li[data-snav="2019"] a,
body[data-page="2020"] li[data-snav="2020"] a,
body[data-page="2021"] li[data-snav="2021"] a,
body[data-page="2022"] li[data-snav="2022"] a,
body[data-page="2023"] li[data-snav="2023"] a,
body[data-page="2024"] li[data-snav="2024"] a{
  background-color: #FFF7EE;
}

#sNav li.level2 {
  display: none;
}

.domestic #sNav li[data-snav="domestic01"],
.domestic #sNav li[data-snav="domestic02"],
.domestic #sNav li[data-snav="domestic03"],
.domestic #sNav li[data-snav="domestic04"],
.domestic #sNav li[data-snav="domestic99"],
.oversea #sNav li[data-snav="oversea01"],
.oversea #sNav li[data-snav="oversea02"],
.oversea #sNav li[data-snav="oversea03"],
.oversea #sNav li[data-snav="oversea99"],
.yoron #sNav li[data-snav="yoron01"],
.yoron #sNav li[data-snav="yoron02"],
.yoron #sNav li[data-snav="yoron03"],
.yoron #sNav li[data-snav="yoron04"],
.yoron #sNav li[data-snav="yoron05"],
.yoron #sNav li[data-snav="yoron06"],
.yoron #sNav li[data-snav="yoron07"],
.kotoba #sNav li[data-snav="kotoba01"],
.kotoba #sNav li[data-snav="kotoba02"],
.kotoba #sNav li[data-snav="kotoba03"],
.kotoba #sNav li[data-snav="kotoba04"],
.kotoba #sNav li[data-snav="kotoba05"],
.kotoba #sNav li[data-snav="kotoba98"],
#accent #sNav li[data-snav="kotoba01"],
#accent #sNav li[data-snav="kotoba02"],
#accent #sNav li[data-snav="kotoba03"],
#accent #sNav li[data-snav="kotoba04"],
#accent #sNav li[data-snav="kotoba05"],
#accent #sNav li[data-snav="kotoba98"],
.history #sNav li[data-snav="history01"],
.history #sNav li[data-snav="history02"],
.monthly #sNav li[data-snav="monthly"],
.monthly #sNav li[data-snav="monthly"] + li[data-snav="backnumber"],
.annually #sNav li[data-snav="annually"] + li[data-snav="backnumber"],
.world #sNav li[data-snav="world"] + li[data-snav="backnumber"],
.media #sNav li[data-snav="media"] + li[data-snav="backnumber"] {
  display: block;
}

#blogArea {
  margin-bottom: 10px;
  padding: 0;
  border: #38ae36 solid 5px;
  background-color: #FFF;
  box-sizing: border-box;
}

#blogArea h1 {
  border-bottom: none;
}

#blogArea h1 a {
  display: block;
  margin: 0 5px;
  padding: 4px 5px 5px 5px;
  border-bottom: #38ae36 solid 2px;
  color: #FFF;
  text-align: center;
}

#blogArea h1 img {
  width: 80%;
  vertical-align: middle;
}

#blogArea h2 {
  padding: 8px 5px 0 10px;
  font-size: 16px;
  font-size: 1.6rem;
}

#blogArea .date,
#blogArea .posted {
  display: inline-block;
  margin: 0 10px 5px;
  color: #999;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

#blogArea .date {
  display: inline-block;
  margin: 0 10px 5px;
  color: #999;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
}

/*#blogArea h1 a:hover {
  background-color: #E8F5E9;
}*/

#blogArea .others {
  padding: 5px;
  border: none;
  text-align: center;
}

#blogArea .btn {
  width: 80%;
  padding: 5px;
  border: #ccd48c solid 1px;
  background: linear-gradient(#FFF, #FFF, #F0F4C3);
}

#twitterBnr {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 7px 10px;
  border: #2ca7e0 solid 5px;
  background-color: #FFF;
  text-align: center;
  border-radius: 20px;
  box-sizing: border-box;
}

/* 関連施設 */

#relatedArea a {
  line-height: 1.2;
}

#relatedArea h2 {
  margin-bottom: 3px;
}

#relatedArea p {
  color: #444;
}

/* 文研とは */

#aboutArea {
  overflow: hidden;
}

#aboutArea ul {
  float: right;
  width: 65%;
  padding: 3px 0;
  color: #999;
}

#aboutArea .imgArea {
  float: left;
  width: 25%;
  margin: 10px 0 0 5px;
  padding: 3px 0;
  color: #999;
}

#aboutArea ul li a {
  display: block;
  font-weight: bold;
}


/* タブ
================================================== */

#tab {
  display: table;
  width: 100%;
  list-style: none;
}

#tab li {
  display: table-cell;
  position: relative;
  width: 113px;
  padding: 5px 0;
  background-color: #f4eee4;
  border-top: #eaddc9 solid 1px;
  border-left: #eaddc9 solid 1px;
  border-bottom: #eaddc9 solid 1px;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

#tab li:after {
  content: url(../img/tab.png);
  position: absolute;
  top: -2px;
  right: 0;
  line-height: 1;
}

#tab li:last-child:after {
  right: -1px;
}

#tab li:first-child {
  border-left: none;
}

#tab li.on {
  background-color: #FFF;
  border-bottom-color: #FFF;
  font-weight: bold;
}

#tabBody {
  padding: 10px 0 5px;
  overflow: hidden;
}

#tabBody section {
  display: none;
}

#tabBody section.on {
  display: block;
}

#tabBody li {
  margin-bottom: 5px;
}

#tabBody li a {
  display: inline-block;
}

.arrow li {
  list-style: none;
}

.arrow li a ,.arrow li .noAnchor {
  position: relative;
  padding: 3px 0 3px 30px;
  background: url(../img/icon_arrow_01.png) no-repeat 13px 6px;
  font-weight: bold;
  line-height: 1.3;
}

.arrow span {
  display: inline-block;
}

.arrow .series {
  background: none !important;
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: top;
}

.arrow .sub {
  font-size: 12px;
  font-size: 1.2rem;
  margin-left: 5px;
}

.arrow .date {
  color: #999;
  font-size: 10px;
  font-size: 1rem;
  margin-left: 5px;
}

.arrow .txtArea {
  margin-right: 100px;
}

.arrow .dateArea {
  position: absolute;
  bottom: 10px;
  right: 10px;
}

/* カテゴリー　色
================================================== */
  
#news li[data-category="newsTab"].on {
  background: linear-gradient(#fce0ca, #FFF);
}
  
#news li[data-category="domesticTab"].on,
.domestic .series {
  background: linear-gradient(#d6e5e5, #FFF);
  /*color: #0c4290;*/
}
  
#news li[data-category="overseaTab"].on,
.oversea .series {
  background: linear-gradient(#fed5cb, #FFF);
  /*color: #af1a19;*/
}
  
#news li[data-category="yoronTab"].on,
.yoron .series {
  background: linear-gradient(#e0ecc9, #FFF);
 /* color: #1a581d;*/
}
  
#news li[data-category="kotobaTab"].on,
.kotoba .series {
  background: linear-gradient(#ffebbe, #FFF);
  /*color: #f46800;*/
}
  
#news li[data-category="historyTab"].on,
.history .series {
  background: linear-gradient(#efd0d8, #FFF);
  /*color: #47137d;*/
}
  
#domesticTab.on li a,
.domestic .arrow a {
  background-image: url(../img/icon_arrow_02.png);
}
  
#overseaTab.on li a,
.oversea .arrow a {
  background-image: url(../img/icon_arrow_03.png);
}
  
#yoronTab.on li a,
.yoron .arrow a {
  background-image: url(../img/icon_arrow_04.png);
}

#kotobaTab.on li a,
.kotoba .arrow a {
  background-image: url(../img/icon_arrow_05.png);
}
  
#historyTab.on li a,
.history .arrow a {
  background-image: url(../img/icon_arrow_06.png);
}

.domestic article h1 {
  border-color: #0091f9;
}

.oversea article h1 {
  border-color: #ff2d1a;
}

.yoron article h1 {
  border-color: #2cc02a;
}

.kotoba article h1 {
  border-color: #fab600;
}

.history article h1 {
  border-color: #b300c1;
}
  
.yoron table.stripe tr th {
  background-color: #e0ecc9;
}
  
.yoron .stripe tr:nth-child(odd) td {
  background-color: #eff5e4;
}
  
.kotoba #articleBody th {
  background-color: #ffebbe;
}

#relationLink {
  margin: 2em 0;
}

#relationLink .imgSideBox {
  border-top: solid 2px #888;
  border-bottom: solid 2px #888;
  list-style: none;
}

#relationLink .imgSideBox li:not(:last-child) {
  border-bottom: solid 1px #e9e9e9;
}

#relationLink .imgSideBox a {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 1em 0;
  color: #222;
}

#relationLink .imgSideBox a:hover {
  background-color: #FFF7EE;
}

#relationLink .imgSideBox .txtArea {
  width: 82%;
}

#relationLink .imgSideBox .imgArea {
  width: 15%;
}

#relationLink .imgSideBox .imgBox {
  width: 90%;
  max-width: 100px;
  border: solid 1px #CCC;
}

#relationLink .imgSideBox img {
  vertical-align: bottom;
}

#relationLink .imgSideBox p {
  text-indent: 0;
}



/* アコーディオン
================================================== */

.trigger {
  cursor: pointer;
}

.accordionBody,
.accordion .closeBtn,
.accordion.open .openBtn {
  display: none;
}

.accordion.open .accordionBody,
.accordion.open .closeBtn,
.accordion .openBtn {
  display: block;
}

.accordion .changeArrow {
  background: url(../img/icon_arrow_13.png) no-repeat 10px 10px;
  color: #03C;
}

.accordion.open .changeArrow {
  background: url(../img/icon_arrow_13.png) no-repeat 10px -40px;
  color: #03C;
}

/* モーダルウインドウ
================================================== */

#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-color: rgba(0,0,0,0.7);
  z-index: 5100;
}

#modalOverlay.fadeIn {
  display: block;
  opacity: 1;
  animation-duration: 0.3s;
  animation-name: fadeIn;
}

/* アニメーション
================================================== */

.fadeIn {
  display: block;
  opacity: 1;
  animation-duration: 0.3s;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  
  1% {
    display: block;
    opacity: 0;
  }
  
  100% {
    display: block;
    opacity: 1;
  }
}

.nowLoading {
  padding: 20px 0;
  text-align: center;
  animation-duration: 1s;
  animation-name: fadeIn;
}

.nowLoading img {
  width: 36px;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {transform: rotate(0deg);}
  100% {transform: rotate(360deg);}
}

/* ページトップボタン
================================================== */

#toPageTop {
  display: none;
  position: fixed;
  right: 3%;
  bottom: 0.5em;
}

#toPageTop a {
  display: block;
  width: 66px;
  height: 66px;
  padding-top: 17px;
  background-color: #555;
  color: #FFF;
  font-size: 28px;
  text-align: center;
  line-height: 1;
  opacity: 0.5;
  box-sizing: border-box;
  border-radius: 33px;
  transition: opacity 0.3s linear;
}

#toPageTop a:hover {
  opacity: 0.6;
}

/* フッター
================================================== */

footer {
  /*
  padding: 10px 0;
  background-color: #d2d2d2;
  font-size: 12px;
  font-size: 1.2rem;
  */
}

#fNav {
  list-style: none;
}

#fNav li {
  display: inline-block;
  padding: 0 10px;
  border-left: #444 solid 1px;
}

#fNav li a {
  color: #444;
}

#fNav li:first-child {
  border-left: none;
}

footer dl {
  padding: 10px;
}

footer dt {
  display: inline-block;
}

footer dd {
  display: inline-block;
  margin-left: 10px;
  color: #444;
}

.showSP {
  display: none;
}


@media screen and (max-width:1000px) {
  
  #news {
    font-size: 1.4rem;
  }

  #tab li:after {
    top: -1px;
  }
  
  aside h1 {
    font-size: 1.4rem;
  }
  
  aside section {
    padding: 5px;
    font-size: 1.2rem;
  }

  aside h2 {
    font-size: 1.4rem;
  }
  
/* 調査・研究成果 */


/* 刊行物 */
  #newBookArea h2,
  #newBookArea .date,
  #newBookArea .btn {
    font-size: 1.4rem;
  }
	
	
	.inlineBlock {
		margin-right: 1.5em;
	}

  #ugokiloadList li {
    width: 20%;
  }

  #ugokiloadList li:last-child {
    width: 34%;
  }

	
}


@media screen and (max-width:768px) {
  
  /* 基本レイアウト */
  #wrap {
    min-width: inherit;
  }

  main {
    padding-top: 0;
  }
  
  article {
    font-size: 1.4rem;
    border-radius: 0;
  }
  
  article > section {
    padding: 5px 10px;
  }

  article > section:first-child h1 {
    margin-bottom: 5px;
  }

  .column2 article {
    float: none;
    width: 100%;
    margin: 0 0 10px;
  }
  
  .column2 aside {
    float: none;
    width: 100%;
    overflow: hidden;
  }
  
  aside section {
    float: left;
    width: 48%;
    margin-right: 2%;
    font-size: 1.4rem;
    box-sizing: border-box;
  }
  
  #sideArea div {
    float: left;
    width: 48%;
    overflow: hidden;
  }
  
  /* ヘッダー */
  #header #logo {
    width: 10%;
    min-width: 56px;
  }

  #header #logoText {
    bottom: 1px;
    width: 180%;
  }

  #menu {
    position: relative;
    float: right;
    margin: 10px 5px 5px 10px;
  }

  #navArea form {
    margin-top: 15px;
  }

  #navArea .trigger {
    float: right;
    display: block;
    width: 44px;
    padding: 5px 8px;
    border-bottom: #332612 solid 1px;
    background-color: #4d391c;
    background: linear-gradient(#675439, #4d391c);
    text-align: center;
    line-height: 1;
    cursor: pointer;
    border-radius: 2px;
    box-sizing: border-box;
  }

  #navArea .open .trigger {
    position: relative;
    border-bottom: none;
    background: #FFF;
    background: linear-gradient(#eaddc9, #FFF);
    border-radius: 2px 2px 0 0;
    z-index: 10001;
  }
  
  #gNav {
    display: none;
    position: absolute;
    top: 37px;
    right: 0;
    float: none;
    width: 250px;
    background-color: #FFF;
    border-radius: 2px 0 2px 2px;
    z-index: 10000;
  }
  
  .open #gNav {
    display: block;
  }

  #gNav li {
    float: none;
    display: block;
  }

  #gNav a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 5px 0 5px 40px;
    border-top: #DDD dashed 1px;
    background-position: 15px 10px;
    box-sizing: border-box;
  }

  #gNav li:first-child a {
    border: none;
  }
  
  #gNav li.level2 a {
    padding-left: 50px;
    background-image: url(../img/icon_arrow_12.png);
    background-position: 30px 12px;
  }
  
  #gNav li.level2 + .level1 a {
    border-top-style: solid;
  }
  
  #research #gNav li.level2 {
    display: block;
  }

  #research[data-page="index"] #gNav li[data-group="research"] a,
  .domestic #gNav li[data-group="domestic"] a,
  .oversea #gNav li[data-group="oversea"] a,
  .yoron #gNav li[data-group="yoron"] a,
  .kotoba #gNav li[data-group="kotoba"] a,
  .history #gNav li[data-group="history"] a,
  #book #gNav li[data-group="book"] a,
  #kokugo #gNav li[data-group="kokugo"] a,
  #about #gNav li[data-group="about"] a {
    background-color: #FFF7EE;
  }

  #gNav .sub a {
    display: block;
    background: url(../img/icon_arrow_11.png) no-repeat 15px 10px;
    padding: 7px 0 7px 40px;
  }
  
  #inner-search-area {
    width: 69%;
  }

  #bnrAreaTopTB {
    display: block;
    clear: both;
    margin-bottom: 10px;
    line-height: 1;
  }
  
  #bnrAreaTopTB a {
    display: block;
    margin-bottom: 5px;
    padding: 5px 0;
    text-align: center;
  }
  
  #bnrAreaTopTB img {
    vertical-align: bottom;
  }
  
  #bnrAreaTopTB #bnrForum {
    background-color: #fffcdb;
	border-top: solid 1px #dddddd;
  }
  
  #bnrAreaTopTB #bnrBlog {
    display: block;
    border: #3aae37 solid 4px;
    background-color: #FFF;
  }
  
  #bnrAreaTopTB #bnrBlog img {
    max-width: 200px;
  }

  /* サイド */
  aside #bnrAreaTop,
  aside #bnrArea,
  aside #relatedArea {
    float: left;
    width: 48%;
    margin-right: 1.5%;
    box-sizing: border-box;
  }
  
  aside #sNav {
    float: none;
    width: auto;
  }


  /* フッター */
  #fNav {
    padding: 0 5px;
  }

  #fNav li {
    min-width: 45%;
    padding: 5px 0;
    border-left: none;
  }
  
  .hideTB {
    display: none;
  }
  
  /* 調査・研究成果 */
  
  #researchLead li {
    max-width: 160px;
    width: 33%;
  }

  #calendarArea li {
    width: 15%;
    margin: 0 1.5% 10px 0;
  }
  
  /* 刊行物 */

  #ugokiArea h2 strong {
    font-size: 16px;
    font-size: 1.6rem;
  }

  #ugokiloadList li {
    width: 48%;
  }

  #ugokiloadList li:last-child {
    width: 48%;
  }

}

@media screen and (max-width:480px) {

  /* 基本レイアウト */
  #wrap {
    min-width: 300px;
  }
  .column2 article {
    margin-bottom: 0;
  }
  
  article h1 {
    font-size: 1.4rem;
  }
  
  article h2 {
    font-size: 1.6rem;
  }
  
  article > section {
    padding: 5px;
  }

  article .btn.attn {
    font-size: 16px;
    font-size: 1.6rem;
  }
  
  /* ヘッダー */
  #header #logo {
    width: 18%;
    margin-right: 0;
  }

  #menu {
    margin: 8px 0 5px 10px;
  }

  #navArea {
    width: auto;
  }

  #navArea #gNav a {
    font-size: 1.6rem;
  }

  #navArea #gNav .sub a {
    font-size: 1.2rem;
  }

  #navArea form {
    width: auto;
    margin: 8px 0 0 0;
  }
  
  #inner-search-area {
    display: none;
  }
  
  #inner-search-btn {
    width: 44px;
    padding: 5px 8px;
    box-sizing: border-box;
  }
  
  /* トップ */

  #gNav a {
    font-size: 1.2rem;
  }
  
  #news #tabBody ul {
    float: none;
    width: auto;
  }
  
  #news #tabBody ul a {
    display: block;
    padding: 5px 0 5px 15px;
    border-bottom: #eaddc9 dashed 1px;
    background-position: 1px 8px;
  }
  
  #news #tabBody .others {
    padding: 0 0 5px;
    border-bottom: none;
  }

  #newsTxtArea.pickUp {
    float: none;
    width: 100%;
  }

  #news #kotobaList,
  #news #kotobaList + div {
    float: none;
    width: auto;
    border: none;
  }
  
  #news #kotobaList > div,
  #news #kotobaList + div > div {
    min-height: inherit;
    margin-bottom: 15px;
    border: none;
  }
  
  #news #pickUpArea {
    float: none;
    width: auto;
    margin: 10px;
    padding: 5px;
    border: #eaddc9 solid 1px;
    border-radius: 2px;
    background: linear-gradient(#FFF, #FFF, #eaddc9);
  }
  
  #news #pickUpArea p {
    display: block;
  }
  
  #news #pickUpArea img {
    border: #DDD solid 1px;
  }

  #news #pickUpArea .imgArea {
    display: table-cell;
    width: 30%;
    height: 44px;
    background-color: #FFF;
    vertical-align: middle;
  }

  #news #pickUpArea .imgArea .hImg {
    height: 88px;
  }

  #news .txtArea {
    display: table-cell;
    padding-left: 10px;
    vertical-align: top;
  }

  #news .txtArea h2 {
    font-size: 1.2rem;
  }

  #bookArea .others {
    margin-left: 0;
    padding-top: 5px;
  }

  #bookArea .others .btn {
    width: 60%;
    margin: 0 0 10px 0;
    padding: 5px 20px 4px 30px;
  }

  #bookArea .othersList h2 {
    font-size: 1.4rem;
  }

  #bookArea .othersList .btn {
    margin: 20px auto 15px;
    padding: 5px 20px 4px 30px;
  }

  /* サイド */
  aside section,
  #sideArea div {
    float: none;
    width: auto;
    max-width: 300px;
    margin: 5px auto 10px;
  }
  
  aside #bnrAreaTop,
  aside #bnrArea,
  aside #relatedArea,
  aside #twitterBnr {
    float: none;
    width: auto;
    margin: 5px auto 5px;
  }

  aside .others a {
    display: block;
  }
  
  /* フッター */
  footer {
    padding: 0;
  }

  footer dd {
    font-size: 1.0rem;
  }

  #fNav li {
    width: 100%;
    padding: 5px 0;
    border-bottom: #BBB dashed 1px;
  }

  #fNav li a {
    display: block;
  }
  
  #wrap main .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .hideSP {
    display: none;
  }
  
  .showSP {
    display: inline;
  }

  /* お知らせ */
  
  #infoArea a {
    padding-left: 0;
  }
  
  #infoArea .dateArea {
    text-align: left;
    margin: 5px 0;
  }
  
  #infoArea .txtArea {
    margin: 0;
  }
  
  /* 検索結果 */

  #search #inner-search-area {
    display: inline;
    width: 80%;
  }

  #search #inner-search-btn {
    display: inline;
    width: 50px;
    padding: 1px 8px;
    margin: 0;
  }
  

  /* 調査・研究 */
  
  #bannerBeforeContent a {
    padding: 5px;
  }

  #bannerBeforeContent h2 {
    font-size: 1.8rem;
  }
  
  #research article section:first-child h1 {
    position: relative;
  }
  
  #contentsLink {
    position: absolute;
    right: 0;
    bottom: 2px;
    padding: 0 5px;
    border: #DDD solid 1px;
    border-bottom-color: #BBB;
    background: none;
    font-size: 1.2rem;
    border-radius: 2px;
  }

  #listArea h2 {
    font-size: 1.4rem;
  }

  #filter li {
    padding: 10px 5px;
  }
  
  #research .arrow a {
    padding: 5px 0 5px 15px;
    background-position: 1px 8px;
  }

  .arrow .txtArea {
    margin-right: 0;
  }
  
  .arrow .dateArea {
    position: static;
    text-align: right;
  }
  
  #paging {
    width: 100%;
  }
  
  #pager {
    width: 70%;
  }
  
  #paging .hideSP {
    display: none;
  }
  
  #paging #prev, #paging #next {
    /*display: none;*/
    position: absolute;
    width: 44px;
  }
  
  /* 記事 */
  .articleTmp p {
    padding-bottom: 5px;
  }

  #articleArea h1 {
    font-size: 1.8rem;
  }
  
  #articleArea h2 {
    font-size: 1.6rem;
  }
  
  #articleArea p {
    margin-bottom: 1em;
    line-height: 1.8;
    text-indent: 1em;
  }
  
  #articleArea #date {
    float: none;
    font-size: 1.2rem;
    text-align: right;
  }

  #articleBody .indentBox {
    padding-left: 1em;
  }

  #articleBody ul ul,
  #articleBody ol ul{
    margin: 0 0 1em 0px;
  }

  #articleBody section h2 {
    font-size: 1.8rem;
  }
  
  #articleBody section h3 {
    font-size: 1.6rem;
  }
  
  #articleBody section h4 {
    font-size: 1.5rem;
  }
  
  #articleBody section h5 {
    margin-top: 1em;
    font-size: 1.4rem;
  }
  #articleBody th, #articleBody td {
    padding: 5px;
  }
  
  #subArea {
    width: 100%;
    float: none;
    text-align: left;
  }
  
  #articleArea #subArea .btn {
    display: block;
    width: 90%;
    margin: 5px auto;
    padding: 5px 10px 5px 5px;
    font-size: 1.2rem;
    text-align: left;
  }
  
  #articleArea #subArea .btn.attn {
    box-sizing: border-box;
  }
  
  #articleArea #subArea #fullTxt {
    margin-top: 0;
  }
  
  #articleArea #subArea br {
    display: none;
  }
	
  #politicalArea td,
  #politicalArea th {
    padding: 3px 0px;
    font-size: 1rem;
  }
  
  #naikaku td:first-child,
  #seito td:first-child {
    padding: 3px 2px;
  }

  #politicalList li {
    width: 23%;
  }

  #politicalList li a {
    padding: 5px 0;
  }
  
  /* 刊行物 */
  #newBookArea li {
    display: block;
    width: 100%;
    padding: 5px;
    border-right: none;
  }
  
  #newBookArea li:first-child + li {
    border-top: #DDD dashed 1px;
  }
  
  #newBookArea .imgArea {
    text-align: center;
  }
  
  #newBookArea .imgArea img {
    max-width: 60px;
  }

  #bookInfoArea section {
    display: block;
    padding-right: 0;
    width: 100%;
    border-bottom: none;
  }
  
  #bookInfoArea section:last-child {
    padding-right: 0;
    width: 100%;
  }
  
  #bkBookArea li {
    float: left;
    width: 32%;
    margin-right: 1%;
  }

  #buyArea h2 {
    font-size: 1.4rem;
  }

  #periodicaArea li h2,
  #irregularArea li h2 {
    float: none;
    font-size: 1.4rem;
  }

  #bookIndexArea .txtArea {
    float: none;
    width: auto;
  }
  
  #bookIndexArea .imgArea {
    float: none;
    width: auto;
    margin-top: 0;
  }
  
  #bookIndexArea #bookIndexBtn .btn {
    max-width: 100px;
    margin: 0 auto 5px;
  }

  #ugokiArea #subArea {
    margin-bottom: 5px;
  }

  #ugokiArea h2 {
    clear: both;
    margin: 0;
    padding-top :10px;
  }

  #ugokiArea h2 strong {
    display: none;
  }
  
  .ugoki #subArea .btn {
    width: auto;
    margin: 0;
  }
  
  #ugokiloadList li:last-child a {
    font-size: 1.2rem;
    padding: 7px 5px 6px;
  }

  #bookContentsArea h2,
  #bookContentsArea h3 {
    font-size: 1.4rem;
  }

  #bookContentsArea.newFormat h2 {
    font-size: 1.8rem;
    padding: 6px;
  }

	.inlineBlock span{
		text-indent:0em;
		
	}
}

/* 読み上げ対策
================================================== */

.hideTxt {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

  /* 20190613 追加 */

.cl_ff6600{
	color: #FF6600;
}

.cl_800080{
	color: #800080;
}

  /* 20240221 放送用語委員会 追加 */
  /* PDF HTML
================================================== */
#articleBody dl.list{
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
}
#articleBody dl.list.g3{
  grid-template-columns: auto auto auto;
}
#articleBody dl.list.p{
  margin-bottom: 1em;
  margin-left: 1em;
}
#articleBody dl.list dt,
#articleBody dl.list dd{
  padding-bottom: 0.25em;
  vertical-align: top;
}
#articleBody dl.list dt{
  padding-right: 0.1em;
}
#articleBody dl dd.num{
  text-align: right;
  padding-left: 0.25em;
}
#articleBody dl.vlist{
  margin-bottom: 1em;
}
#articleBody dl.vlist dd{
  margin-left: 1em;
}
/*margin S*/
#articleBody ol.ms li,
#articleBody ul.ms li{
  margin-bottom: 0.25em;
}
#articleBody dl.list.ms dt,
#articleBody dl.list.ms dd{
  margin-bottom: 0.25em;
}
/*margin M*/
#articleBody ol.mm li,
#articleBody ul.mm li{
  margin-bottom: 0.5em;
}
#articleBody dl.list.mm dt,
#articleBody dl.list.mm dd{
  margin-bottom: 0.5em;
}
/*margin L*/
#articleBody ol.ml li,
#articleBody ul.ml li{
  margin-bottom: 0.75em;
}
#articleBody dl.list.ml dt,
#articleBody dl.list.ml dd{
  margin-bottom: 0.75em;
}
/*exchange fig*/
#articleBody figure.exchg-fig{
  font-size: 0.8em;
  text-align: center;
}
#articleBody figure.exchg-fig img{
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
/*dot line*/
#articleBody .dot_line{
  display: flex;
  flex-wrap: nowrap;
}
#articleBody .dot_line *:nth-child(2){
  height: 0.75em;
  display: block;
  border-bottom: 1px dotted #222;
  flex-grow: 1;
  min-width: 1em;
  margin-left: 0.25em;
}



/* 印刷用
================================================== */

@media print{
  
  
}


/* ニュースページ用
================================================== */

#articleBody .authorDesc{
  padding: 1rem;
  display: flex;
  border: 1px solid #ddd;
  justify-content: space-between;
  align-items: center;

}
#articleBody .authorDesc_img{
  width: 24%;
}
#articleBody .authorDesc_img img{
  vertical-align: middle;
}
#articleBody .authorDesc_txt{
  width: 74%;
  list-style: none;
}
#articleBody .authorDesc_txt li,
#articleBody .authorDesc_txt p{
  margin: 0;
  font-size: 1.4rem;
}

#articleBody figcaption{
	margin-bottom: 20px;
}