/**
 * font size
 * rem単位を使うこと（1.0rem = 10px, 1.4rem = 14px）
 */
html { font-size: 62.5%; }
body {
  font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, 
               "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN",
               "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
               メイリオ, Meiryo, "MS ゴシック", "MS Gothic",
               sans-serif;
  font-size: 1.6rem;
  line-height: 1.2;
}

/**
 * layout
 */
body {
  color: #333;
  background-color: #fff;
}

a {
  color: #528038;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  position: relative;
  margin: 0 auto;
}
@media screen and ( min-width: 768px ), print {
  .container {
    max-width: 960px;
  }
}

#primary,
#secondary {
  padding-bottom: 16px;
}
@media screen and ( min-width: 768px ), print {
  #primary {
    float: right;
    width: 74.5%; /*66.0%;*/
  }
  #primary.full-width {
    width: 100%;
  }
  #secondary {
    float: left;
    width: 23.5%; /*32.0%;*/
  }
}

.hidden { display: none; }

/**
 * header
 */
.header {
  background-color: #baa83a;
  background: url('../images/header-bg-alpha-sp.png') no-repeat center -20px, url('../images/header-bg.png') repeat-x left top;
}
.site-logo {
  padding: 8px;
}
@media screen and ( min-width: 768px ), print {
  .header {
    background: url('../images/header-bg-alpha.png') no-repeat center -20px, url('../images/header-bg.png') repeat-x left top;
  }
  .site-logo {
    padding: 16px 0;
  }
}

/**
 * navbar グローバルメニュー
 */
nav {
  margin-bottom: 16px;
  padding: 6px 0;
  background-color: #655b56;
  color: #fff;
}
.sp-toggle {
  display: flex;
}
.sp-toggle__search,
.sp-toggle__menu {
  flex: 1;
  margin: 0 8px;
  padding: 12px 0;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}
#menu-global-menu {
  display: none;
  margin-top: 8px;
}
#menu-global-menu > li > a,
.translate-button {
  display: block;
  padding: 16px 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
#menu-global-menu > li > a::before {
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
}
@media screen and ( min-width: 768px ), print {
  .sp-toggle {
    display: none;
  }
  #menu-global-menu {
    display: flex;
    margin: 0;
    list-style: none;
  }
  #menu-global-menu > li {
    flex: 1;
  }
  #menu-global-menu > li:nth-child(3),
  #menu-global-menu > li:nth-child(4) {
    flex: 1.5;
  }
  #menu-global-menu > li:nth-child(5) {
    flex: 1.2;
  }
  #menu-global-menu > li > a,
  .translate-button {
    display: block;
    margin: 0 0 0 4px; padding: 10px 2px;
    border-radius: 4px;
    border: none;
    background: #9d9794;
    background: linear-gradient(to bottom,  #9d9794 0%,#635853 100%);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-weight: 400;
    text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.4);
    text-align: center;
    transition-duration: 0.2s;
    cursor: pointer;
  }
  #menu-global-menu > li a::before {
    display: none;
  }
  #menu-global-menu > li:first-child > a {
    margin-left: 0;
  }
  #menu-global-menu > li:last-child > a,
  .translate-button {
    background: #ae7364;
    background: linear-gradient(to bottom,  #ae7364 0%,#994f3b 100%);
  }
  #menu-global-menu > li:last-child > a::before {
    display: inline-block;
    margin-right: .5em;
    color: #be9184;
    text-shadow: none;
    font-family: "Font Awesome 5 Free";
    content: "\f061";
  }
  #menu-global-menu > li > a:hover {
    background: #b1aca9;
    background: linear-gradient(to bottom,  #b1aca9 0%,#867e7a 100%);
    text-decoration: none;
  }
  #menu-global-menu > li:last-child > a:hover,
  .translate-button:hover {
    background: #d9b5ab;
    background: linear-gradient(to bottom,  #d9b5ab 0%,#ae7364 100%);
  }
  #menu-global-menu > li:last-child > a:hover::before {
    color: #ae7364;
  }
}

/* translate */
.translate-menu {
}
.translate-button {
}
.translate-drawer-wrapper {
  position: relative;
}
.translate-drawer {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0 0 0 1em;
  list-style: none;
}
.translate-drawer li a {
  display: block;
  width: 100%;
  padding: .5em;
  color: #ffffff;
}
.translate-drawer li a i {
  color: #c1bdbb;
}
@media screen and ( min-width: 768px ), print {
  .translate-drawer-wrapper {
    margin-left: 4px;
  }
  .translate-drawer {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    margin: 0;
    padding: 0;
    border-radius: .5em;
    border: 2px solid #9a4f3a;
    background-color: #ffffff;
    list-style: none;
  }
  .translate-drawer li:not(:first-child) {
    border-top: 1px solid #9a4f3a;
  }
  .translate-drawer li a {
    color: #528038;
  }
}

/* breadcrumb */
.breadcrumbs {
  display: none;
}
@media screen and ( min-width: 768px ), print {
  .breadcrumbs {
    display: block;
    width: 960px;
    margin: 16px auto;
    padding: 8px 4px;
    border-radius: 4px;
    background-color: #f2f2f2;
    font-size: 1.4rem;
  }
  .breadcrumbs > span a {
    color: #528038;
    transition: 0.1s;
  }
  .breadcrumbs > span a:hover {
    opacity: 0.8;
    text-decoration: none;
  }
  .breadcrumbs > span > a::before,
  .breadcrumbs > span > span::before {
    margin: 0 4px;
    color: rgba(0, 0, 0, 0.3);
    font-family: "Font Awesome 5 Free";
    content: "\f105";
  }
  .breadcrumbs > span:first-child > a::before {
    content: "\f015";
  }
}

/**
 * footer
 */
.footer {
  clear: both;
  border-top: 1px solid #e5e5e5;
  line-height: 1.618;
}
.footer .container {
  margin: 0 8px;
  padding: 16px 0;
}
@media screen and ( min-width: 768px ), print {
  .footer .container { margin: 0 auto; }
}

.copyright {
  padding: 16px;
  background-color: #655b56;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

/**
 * widget
 */
.widget {
  margin: 0 0 16px 0;
}
@media screen and ( min-width: 768px ), print {
  .widget {
    margin: 0 0 16px 0;
  }
}

.widget ul, .widget ol { list-style: none; }

.widget .widget-title {
  padding: 8px;
  border: 1px solid #7c1d04; border-top-width: 2px;
  border-left: none; border-right: none;
  color: #7c1d04;
  font-size: 1.6rem;
  font-weight: bold;

  background: #f2f2f2;
  background: -moz-linear-gradient(top,  #f2f2f2 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top,  #f2f2f2 0%,#ffffff 100%);
  background: linear-gradient(to bottom,  #f2f2f2 0%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
}
.widget .widget-title a {
  color: #7c1d04;
  text-decoration: none;
  text-align: center;
}
@media screen and ( min-width: 768px ), print {
  .widget .widget-title {
    margin-bottom: 8px;
    padding: 8px 4px;
    border: 1px solid #7c1d04; border-left-width: 4px;
  }
  .widget .widget-title a { text-align: left; }
}

/* list */
.widget_recent_entries li a,
.widget_archive li a,
.widget .cat-item a {
  display: block;
  padding: 16px 8px;
  border-top: 1px solid #e5e5e5;
  color: #333;
  text-decoration: none;
}
.widget .cat-item:last-child {
  border-bottom: 1px solid #e5e5e5;
}
@media screen and ( min-width: 768px ), print {
  .widget_recent_entries li a,
  .widget_archive li a,
  .widget .cat-item a {
    padding: 8px 0;
  }
}
.widget_recent_entries li a:before,
.widget_archive li a:before,
.widget .cat-item a:before {
  float: left;
  margin-left: 4px; margin-right: 4px;
  color: #528038;
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
}
.widget_recent_entries li a:hover,
.widget_archive li a:hover,
.widget .cat-item a:hover {
  color: #528038;
}

.widget .children {
  /*padding-left: 2em;*/
  margin-left: 14px;
  font-size: 1.4rem;
}
.widget .cat-item .cat-item,
.widget .cat-item .cat-item a {
  display: inline-block;
  padding: 0 4px 4px 0;
  border: none;
}
.widget .cat-item .cat-item a:before {
  display: none;
}

/* tagcloud */
.widget .tagcloud {}

/* list-pages */
.widget_list_pages {
}
.widget_list_pages ul li a {
  display: block;
  padding: 16px;
  border-bottom: 1px dotted #ccc;
  color: #333;
  line-height: 1.2;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.widget_list_pages ul li:last-child a {
  border-bottom: none;
}
.widget_list_pages ul li a:hover {
  background-color: #f2f2f2;
  color: #528038;
  text-decoration: none;
}
.widget_list_pages ul li a::before {
  margin-right: 8px;
  color: #528038;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
}
@media screen and ( min-width: 768px ), print {
  .widget_list_pages ul li a {
    padding: 10px 0;
  }
}


/**
 * single, page, archive
 */

.hentry {}
@media screen and ( min-width: 768px ), print {
  .hentry {}
}

.hentry a {
  color: #00c;
  color: #528038;
  text-decoration: underline;
  text-decoration: none;
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
}
.hentry a:hover {
  opacity: 0.6;
}
.hentry a:visited {
  color: #606;
  color: #314d22;
}

.entry-header, .post-header {
  position: relative;
}

.entry-header .entry-title, .post-title, .category-title, .topics-title {
  margin-bottom: 8px;
  padding: 12px 8px;
  border-top: 2px solid #7c1d04;
  border-bottom: 1px dashed #7c1d04;
  color: #7c1d04;
  font-size: 1.8rem;
  font-weight: bolder;

  background: #f2f2f2;
  background: -moz-linear-gradient(top,  #f2f2f2 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top,  #f2f2f2 0%,#ffffff 100%);
  background: linear-gradient(to bottom,  #f2f2f2 0%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=0 );
}
h1.category-title {
  font-size: 2.0rem;
}

.archive-title {
  margin: 0 8px 16px 8px;
  padding: 8px;
  border-radius: 4px;
  background-color: #655b56;
  color: #fff;
  font-size: 1.6rem;
}
@media screen and ( min-width: 768px ), print {
  .archive-title {
    margin: 0 0 16px 0;
  }
}

.post-meta {
  padding: 0 8px;
  font-size: 1.5rem;
  text-align: right;
}
.post-meta .category-label {
  padding: 0 0.5em;
}
@media screen and ( min-width: 768px ), print {
  .post-meta {
    padding: 0;
  }
}

.entry-content {
  padding: 0 8px 16px 8px;
  line-height: 1.618;
}
.entry-content:after {
  content: ""; 
  display: table; 
  clear: both; 
}
.entry-content.excerpt {
  font-size: 1.5rem;
}
.entry-footer {
  margin: 16px 8px;
  padding: 8px;
  border-top: 1px solid #e5e5e5;
  background-color: #fafafa;
}
.entry-footer .post-date {
  color: #999;
  font-size: 1.4rem;
  text-align: right;
}
@media screen and ( min-width: 768px ), print {
  .entry-content {
    padding: 0 0 16px 0;
  }
  .entry-footer {
    margin: 16px 0;
  }
}

.tree {
  padding: 0;
}
.tree-list, .entry-content ul.tree-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tree-item {
  margin-bottom: 8px;
  /*border: 1px dotted #e5e5e5;*/
  border: 1px solid #d5d5d5;
}
.tree-item::after {
  content: ""; 
  display: table; 
  clear: both; 
}
.tree-item .title a,
.tree-item .title a:visited {
  display: block;
  padding: 16px;
  background-color: #fafafa;
  color: #528038;
  text-decoration: none;
}
.tree-item .desc a,
.tree-item .desc a:visited {
  color: #528038;
}
.tree-item .fa {
  margin-right: 8px;
  color: #528038;
}
.tree-item .thumb {
  float: left;
  width: 30%;
  margin: 8px;
}
.tree-item .thumb img {
}
@media screen and ( min-width: 768px ), print {
  .tree-item .thumb {
    width: 20%;
  }
}
.tree-item .desc {
  margin: 0;
  padding: 8px;
  font-size: 1.5rem;
  line-height: 1.618;
}

/* pagination */
.pagination {
  margin: 24px 0;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination li {
  display: none;
}
.pagination li.prev,
.pagination li.current,
.pagination li.next {
  display: block;
}

.pagination a,
.pagination span {
  display: inline-block;
  min-width: 36px;
  min-height: 36px;
  line-height: 36px;
  padding-top: 1px;
  border: 1px solid #e5dbd3;
  border-left-width: 0;
  background-color: #fff;
  color: #333;
  text-align: center;
}

.pagination li span {
  color: #ccc;
  pointer-events: none;
}

.pagination li.prev a,
.pagination li.prev span {
  border-left-width: 1px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination li.next a,
.pagination li.next span {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #E5DBD3; /*#d2d6ca;*/
}
.pagination li.current a {
 background-color: #E5DBD3; /*#b7beb3;*/
 cursor: default;
 pointer-events: none;
}

@media screen and ( min-width: 768px ), print {
  .pagination li {
    display: block;
  }
  .pagination li.prev a,
  .pagination li.prev span,
  .pagination li.next a,
  .pagination li.next span {
    border-radius: 0;
    border-left-width: 0;
  }
  .pagination li:first-child a,
  .pagination li:first-child span {
    border-left-width: 1px;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px;
  }
  .pagination li:last-child a,
  .pagination li:last-child span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
  }
}

/* entry-content title */

.entry-content h1 { clear: both; }
.entry-content h2 {
  clear: both;
  margin: 1em 0 0.5em 0;
  border-bottom: 1px solid #7c1d04;
  color: #7c1d04;
  font-size: 1em;
  font-weight: bold;
}
.entry-content h3 {
  clear: both;
  margin: 1em 0 0.5em 0;
  border-bottom: 1px dotted #7c1d04;
  color: #7c1d04;
  font-size: 1em;
  font-weight: bold;
}
.entry-content h4 {
  clear: both;
  margin: 1em 0 0.5em 0;
  border-bottom: 1px dotted #ccc;
  font-size: 1em;
  font-weight: bold;
}
.entry-content h5 {
  clear: both;
  margin: 1em 0 0.5em 0;
  color: #7c1d04;
  font-size: 1em;
  font-weight: bold;
}
.entry-content h6 {
  clear: both;
  margin: 1em 0 0.5em 0;
  font-size: 1em;
  font-weight: bold;
}

/**
 * actograph
 */

.entry-excerpt,
.actograph-meta {
  margin-bottom: 8px;
  padding: 4px 8px;
  border-left: 4px solid #ccc;
  background-color: #f2f2f2;
  /*background-color: #fff;*/
  line-height: 1.618;
}
.entry-excerpt p { margin: 0; }
.actograph-meta .theme,
.actograph-meta .area {
  display: block;
  margin-right: 16px;
}
@media screen and ( min-width: 768px ), print {
  .actograph-meta .theme,
  .actograph-meta .area { display: inline; }
}
.term-label {
  margin-right: 4px;
  font-weight: bolder;
}

.youtube {
  position: relative;
  height: 0;
  margin-bottom: 8px;
  padding: 30px 0 56.25% 0;
  /*padding: 30px 0 75% 0;*/
  overflow: hidden;
}
.youtube iframe {
  position: absolute; left: 0; top: 0;
  width: 100%; height: 100%;
}

.actograph-detail {
  width: 100%;
  margin-bottom: 1em;
}

/* actograph archive */
.actograph-list {
  display: flex;
  padding: 1em 8px;
  border-bottom: 1px solid #f2f2f2;
}
.support-list {
  display: block;
  margin-bottom: 16px;
  padding: 1px;
  border: 1px solid #e5e5e5;
}
@media screen and ( min-width: 768px ), print {
  .actograph-list { padding: 1em 0; }
  .support-list { padding: 1px; }
}
.actograph-list__thumb {
  flex: 1;
}
.actograph-list__content {
  flex: 2;
  padding-left: 8px;
}
.support-list__content {
  padding-left: 0;
}
@media screen and ( min-width: 768px ), print {
  .actograph-list__content {
    flex: 2.5;
  }
}
.actograph-list__thumb img {
  display: block;
  width: 100%;
  /*border-radius: 6px;*/
  padding: 1px;
  border: 1px solid #e5e5e5;
}
.hentry a.actograph-list__title {
  display: block;
  margin-bottom: 8px;
  padding: 4px 8px;
  /*background-color: #f2f2f2;*/
  background: #fff url('../images/bg-tilt-stripe.gif') repeat left top;
  color: #528038;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.2;
  text-decoration: none;
}
.hentry a.support-list__title {
  padding: 8px;
}
.actograph-list__terms {
  line-height: 1.5;
}
.support-list__terms {
  margin: 0 8px 8px 8px;
}
.actograph-list__terms .term-label {
  font-weight: normal;
}

.include-actograph {
  margin: 16px 0;
  padding: 8px;
  border: 1px solid #e5e5e5;
}
.include-actograph h2 {
  margin: 0;
  border: none;
}


/**
 * home
 */

section { margin-bottom: 24px; }

section .entry-title {
  margin-bottom: 8px;
}

.topics__list {
  margin: 8px 0;
  list-style: none;
}
.topics__item {
  padding: 16px 8px;
  border-bottom: 1px dotted #ccc;
}
.topics__title, .topics__date {
  display: inline;
}
.topics__title a {
  color: #528038;
  font-weight: bolder;
}
.topics__date::before { content: "（"; }
.topics__date::after { content: "）"; }
@media screen and ( min-width: 768px ), print {
  .topics__item {
    padding: 8px;
  }
}

.pickup__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.pickup__list li {
  flex-basis: 50%;
  margin-bottom: 16px;
  padding: 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
}
.pickup__list li img {
  width: 100%;
  padding: 1px;
  border: 1px solid #e5e5e5;
}
@media screen and ( min-width: 768px ), print {
  .pickup__list {
    justify-content: space-between;
  }
  .pickup__list li {
    /*flex-basis: 23%;*/
    flex-basis: 18.5%;
    padding: 0;
  }
}

.topics__link, .pickup__link {
  margin: 8px;
  text-align: right;
}
@media screen and ( min-width: 768px ), print {
  .topics__link, .pickup__link {
    margin: 8px 0;
  }
}

.search-actograph {}
.search-actograph h3 {
  margin-bottom: 8px;
  padding: 4px 8px;
  background: #e6d4cf;
  background: -moz-linear-gradient(top,  #e6d4cf 0%, #f0e5e2 100%);
  background: -webkit-linear-gradient(top,  #e6d4cf 0%,#f0e5e2 100%);
  background: linear-gradient(to bottom,  #e6d4cf 0%,#f0e5e2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e6d4cf', endColorstr='#f0e5e2',GradientType=0 );
  color: #7c1d04;
  font-size: 1.6rem;
}
.search-actograph h4 {
  margin-bottom: 8px;
  padding: 2px 0 0 4px;
  border-left: 4px solid #7c1d04;
  color: #7c1d04;
  font-size: 1.6rem;
}

.search-actograph .actograph-theme,
.search-actograph .table-actograph-area {
  margin: 0 8px 8px 8px;
  line-height: 1.618;
}
@media screen and ( min-width: 768px ), print {
  .search-actograph .actograph-theme,
  .search-actograph .table-actograph-area {
    margin: 0 0 8px 0;
  }
}

.table-actograph-area th {
  padding-right: 8px;
  font-weight: normal;
  white-space: nowrap;
}
.table-actograph-area th a {
  padding-right: 10px;
  border-right: 2px solid #f0e5e2;
  font-weight: bolder;
}

.search-actograph form { margin: 8px; }
.search-actograph #s { width: 70%; }
.widget-actograph #s { width: 70%; }
@media screen and ( min-width: 768px ), print {
  .search-actograph form { margin: 0; }
  .search-actograph #s { width: 50%; }
  .widget-actograph #s { width: 65%; }
}

.sidebar .search-actograph .span_6 { width: 100%; }
.sidebar .search-actograph .gutters .col { margin-left: 0; }
.sidebar .table-actograph-area th,
.sidebar .table-actograph-area td { display: block; text-align: left; }
.sidebar .table-actograph-area td { margin-bottom: 1em; }

.widget.home-menu .widget-title {
  margin-bottom: 8px;
}
.widget.home-menu a {
  display: block;
  padding: 6px 2px 6px 6px;
  color: #333;
  font-size: 1.4rem;
}
.widget.home-menu a::before {
  margin-right: 4px;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  color: #528038;
}
.widget.home-menu a:hover {
  color: #528038;
  text-decoration: underline;
}
.widget.home-menu .home-menu-btn a {
  margin: 8px;
  border-radius: 4px;
  background: #ae7364;
  background: -moz-linear-gradient(top,  #ae7364 0%, #994f3b 100%);
  background: -webkit-linear-gradient(top,  #ae7364 0%,#994f3b 100%);
  background: linear-gradient(to bottom,  #ae7364 0%,#994f3b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ae7364', endColorstr='#994f3b',GradientType=0 );
  color: #fff;
  font-size: 1.6rem;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.4);
  transition-duration: 0.2s;
}
.widget.home-menu .home-menu-btn a::before {
  color: #fff;
}
.widget.home-menu .home-menu-btn a:hover {
  text-decoration: none;
  opacity: 0.6;
}
.widget.home-menu .list a {
  margin: 4px 8px;
}
@media screen and ( min-width: 768px ), print {
  .widget.home-menu .home-menu-btn a,
  .widget.home-menu .list a {
    margin: 8px 0;
  }
}

.widget.banner {
  padding: 8px 0;
  border-top: 1px dashed #7c1d04;
  border-bottom: 1px dashed #7c1d04;
  text-align: center;
  line-height: 1;
  background: #f1f2da;
  background: -moz-linear-gradient(top,  #f1f2da 0%, #ffffff 100%);
  background: -webkit-linear-gradient(top,  #f1f2da 0%,#ffffff 100%);
  background: linear-gradient(to bottom,  #f1f2da 0%,#ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f2da', endColorstr='#ffffff',GradientType=0 );
}
.widget.banner li {
  margin: 4px 0;
}

/**
 * common
 */

.clearfix { overflow: hidden; zoom: 1; }
.clearfix:after { content: ""; display: block; clear: both; }

/* align */
.alignnone, .aligncenter, .alignleft, .alignright {
  display: block;
  margin: 0 auto 8px auto;
}
@media screen and ( min-width: 768px ), print {
  .alignleft {
    float: left;
    margin: 0 8px 8px 0;
  }
  .alignright {
    float: right;
    margin: 0 0 8px 8px;
  }
}

.hentry a.btn {
  padding: 4px;
  border-radius: 6px;
  background-color: #ccc;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.hentry a.btn-large {
  padding: 4px 0;
  font-size: 2.0rem;
}
.hentry a.btn-play {
  display: block;
  margin-bottom: 8px;
  border: 1px solid #ccc;
  background-color: #e5e5e5;
  color: #528038;
  font-size: 2.0rem;
  text-shadow: 1px 1px 0 #fff;
}

.width-max { width: 100%; }

.table-bordered {
  border-collapse: collapse;
}
.table-bordered th,
.table-bordered td {
  padding: 5px;
  border: 1px solid #ccc;
}
.table-underline {
  border-collapse: collapse;
}
.table-underline th,
.table-underline td {
  padding: 5px;
  border-bottom: 1px dotted #ccc;
}

.f10 { font-size: 1.0rem; }
.f11 { font-size: 1.1rem; }
.f12 { font-size: 1.2rem; }
.f13 { font-size: 1.3rem; }
.f14 { font-size: 1.4rem; }
.f15 { font-size: 1.5rem; }
.f16 { font-size: 1.6rem; }
.f17 { font-size: 1.7rem; }
.f18 { font-size: 1.8rem; }
.f19 { font-size: 1.9rem; }
.f20 { font-size: 2.0rem; }
.f21 { font-size: 2.1rem; }
.f22 { font-size: 2.2rem; }
.f23 { font-size: 2.3rem; }
.f24 { font-size: 2.4rem; }

.b { font-weight: bold; }
.c { text-align: center; }
.l { text-align: left; }
.r { text-align: right; }

.nowrap { white-space: nowrap; }

strong { font-weight: bold; }

p { margin: 0 0 1em 0;}

.entry-content ul, .entry-content ol { margin: 0 0 1em 3em; }
.entry-content ul    { list-style-type: disc; }
.entry-content ul ul { list-style-type: circle; }
.entry-content ol    { list-style-type: decimal; }
.entry-content ol ol { list-style-type: lower-latin; }

/* utillity */
.hidden-sp { display: none; }
@media screen and ( min-width: 768px ), print {
  .hidden-sp,
  .hidden-sp.block { display: block; }
  .hidden-sp.inline { display: inline; }
  .hidden-sp.inline-block { display: inline-block; }
  .hidden-sp.table { display: table; }
  .hidden-sp.table-row { display: table-row; }
  .hidden-sp.table-cell { display: table-cell; }
  .hidden-pc { display: none; }
}

/* print */
@media print {
}

/**
 * plugins
 */

/* contact form 7 */
.wpcf7 {}
.asterisk {
  margin: 0 0 0 0.2em;
  color: #f5637a;
}
.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="url"],
.wpcf7 textarea {
  width: 95%;
  padding: 0.5em;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fafafa;
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  /*box-shadow: 0 0 2px #e5e5e5 inset;*/
}
.wpcf7 input.wpcf7-not-valid, .wpcf7 textarea.wpcf7-not-valid {
  border: 1px solid #f33;
}
.wpcf7 input:focus, .wpcf7 textarea:focus {
  border: 1px solid #bae8f1;
  /*border: 1px solid #2c97c6;*/
  /*border: 1px solid #528038;*/
  background-color: #fff;
  /*box-shadow: 0 0 2px #2c97c6 inset;*/
  box-shadow: 0 0 2px #e5e5e5 inset;
}
.wpcf7 input[type="submit"] {
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  background-color: #528038;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}
.wpcf7 input[type="submit"]:hover { opacity: 0.8; }
.wpcf7 input[disabled="disabled"] { background-color: #ccc; cursor: auto; }
.wpcf7 input[disabled="disabled"]:hover { opacity: 1; }

/* sitemap */
#sitemap_list {
  margin: 0 0 0 16px;
  list-style: none;
}
#sitemap_list a {
  color: #333;
  text-decoration: none;
}
#sitemap_list li {
  padding: 4px 0;
}
#sitemap_list li::before {
  margin-right: 8px;
  color: #a32f5c;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
}
#sitemap_list ul {
  margin: 0 0 0 3em;
  list-style: none;
}
#sitemap_list ul li::before {
  content: "\f105";
}
#sitemap_list .posts_in_category {
  display: none;
}