@charset "UTF-8";

/* ==================================================

	※このファイルは基本的に編集しない。他のCSSで設定上書きでの対処を推奨。

================================================== */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 62.5%;
}
body {
  -webkit-text-size-adjust: 100%;
  /* 画面回転時の自動文字サイズ調整機能OFF */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}
img {
  vertical-align: top;
  display: block;
  max-width: 100%;
  height: auto;
  font-size: 0;
  -ms-interpolation-mode: bicubic;
  /* IE系での画像リサイズ時のリサンプリング設定 */
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: top;
  background: transparent;
  color: #333;
}
a:focus {
  outline: none;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
table {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  word-wrap: break-word;
  word-break: break-all;
}
tbody,
tfoot,
thead {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
}
table th,
table td {
  margin: 0;
  padding: 0;
  text-align: left;
  vertical-align: middle;
}
input {
  vertical-align: middle;
  -webkit-appearance: none;
}
input:focus {
  outline: none !important;
}
button:focus {
  outline: none !important;
}
input[type="submit"] {
  cursor: pointer;
}
select,
optgroup {
  vertical-align: middle;
}
select {
  padding-right: 1px;
}
textarea {
  font-size: 100%;
}
pre,
code,
kbd,
samp,
var {
  font-family: Consolas, "Courier New", Courier, Monaco, monospace;
}
sub,
sup {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
@media print {
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時の背景印刷 */
  }
}

::placeholder {
  color: #ccc;
}
/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #ccc;
}
/* IE対応 */
:-ms-input-placeholder {
  color: #ccc;
}
/* ==================================================
	basic layout
================================================== */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  font-family: "Century Gothic", "CenturyGothic", "游ゴシック Medium",
    "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN",
    "Segoe UI", Verdana, Meiryo, sans-serif;
  position: relative;
  min-width: 1170px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    min-width: auto;
  }
}
@media only screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}
form {
  width: 100%;
}
a {
  text-decoration: none;
}
.bold {
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.container {
  width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: 1170px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    width: 95%;
    padding: 0;
  }
}
._pd100 {
  padding: 100px 0;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  ._pd100 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  ._pd100 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 575.98px) {
  ._pd100 {
    padding: 60px 0;
  }
}
._pdt100 {
  padding-top: 100px;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  ._pdt100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  ._pdt100 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  ._pdt100 {
    padding-top: 60px;
  }
}
._pdb100 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  ._pdb100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  ._pdb100 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  ._pdb100 {
    padding-bottom: 60px;
  }
}
._mgt100 {
  margin-top: 100px;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  ._mgt100 {
    margin-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  ._mgt100 {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 575.98px) {
  ._mgt100 {
    margin-top: 60px;
  }
}
/* ==================================================
	header
================================================== */

@media only screen and (max-width: 767px) {
  body.is-fixed {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
}
.l-header__main {
  max-width: 1220px;
  margin: 0 auto;
  width: 100%;
  height: 70px;
}
.l-header.is-fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: #fff;
  max-width: inherit;
  transition: all 0.3s;
  opacity: 1;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  .l-header {
    padding: 10px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .l-header {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    width: 100%;
  }
}
.c-header .l-header__main {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-header {
    padding: 5px 10px 5px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-header__logo a {
    width: 200px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
  }
  .c-header__logo a img {
    margin: 0 auto;
  }
}
.c-header__logo a span {
  font-size: 1.2rem;
  font-weight: bold;
  display: block;
  position: relative;
  top: -7px;
}
.c-header__logo a .abs, .c-header__logo .logo.abs {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.c-header__stuff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-header__stuff {
    margin-right: 10px;
  }
}
.c-header__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  width: 42.5px;
  height: 42.5px;
  cursor: pointer;
}
.c-header__form.is-active i::before {
  content: "\E809";
}
.c-header__form i {
  font-family: fontello;
  color: #fff;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: normal;
}
.c-header__form i:before {
  content: "\E802";
}
.c-header__menu {
  width: 42.5px;
  height: 42.5px;
  cursor: pointer;
  margin: 10px 0;
  margin-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: none;
}
.c-header__menu span {
  position: relative;
  display: block;
  width: 30px;
  height: 2px;
  background: #000;
}
.c-header__menu span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: -7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.c-header__menu span:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0%;
  top: 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  .c-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.c-header__menu.is-active span {
  background: transparent;
}
.c-header__menu.is-active span:before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.c-header__menu.is-active span:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  top: 0;
  width: 100%;
  left: 0;
}
.c-nav {
  height: 100%;
}
.c-nav.is-active {
  opacity: 1;
  pointer-events: inherit;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-nav {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    background-color: #000;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    top: 70px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media only screen and (max-width: 767px) {
  .c-nav {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    background-color: #000;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.c-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    padding: 30px 2.5% 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-nav ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    padding: 30px 2.5% 0;
  }
}
.c-nav ul li {
  display: block;
  margin-right: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-nav ul li {
    margin-right: 0;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .c-nav ul li {
    margin-right: 0;
    width: 100%;
    margin: 10px 0;
    text-align: center;
  }
}
.c-nav ul li a {
  font-weight: bold;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 2px solid transparent;
}
.c-nav ul li a img {
  margin-right: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-nav ul li a {
    color: #fff;
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .c-nav ul li a {
    color: #fff;
    font-size: 1.4rem;
  }
}
.c-nav ul li a:hover {
  border-color: #000;
}
.c-nav ul li a.no-border:hover {
  border-color: transparent;
}
/* ==================================================
	footer
================================================== */

.c-footer__top {
  padding-top: 75px;
  border-top: 1px solid #d9d9d9;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-footer__top {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__top {
    padding: 20px 0;
  }
}
.c-footer__logo {
  font-size: 3.5rem;
  display: block;
}
.c-footer__logo a {
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-footer__logo a img {
    max-width: 50px;
  }
}
.c-footer__nav {
  margin-top: 50px;
}
.c-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-footer__nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-footer__nav ul li {
  padding: 0 30px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-footer__nav ul li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__nav ul li {
    margin-bottom: 10px;
  }
}
.c-footer__nav ul li a {
  border-bottom: 1px solid transparent;
  display: block;
  font-size: 1.6rem;
  color: #6f6e6e;
  font-weight: 700;
}
.c-footer__nav ul li a:hover {
  border-color: #6f6e6e;
}
.c-footer__bottom {
  padding-bottom: 10px;
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom {
    padding-top: 0px;
  }
}
.c-footer__bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-footer__bottom ul li a {
  font-size: 1.4rem;
  color: #999;
  padding: 0 30px;
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom ul li a {
    padding: 0 10px;
  }
}
.c-footer__bottom p {
  margin-top: 30px;
  font-size: 1rem;
  text-align: center;
  color: #6f6e6e;
}
/* ==================================================
	main
================================================== */

.s-main {
  padding-top: 40px;
  padding-bottom: 140px;
  background-color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .s-main {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .s-main {
    padding-bottom: 20px;
    padding-top: 30px;
  }
}
.s-main__sub {
  padding-top: 20px;
}
@media only screen and (max-width: 767px) {
  .s-main__sub {
    padding-top: 10px;
  }
}
.s-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .s-main__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .s-main__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-breadcrumb {
  margin-bottom: 20px;
  font-size: 1.2rem;
  padding: 0;
}
.c-breadcrumb a {
  font-size: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 0;
    margin-bottom: 10px;
  }
}
.c-content {
  width: 774px;
}
@media only screen and (min-width: 991px) and (max-width: 1024px) {
  .c-content {
    width: calc(1024px - 350px);
    padding-right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-content {
    max-width: 100%;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .c-content {
    max-width: 100%;
  }
}
.c-content--sub {
  background-color: #fff;
  max-width: 100%;
  width: 100%;
  padding: 20px 40px;
}
@media only screen and (max-width: 767px) {
  .c-content--sub {
    padding: 15px;
  }
}
.c-content.--noBorder {
  border: none;
}
.c-tabs {
  border: 2px solid #d9d9d9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  margin-bottom: 30px;
}
.c-tabs li {
  width: calc(100% / 4);
}
.c-tabs li:last-child a {
  border-right: none;
}
.c-tabs li a.is-active,
.c-tabs li:hover a {
  background-color: #d9d9d9;
  color: #000;
}
.c-tabs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 2px solid #d9d9d9;
  height: 50px;
  font-weight: 700;
  font-size: 1.6rem;
  color: #6a6969;
}
@media only screen and (max-width: 575px) {
  .c-tabs li a {
    font-size: 1rem;
    padding: 0 3px;
    text-align: center;
  }
}
.c-sidebar {
  width: 350px;
}
@media only screen and (min-width: 991px) and (max-width: 1024px) {
  .c-sidebar {
    width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-sidebar {
    width: 100%;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .c-sidebar {
    width: 100%;
    margin-top: 30px;
  }
}
.c-sidebar__boxes {
  background-color: #fff;
  margin-bottom: 25px;
}

.c-sidebar__boxes h3 {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  height: 50px;
  font-weight: 700;
  text-transform: uppercase;
}
.c-sidebar__boxes h3 img {
  margin-right: 7px;
}
.c-sidebar__content {
  padding: 23.5px 14px;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  .c-sidebar__content {
    padding: 15px 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-sidebar__content {
    padding: 15px 10px;
  }
}
.widget_tag_cloud .c-sidebar__content {
  padding: 10px 5px;
}
.widget_tag_cloud .c-sidebar__content a {
  font-size: 1.4rem !important;
  font-weight: bold;
  padding: 0 10px;
  display: inline-block;
	border: 1px solid #d2d2d2;
    color: #969696;
    padding: 3px 10px;
}
.widget_category_widget .c-sidebar__content {
  padding: 0;
}
.c-sidebar__post--num li {
  position: relative;
}
.c-sidebar__post--num li:before {
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  background-color: #999999;
  z-index: 99;
}
.c-sidebar__post--num li:first-child:before {
  content: "1";
  position: absolute;
  width: 25px;
  height: 25px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* background-color: #fff601; */
  font-weight: bold;
  color: #fff;
}
.c-sidebar__post--num li:nth-child(2):before {
  content: "2";
}
.c-sidebar__post--num li:nth-child(3):before {
  content: "3";
}
.c-sidebar__post--num li:nth-child(4):before {
  content: "4";
}
.c-sidebar__post--num li:nth-child(5):before {
  content: "5";
}
.c-sidebar__post--num li:nth-child(6):before {
  content: "6";
}
.c-sidebar__post--num li:nth-child(7):before {
  content: "7";
}
.c-sidebar__post--num li:nth-child(8):before {
  content: "8";
}
.c-sidebar__post--num li:nth-child(9):before {
  content: "9";
}
.c-sidebar__post--num li:nth-child(10):before {
  content: "10";
}
.c-sidebar__post--num li:nth-child(11):before {
  content: "11";
}
.c-sidebar__post--num li:nth-child(12):before {
  content: "12";
}
.c-sidebar__post--num li:nth-child(13):before {
  content: "13";
}
.c-sidebar__post--num li:nth-child(14):before {
  content: "14";
}
.c-sidebar__post--num li:nth-child(15):before {
  content: "15";
}
.c-sidebar__post--num li:nth-child(16):before {
  content: "16";
}
.c-sidebar__post--num li:nth-child(17):before {
  content: "17";
}
.c-sidebar__post--num li:nth-child(18):before {
  content: "18";
}
.c-sidebar__post--num li:nth-child(19):before {
  content: "19";
}
.c-sidebar__post--num li:nth-child(20):before {
  content: "20";
}
.c-sidebar__post li {
  margin-bottom: 20px;
  position: relative;
}
.c-sidebar__post li:last-child {
  margin-bottom: 0;
}
.c-sidebar__post li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.c-sidebar__post li a img {
  width: 135px;
  height: auto;
  margin-right: 17px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  .c-sidebar__post li a img {
    margin-right: 10px;
    width: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .c-sidebar__post li a img {
    margin-right: 10px;
    width: 100px;
  }
}
.c-sidebar__post li a small {
  font-size: 1.2rem;
  display: block;
  font-weight: bold;
  line-height: 1;
}
.c-sidebar__post li a span {
  margin-top: 5px;
  font-size: 1.4rem;
  display: block;
  line-height: 2.1rem;
  font-weight: bold;
}
.c-sidebar__post li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.c-sidebar form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
	position:relative;
}
.c-sidebar form input {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	outline:none;
	border-radius:0;
  border: none;
  padding-left: 10px;
  flex: 1;
  border: 2px solid #bebdbd;
  border-right: none;
	height:50px;
}
.c-sidebar form button {
  border: none;
  background: none;
  width: 50px;
  height: 50px;
  background: #000;
	position:absolute;
	top:0;
	right:0;
}
.c-sidebar form i {
  font-family: fontello;
  color: #fff;
  font-style: normal;
  font-size: 1.8rem;
  font-weight: normal;
}
.c-sidebar form i:before {
  content: "\E802";
}
.c-sidebar__link li + li {
  border-top: 1px solid #a9a8a8;
}
.c-sidebar__link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  padding: 0 7px;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-sidebar__link li a:hover {
  background-color: #a9a8a8;
}
.c-sidebar__tags {
  padding: 10px 5px;
}
.c-sidebar__tags a {
  font-size: 1.6rem;
  font-weight: bold;
  padding: 0 10px;
  display: inline-block;
}
.widget_search h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_search h3 span::before {
  content: "";
  background: url(../images/ico-search.png) no-repeat;
  background-size: 16px auto;
  background-position: center;
  width: 16px;
  height: 27px;
  display: inline;
  margin-right: 7px;
}
.widget_tag_cloud h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_tag_cloud h3 span::before {
  content: "";
  background: url(../images/ico-tag.png) no-repeat;
  background-size: 18px auto;
  width: 18px;
  height: 18px;
  display: inline;
  margin-right: 7px;
}
.widget_category_widget h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_category_widget h3 span::before {
  content: "";
  background: url(../images/ico-directory.png) no-repeat;
  background-size: 19px 13px;
  width: 19px;
  height: 13px;
  display: inline;
  margin-right: 7px;
}
.widget_popularpost_widget h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_popularpost_widget h3 span::before {
  content: "";
  background: url(../images/ico-ranking.png) no-repeat;
  background-size: 20px 20px;
  width: 20px;
  height: 20px;
  display: inline;
  margin-right: 7px;
}
.widget_recentpost_widget h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget_recentpost_widget h3 span::before {
  content: "";
  background: url(../images/ico-new.png) no-repeat;
  background-size: 12px auto;
  width: 12px;
  height: 19px;
  display: inline;
  margin-right: 9px;
}
.widget-ranking h3 span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.widget-ranking h3 span::before {
  content: "";
  background: url(../images/ico-brown.png) no-repeat;
  background-size: 21px 17px;
  width: 21px;
  height: 17px;
  display: inline;
  margin-right: 7px;
}
.authorMain {
  max-height: 700px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.authorMain figure {
  padding-top: 20%;
}
.authorMain img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 30% 20%;
  object-position: 30% 20%;
  top: 0;
  left: 0;
}
.authorDetails {
  margin: 50px 0;
}
.authorDetails-flame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.authorDetails-flame--image {
  width: 120px;
  height: 120px;
  margin-right: 30px;
  position: relative;
}
.authorDetails-flame--image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 50%;
}
.authorDetails-flame--content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.authorDetails-flame--tlt {
  margin-bottom: 10px;
}
.authorDetails-flame--tlt p {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
}
.authorDetails-flame--txt {
  margin-bottom: 10px;
}
.authorDetails-flame--txt p {
  font-size: 1.4rem;
  line-height: 1.6;
}
.authorDetails-flame--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.authorDetails-flame--social li {
  margin-right: 20px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.authorDetails-flame--social span:before {
  content: "";
  font-size: 2rem;
  position: relative;
  font-family: fontello;
}
.authorDetails-flame--social .twitter span:before {
  content: "\F099";
}
.authorDetails-flame--social .facebook span:before {
  content: "\F09A";
}
.authorDetails-flame--social .instagram span:before {
  content: "\F16D";
}
.authorDetails-flame--social .youtube span:before {
  content: "\F167";
}
.authorDetails-flame--social .link span:before {
  content: "\F09E";
}
.authorTab .linkTab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.authorTab .linkTab button {
  position: relative;
  display: block;
  padding: 24px 16px;
  font-size: 1.4rem;
  line-height: 1;
  background: transparent;
  border: none;
  cursor: pointer;
}
.authorTab .linkTab button.active:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #222;
}
.authorTab .contentTab {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
.authorTab .contentTab-items {
  display: none;
}
.authorTab .contentTab-items.show {
  display: block;
}
.authorTab .contentTab-items--inner {
  padding: 10px;
}
.authorTab .contentTab-items--tlt {
  font-size: 2rem;
  line-height: 1.6;
}
.authorTab .contentTab-items--tags span {
  font-size: 1.2rem;
  background: #f5f5f5;
  display: inline-block;
  color: #333;
  padding: 2px 10px;
  margin: 3px 5px;
  margin-left: 0;
  border-radius: 5px;
}
.authorTab .contentTab-items--taxonomy span {
  font-size: 1.4rem;
}
.textLimit {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 100%;
}
.textLimit-1 {
  line-height: 20px;
  max-height: 20px;
  -webkit-line-clamp: 1;
}
.c-tlt01 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #242424;
}
.c-taxAuthor {
  margin: 50px 0;
}
.c-taxAuthor--flame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-taxAuthor--img {
  width: 80px;
  height: 80px;
  position: relative;
}
.c-taxAuthor--img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 50%;
}
.c-taxAuthor--info {
  padding: 0 20px;
}
.c-taxAuthor--name01 {
  line-height: 1.2;
  font-size: 2.4rem;
  font-weight: bold;
  color: #242424;
  margin: 0px;
  position: relative;
}
.c-taxAuthor--name02 {
  font-size: 12px;
  font-weight: 500;
}
.c-taxAuthor--ocupation {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #666666;
  margin: 0px;
  line-height: 2;
}
.c-taxAuthor--des {
  margin: 0px;
  margin-top: 20px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #242424;
}
.c-taxList {
  margin-top: 15px;
}
.c-taxList ._items-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0px;
  overflow: hidden;
}
.c-taxList ._items:last-child {
  margin-bottom: 0;
}
.c-taxList ._items-img {
  width: 120px;
}
.c-taxList ._items-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 20px;
}
.c-taxList ._items-tlt {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin: 4px 0;
}
.c-taxList ._items-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-taxList ._items-date {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.2px;
  color: #666666;
}
.c-taxList ._items-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.2px;
  color: #666666;
  margin-left: 5px;
}
.c-tagList {
  margin-top: 15px;
}
.c-tagList ._items-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 1px solid #eeeeee;
  padding: 15px 0px;
  overflow: hidden;
}
.c-tagList ._items:last-child {
  margin-bottom: 0;
}
.c-tagList ._items-img {
  width: 120px;
}
.c-tagList ._items-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 20px;
}
.c-tagList ._items-tlt {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  letter-spacing: 0.2px;
  margin: 4px 0;
}
.c-tagList ._items-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-tagList ._items-date {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.2px;
  color: #666666;
}
.c-tagList ._items-txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.57;
  letter-spacing: 0.2px;
  color: #666666;
  margin-left: 5px;
}
.s-mv {
  padding: 45px 0;
}
@media only screen and (max-width: 767px) {
  .s-mv {
    padding: 25px 0;
  }
}
.s-mv .slick-dots {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.s-mv .slick-dots button {
  cursor: pointer;
  border: none;
  color: transparent;
  width: 13px;
  height: 13px;
  display: block;
  font-size: 0;
  background: none;
  position: relative;
  margin: 0 10px;
}
.s-mv .slick-dots button:before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  line-height: 13px;
  background: #999;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.s-mv .slick-active button:before {
  background: #000;
}
.s-mv .c-post__big figure {
  width: 100%;
  height: 500px;
}
.s-mv .c-post__big figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
}
.tab-content {
  display: none;
}
.tab-content.is-active {
  display: block;
}
@media only screen and (min-width: 516px) and (max-width: 767px) {
  .tab-content.is-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.c-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .c-post {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .s-mv .c-post__big figure {
    height: 250px;
  }
}
.c-post figure {
  height: 100%;
}
.c-post figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.c-post__big {
  position: relative;
}
.c-post__big--content {
  background-color: #fff;
  padding: 18px 20px;
  position: absolute;
  left: 8vw;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .c-post__big--content {
    padding: 10px;
  }
}
.c-post__big--title {
  font-size: 1.8rem;
  margin-top: 7px;
  line-height: 3.03958rem;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-post__big--title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__big--title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__big--top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.c-post__date {
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
  line-height: 1;
}
.c-post__cat {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 1px 10px;
  margin-right: 5px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .c-post__cat {
    padding: 2px 5px;
    font-size: 1rem;
  }
}
.c-post__list {
  width: 51%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-post__list {
    width: 100%;
  }
}
.c-post__list--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  position: relative;
}
.c-post__list--item figure {
  height: auto;
  max-width: 170px;
}
.c-post__list--item + .c-post__list--item {
  margin-top: 18.5px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-post__list--item + .c-post__list--item {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__list--item + .c-post__list--item {
    margin-top: 10px;
  }
}
.c-post__list--title {
  font-size: 1.7rem;
  line-height: 2.72083rem;
  margin-top: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-post__list--title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__list--title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-post__list--content {
  padding: 15px 20px;
  padding-right: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-post__list--content {
    padding: 11px 7px;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__list--content {
    padding: 7px;
  }
}
.c-post__link {
  display: block;
}
.c-post__link:hover:after {
  opacity: 0.3;
}
.c-post__link:after {
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  opacity: 0;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-post__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 12.5px;
}
@media only screen and (min-width: 516px) and (max-width: 767px) {
  .c-post__item {
    width: calc(100% / 2 - 5px);
  }
}
@media only screen and (max-width: 767px) {
  .c-post__item {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-post__item figure {
  width: 290px;
}
.c-post__item figure img {
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  .c-post__item figure img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-post__item figure.--small {
  width: 145px;
}
.c-post__item figure.--small img {
  height: auto;
}
@media only screen and (max-width: 767px) {
  .c-post__item figure {
    width: auto;
  }
  .c-post__item figure img {
    height: auto;
    width: auto;
  }
}
.c-post__item + .c-post__item {
  margin-top: 12.5px;
}
@media only screen and (min-width: 516px) and (max-width: 767px) {
  .c-post__item + .c-post__item {
    margin-top: 0;
  }
}
.c-post__item.--small {
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .c-post__item.--small {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.c-post__image {
  width: 100%;
}
.c-post__image figure {
  background-color: #fff;
  position: relative;
  padding-top: 55%;
}
.c-post__image figure img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: contain;
  object-position: center;
}
.c-post__content {
  padding: 7px 25px;
  padding-bottom: 15px;
  background-color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-post__content.--small {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .c-post__content.--small {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .c-post__content {
    padding: 5px 10px;
  }
}
.c-post__title {
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1.7rem;
  word-break: break-all;
  max-height: 51px;
  overflow: hidden;
}
.c-post__title.--small {
  margin-top: 2px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .c-post__title {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.c-post__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-post__author.--small {
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .c-post__author {
    font-size: 1.4rem;
  }
}
.c-post__author--avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}
.--small .c-post__author--avatar {
  width: 32px;
  height: 32px;
}
@media only screen and (max-width: 767px) {
  .c-post__author--avatar {
    margin-right: 10px;
    width: 30px;
    height: 30px;
  }
}
.c-post__inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-post__inline {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-post__add {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  margin-top: 15px;
  cursor: pointer;
  display: none;
}
.c-post__add.--small {
  margin-top: 0;
  font-weight: bold;
  margin-left: 20px;
}
@media only screen and (max-width: 767px) {
  .c-post__add.--small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-left: 0;
    margin-top: 7px;
  }
}
.c-post__add:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.c-post__add img {
  margin-right: 10px;
}
.c-post__go {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  background-color: rgba(51, 51, 51, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  opacity: 0;
}
.c-post__go:hover {
  opacity: 1;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.c-post__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.c-post__grid:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.c-post__grid--author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
}
.c-post__grid--avatar {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}
.c-post__grid--item {
  width: calc(100% / 3);
  padding: 0 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-post__grid--item {
    width: 100%;
  }
}
.c-post__grid--inner {
  background-color: #fff;
  position: relative;
  height: 100%;
}
.c-post__grid--content {
  padding: 15px 0;
}
.c-post__grid--content h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 5px 0;
  line-height: 1.4;
}
.c-post__grid--add {
  font-size: 1.2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}
.c-post__grid--add img {
  margin-right: 5px;
}
.c-post__grid a {
  display: block;
}
.c-post__grid a:hover:after {
  opacity: 0.3;
}
.c-post__grid a:after {
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  opacity: 0;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-post__grid .c-post__grid--content h3.c-post__grid--titleBigger {
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-post__grid .c-post__grid--content h3.c-post__grid--titleBigger {
    font-size: 1.6rem;
  }
}
.c-post__grid .c-post__grid--author.--bigger {
  font-size: 1.5rem;
}
@media only screen and (max-width: 767px) {
  .c-post__grid .c-post__grid--author.--bigger {
    font-size: 1.4rem;
  }
}
.c-post__grid .c-post__grid--add.--bigger {
  font-size: 1.2rem;
  display: inline-block;
  padding: 2px 10px 2px 0;
}
.c-load {
  margin-top: 47.5px;
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-load {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .c-load {
    margin-top: 10px;
    width: 100%;
  }
}
.c-load a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  height: 62.5px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
.c-load a:after {
  font-family: fontello;
  content: "\F006";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
}
.c-load a:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}
@media only screen and (max-width: 767px) {
  .c-load a {
    height: 42.5px;
    font-size: 1.2rem;
  }
}
.c-search {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  top: 82px;
  height: 93px;
  left: 0;
  right: 0;
  z-index: 999;
  display: none;
}
.c-search.is-active {
  display: block;
}
@media only screen and (min-width: 991px) and (max-width: 1220px) {
  .c-search {
    top: 72px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 990px) {
  .c-search {
    top: 93px;
  }
}
@media only screen and (max-width: 767px) {
  .c-search {
    height: 69px;
    top: 73px;
  }
}
.c-search form {
  position: absolute;
  width: 70%;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 10%;
}
@media only screen and (max-width: 767px) {
  .c-search form {
    width: 95%;
  }
}
.c-search form input[type="text"] {
  width: 100%;
  background-color: #fff;
  border: none;
  padding: 10px;
  height: 56px;
}
@media only screen and (max-width: 767px) {
  .c-search form input[type="text"] {
    height: 40px;
  }
}
.c-search form button {
  width: 56px;
  height: 56px;
  cursor: pointer;
  border: none;
  z-index: 99;
  position: absolute;
  right: 10%;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-search form button {
    width: 40px;
    height: 40px;
  }
}
.c-search form button i {
  font-family: fontello;
  color: #000;
  font-style: normal;
  font-size: 2rem;
  font-weight: normal;
}
.c-search form button i:before {
  content: "\E802";
}
.c-user__cover {
  width: 100%;
  height: 170px;
}

.c-user__cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.c-user__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -5px;
}
@media only screen and (max-width: 767px) {
  .c-user__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-user__list:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.c-user__item {
  width: calc(100% / 3);
  padding: 0 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-user__item {
    width: 100%;
  }
}
.c-user__item--inner {
  background-color: #fff;
  position: relative;
}
.c-user__item h3 {
  font-size: 1.7rem;
  text-align: center;
  -webkit-transform: translateY(-31.5px);
  -ms-transform: translateY(-31.5px);
  transform: translateY(-31.5px);
  padding-top: 20px;
}
.c-user__avatar {
  width: 63px;
  height: 63px;
  margin: 0 auto;
  border: 1px solid #43474e;
  -webkit-transform: translateY(-31.5px);
  -ms-transform: translateY(-31.5px);
  transform: translateY(-31.5px);
  position: relative;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .c-user__avatar {
    width: 90px;
    height: 90px;
    -webkit-transform: translateY(-45.5px);
    -ms-transform: translateY(-45.5px);
    transform: translateY(-45.5px);
  }
}
.c-user__avatar img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.c-video__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 -5px;
}
@media only screen and (max-width: 767px) {
  .c-video__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-video__list:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.c-video__item {
  width: calc(100% / 3);
  padding: 0 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .c-video__item {
    width: 100%;
  }
}
.c-video__item figure {
  position: relative;
}
.c-video__item figure span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.c-video__item--inner {
  background-color: #fff;
  position: relative;
}
.c-video__title {
  font-size: 1.7rem;
  line-height: 2.1rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.c-video__content {
  padding: 10px 15px;
}
.c-video__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.c-video__author--avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 7px;
}
.c-video__author h4 {
  font-size: 1.5rem;
}
.c-video__add {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-video__add img {
  margin-right: 5px;
}
.l-singlePage {
  background-color: #fff;
}

.c-single {
  word-break: break-all;
}
.c-single ._date {
  font-weight: bold;
  font-size: 1.2rem;
}
.c-single ._headline {
  font-size: 2.8rem;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .c-single ._headline {
    font-size: 2.4rem;
    margin-bottom: 10px;
  }
}
.c-single ._category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.c-single ._category span {
  display: block;
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 3px 10px;
  margin-right: 5px;
}
.c-single ._tag a {
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  margin-right: 10px;
	border: 1px solid #d2d2d2;
	color: #969696;
	padding: 2px 6px;
}
.c-single ._taxonomy {
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .c-single ._taxonomy {
    padding: 10px;
  }
}
.c-single ._taxonomy ._avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  width: 50px;
  height: auto;
  overflow: hidden;
  margin-right: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.c-single ._taxonomy ._avatar img {
  width: 35px;
}
@media only screen and (max-width: 767px) {
  .c-single ._taxonomy ._avatar {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
  }
}
.c-single ._taxonomy ._avatar--position {
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
}
.c-single ._taxonomy ._avatar--name {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin: 5px 0;
}
.c-single ._taxonomy ._avatar--sub {
  font-size: 1.2rem;
}
.c-single ._taxonomy ._avatar--text {
  font-size: 1.2rem;
}
.c-single ._taxonomy ._avatar--description {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.92917rem;
}
.c-single .sns {
  position: fixed;
  top: 50%;
  left: 0px;
  right: 0;
  transform: translate(-650px, -50%);
  margin: auto;
  width: 40px;
}
.c-single .sns ul li {
  margin: 15px 0;
}
/*.c-single .sns ul li img{
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}*/
.c-single .sns ul li:hover img {
  transform: scale(1.1);
  transition: all 0.3s;
}
.c-single .sns ul li span {
  display: none;
}
.c-single .sns_more {
  display: none;
}
.c-single .sns_copy {
  display: none;
}
.c-single .sns_copy textarea {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-single .sns {
    bottom: 0px;
    left: 0;
    right: inherit;
    transform: inherit;
    top: inherit;
    width: 100%;
    z-index: 9;
  }
  .c-single .sns ul {
    display: flex;
    position: relative;
    z-index: 2;
    padding: 20px 0;
  }
  .c-single .sns ul li {
    margin: 0 10px;
  }
  .c-single .sns ul li:nth-child(4) {
    display: none;
  }
  .c-single .sns ul li:nth-child(5) {
    display: none;
  }
  .c-single .sns ul li:nth-child(6) {
    display: none;
  }
  .c-single .sns ul li:nth-child(7) {
    display: none;
  }
  .c-single .sns ul li img {
    width: 40px;
  }
  .c-single .sns_more {
    display: block;
  }
  .c-single .sns_copy {
    display: block;
  }
  .c-single .sns.is-active ul {
    background: #fff;
    justify-content: center;
  }
  .c-single .sns.is-active .sns_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  .c-single .sns.is-active ul li {
    display: block;
  }
  .c-single .sns.is-active ul li span {
    display: block;
    font-size: 1rem;
    margin: 5px -5px 0;
    text-align: center;
  }
  .c-single .sns.is-active ul li.sns_more {
    position: absolute;
    top: -50px;
    right: 0px;
    width: 50px;
    height: 50px;
    margin: 0;
    background-image: url("../images/icon/ico_close.svg");
    background-size: 50px auto;
    background-position: left -5px top -5px;
  }
  .c-single .sns.is-active ul li.sns_more img {
    display: none;
  }
  .c-single .sns.is-active ul li.sns_copy.showMes:after {
    content: "copied";
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    margin: auto;
    background-color: #000;
    color: #fff;
    width: 160px;
    padding: 10px;
    font-size: 1.2rem;
    text-align: center;
    border-radius: 5px;
  }
}
.c-page .entry,
.c-single ._content {
  margin-bottom: 40px;
  margin-top: 20px;
}
.c-page .entry h2,
.c-single ._content h2 {
  border-bottom: 2px solid #d6dadd;
  font-size: 2.4rem;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.c-page .entry h2:before,
.c-single ._content h2:before {
  height: 2px;
  background-color: #000;
  width: 80px;
  position: absolute;
  content: "";
  bottom: -2px;
}
@media only screen and (max-width: 767px) {
  .c-page .entry h2,
  .c-single ._content h2 {
    font-size: 2rem;
    border-bottom: 1px solid #d6dadd;
    margin-bottom: 15px;
  }
  .c-page .entry h2:before,
  .c-single ._content h2:before {
    height: 1px;
    bottom: -1px;
  }
}
.c-page .entry h3,
.c-single ._content h3 {
  border-left: 3px solid #000;
  padding-left: 15px;
  margin-bottom: 15px;
  font-size: 2rem;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  .c-page .entry h3,
  .c-single ._content h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
}
.c-page .entry h4,
.c-single ._content h4 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .c-page .entry h4,
  .c-single ._content h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.c-page .entry h5,
.c-single ._content h5 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.c-page .entry h6,
.c-single ._content h6 {
  margin-bottom: 15px;
  line-height: 1.4;
}

.c-page .entry ul,
.c-single ._content ul {
  margin-bottom: 20px;
  list-style: disc;
  margin-left: 15px;
}
.c-page .entry ol,
.c-single ._content ol {
  margin-bottom: 20px;
  list-style: none;
  counter-reset: my-awesome-counter;
}
.c-page .entry ol li,
.c-single ._content ol li {
  counter-increment: my-awesome-counter;
  margin-bottom: 5px;
}
.c-page .entry ol li:before,
.c-single ._content ol li:before {
  content: counter(my-awesome-counter) "";
  color: #fff;
  width: 22px;
  height: 22px;
  background-color: #000;
  font-size: 1.4rem;
  font-weight: normal;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.c-single ._paging {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 0;
}
@media only screen and (max-width: 767px) {
  .c-single ._paging {
    padding: 5px;
  }
}
.c-single ._paging ._line {
  background-color: #b0b0b0;
  height: 50px;
  width: 1px;
  margin: 0 25px;
}
@media only screen and (max-width: 767px) {
  .c-single ._paging ._line {
    margin: 0 10px;
  }
}
.c-single ._paging img {
  width: 100px;
  flex: 0 0 auto;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .c-single ._paging img {
    display: none;
  }
}
.c-single ._paging ._prev {
  width: 49%;
}
.c-single ._paging ._prev a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
  position: relative;
}
.c-single ._paging ._prev a:before {
  font-family: fontello;
  color: #fff;
  font-style: normal;
  font-size: 1.2rem;
  content: "\F007";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 10px;
}
.c-single ._paging ._prev img {
  margin-right: 20px;
}
.c-single ._paging ._next {
  width: 49%;
}
.c-single ._paging ._next a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.4rem;
}
.c-single ._paging ._next a:after {
  font-family: fontello;
  color: #fff;
  font-style: normal;
  font-size: 1.2rem;
  content: "\F006";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  height: 24px;
  background-color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
}
.c-single ._paging ._next img {
  margin-left: 20px;
}
.c-single ._relation {
  margin-top: 60px;
}
.c-single ._relation > h3 {
  font-size: 1.8rem;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.c-company__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .c-company__header {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.c-company__header figure {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  margin-right: 30px;
}
.c-company__header--content {
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .c-company__header figure {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    flex: inherit;
    width: 100%;
  }
  .c-company__header figure img {
    max-width: 120px;
    width: 100%;
    margin: 0 auto;
  }
}
.c-company__header h3,
.c-company__header h1 {
  line-height: 1;
  font-size: 2.18958rem;
  margin-bottom: 7px;
}
.c-company__header p {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2.23958rem;
}
.c-company__header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.c-company__header ul li {
  margin-right: 20px;
}
.c-company__header ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.c-company__header ul li i {
  font-family: fontello;
  color: #333;
  font-style: normal;
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 1;
}
.c-company__header ul li.twitter i:before {
  content: "\F099";
}
.c-company__header ul li.facebook i:before {
  content: "\F09A";
}
.c-company__header ul li.inst i:before {
  content: "\F16D";
}
.c-company__header ul li.youtube i:before {
  content: "\F167";
}
.c-company__header ul li.link i:before {
  content: "\e805";
}
.c-company__nav {
  margin-top: 30px;
  margin-bottom: 32.5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #d6dadd;
  border-bottom: 1px solid #d6dadd;
  white-space: nowrap;
  overflow-x: auto;
}
.c-company__nav a {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 20px 20px;
  position: relative;
}
.c-company__nav a:hover,
.c-company__nav a.is-active {
  border-bottom: 2px solid #333;
}
@media only screen and (max-width: 767px) {
  .c-company__nav a {
    padding: 10px 15px;
  }
}
.c-author__header {
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.c-author__box{
 	border: 2px solid #f5f5f5;
    padding: 30px 20px;
    margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .c-author__box {
    padding: 15px 10px;
    margin-bottom: 25px;
	}
}
.c-author__header figure {
  width: 75px;
  height: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75px;
  flex: 0 0 75px;
  overflow: hidden;
  margin-right: 20px;
}
.c-author__header figure img {
	width: 75px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-author__header figure {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
  }
}
.c-author ._name {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 5px;
}
.c-author ._text {
  font-size: 1.2rem;
}
.c-author p {
  font-size: 1.4rem;
  margin-top: 7px;
  line-height: 1.4;
}
._writer--link {
  display: block;
}
._writer--link:after {
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  opacity: 0;
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
._writer--link:hover:after {
  opacity: 0.3;
}
.author .s-mainTitle {
  height: 380px;
}

.author .s-mainTitle img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media only screen and (max-width: 767px) {

  .c-author__header figure {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0px;
  }

  .author .s-mainTitle {
    height: 200px;
  }
}

/* 404
---------------------------------------------------- */
.p-404 {
  background-color: #efefef;
  padding: 100px 0 100px;
  text-align: center;
  font-size: 1.8rem;
}
.p-404__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.p-404__text {
  margin-bottom: 30px;
}
.p-404 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #000;
  height: 62.5px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  color: #fff;
}
.p-404 a:after {
  font-family: fontello;
  content: "\F006";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
}
.p-404 a:hover {
  background-color: #fff;
  color: #000;
}

/* Page Search
---------------------------------------------------- */
.pageSearch-tlt {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .pageSearch-tlt {
    font-size: 2rem;
  }
}
.pageSearch-tlt:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ddd;
  height: 2px;
}
.pageSearch-tlt:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 200px;
  width: 100%;
  background: #333;
  height: 2px;
}
.pageSearch-note {
  margin-top: 15px;
}
.pageSearch-form form {
  position: relative;
}
.pageSearch-form input {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  height: 56px;
  font-size: 1.6rem;
}
.pageSearch-form button {
  width: 56px;
  height: 56px;
  cursor: pointer;
  border: none;
  z-index: 99;
  position: absolute;
  right: 0;
  background: #000;
}
.pageSearch-form button i {
  font-family: fontello;
  color: #fff;
  font-style: normal;
  font-size: 2rem;
  font-weight: normal;
}
.pageSearch-form button i:before {
  content: "\E802";
}

/* 01-07-2021 */

.c-page .entry p,
.c-single ._content p {
  margin-bottom: 20px;
  line-height: 2;
}

#toc_container {
  padding: 1em 2em 1em !important;
  min-width: 90%;
  margin: auto;
  background: #fff !important;
  background: rgba(255, 255, 255, 0.5) !important;
  border: 1px solid #eee;
}

div#toc_container {
  width: 100% !important;
  margin-bottom: 30px;
}

#toc_container ul {
  margin: 0 !important;
  border: none;
}

#toc_container ul.toc_list {
  margin-top: 1em !important;
}

#toc_container li a {
  display: block;
  padding: 0.5em 0;
  border-top: 1px dotted #ddd;
}

#toc_container li li a {
  padding-left: 0.7em;
}

#toc_container a {
  text-decoration: none;
  text-shadow: none;
}

#toc_container p.toc_title {
  position: relative;
  padding: 0 65px;
}

.c-single .toc_toggle,
.page-layout .toc_toggle {
  font-size: 0 !important;
  top: 50%;
  left: calc(100%);
  height: 26px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-indent: -9999px;
}

.c-single .toc_toggle a,
.page-layout .toc_toggle a {
  position: absolute;
  right: 0;
  top: 0;
  text-indent: 0;
  display: inline-block;
  text-align: center;
  border: none;
  cursor: pointer;
  line-height: 1;
  font-size: 10px;
  color: #707070;
  background-color: #f2f2f2;
  padding: 8px 12px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  text-decoration: none;
}

.c-single .toc_toggle a:after,
.page-layout .toc_toggle a:after {
  display: none;
}

.textlimit {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
._rm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #d9d9d9;
  height: 62.5px;
  font-size: 1.6rem;
  position: relative;
  -webkit-transition: 0.3s all ease-in-out;
  -o-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}
._rm:after {
  font-family: fontello;
  content: "\F006";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
}
._rm:hover {
  background-color: #000;
  color: #fff;
  border: 2px solid #000;
}
.c-page h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
}
.c-page p {
  margin-bottom: 10px;
}
.mw_wp_form {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.mw_wp_form dl {
  display: flex;
  padding: 39px 0px 38px;
  border-bottom: 1px solid #e5e5e5;
  align-items: center;
}
.mw_wp_form dl dt {
  width: 28%;
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.mw_wp_form dl dd {
  width: 72%;
}
.mw_wp_form dl dd input[type="text"],
.mw_wp_form dl dd input[type="number"],
.mw_wp_form dl dd input[type="email"],
.mw_wp_form dl dd textarea,
.mw_wp_form dl dd select {
  width: 100%;
  border: none;
  background: #f7f7f8;
  min-height: 68px;
  padding: 15px;
  font-family: inherit;
  font-size:1.6rem;
}
.mw_wp_form dl dd select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
}
.mw_wp_form dl dd.select {
  position: relative;
}
.mw_wp_form dl dd.select:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #000000 transparent transparent transparent;
  content: "";
  position: absolute;
  right: 10px;
  top: 32px;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form dl dd.select:after {
    top: 20px;
  }
}
.mw_wp_form_confirm.mw_wp_form dl dd.select:after {
  display: none;
}
.mw_wp_form dl dd.input-tel span {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mw_wp_form dl dd.input-tel span input[type="text"] {
  width: calc(100% / 3 - 10px);
}
.mw_wp_form .btn input[type="submit"] {
  display: block;
  outline:none;
  border-radius:0;
  border: none;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  width: 360px;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 0;
  padding: 25px 0px;
  font-family: inherit;
  font-size: 1.6rem;
}
.mw_wp_form .btn input[type="submit"]:hover {
  background: #fff;
  color: #000;
}
.mw_wp_form .btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.p-thanks_txt {
	text-align: center;
}
.p-thanks_txt a {
  border: 1px solid #000;
  margin-top: 30px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  height: 60px;
  background: #000;
  color: #fff;
  margin: 0 auto;
  transition: 0.2s ease;
  max-width: 100%;
  letter-spacing: 0.4em;
}
.p-thanks_txt a:hover {
  background: #fff;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .mw_wp_form dl {
    flex-wrap: wrap;
    padding: 20px 0;
  }
  .mw_wp_form dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .mw_wp_form dl dd {
    width: 100%;
  }
  .mw_wp_form dl dd input[type="text"],
  .mw_wp_form dl dd input[type="number"],
  .mw_wp_form dl dd input[type="email"],
  .mw_wp_form dl dd textarea,
  .mw_wp_form dl dd select {
    min-height: 45px;
    padding: 10px;
  }
  .mw_wp_form .btn {
    margin-top: 30px;
  }
  .mw_wp_form .btn input[type="submit"] {
    padding: 15px 0px;
  }
}
.mw_wp_form .is-error {
  color: #b70000 !important;
  background-color: #f2dede !important;
  border: 2px solid #b70000 !important;
}
.mw_wp_form .error {
  font-size: 1.4rem !important;
  line-height: 1.8 !important;
  color: #b70000 !important;
  display: block !important;
}

.logo-sp {
  display: none;
  margin-right: 10px;
}
@media only screen and (max-width: 991px) {
  .logo-sp {
    display: block;
  }
}

/* 03-08-2021 */
table th,
table td {
  border: 1px solid;
  padding: 0.5em;
}

.wp-block-table {
  margin-bottom: 20px;
}

.pagination {
  margin-top: 50px;
}

.pagination .page-of {
  display: none;
}

.pagination .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination .pn-numbers,
.pagination .current,
.pagination .pn-next,
.pagination .pn-prev,
.pagination .m-next,
.pagination .m-prev {
  height: 50px;
  width: 50px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  margin: 0 5px;
  border: 1px solid #333;
  font-weight: bold;
  color: #333;
}

.pagination .current {
  background: #333;
  color: #fff;
}

.mw_wp_form .btn input[type="submit"].btn-back{
	background: #ccc;
    border-color: #ccc;
}

/* 04-01-2021 */
.sp{
	display:none;
}
@media only screen and (max-width: 767px){
	.sp{
		display:block;
	}
	
	.pc{
		display:none;
	}
	
	.c-author ._name {
		font-size: 1.7rem;
		line-height: 1.3;
		margin-bottom: 2px;
	}
	
	.c-author__header--content{
		flex:auto;
	}
	
	.c-author__header figure img{
		width:75px;
		margin: 0 0;
	}
	
	.c-author__header figure{
		width: 75px;
		flex: 0 0 75px;
    margin-right:20px;
	}
	
	.c-author p{
		font-size: 1.2rem;
	}

  .c-author__header{
    align-items: center;
  }
}

/* 04-02-2021 */
.page-about .head p{
  font-size:2.4rem;
  font-weight:bold;
  text-align:center;
  margin-bottom:50px;
}

.page-about .middle{
  width:100%;
  height:578px;
  background:url('../images/about_img.png') no-repeat;
  background-size:cover;
    display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom:70px;
  background-position: center;
}

.page-about .middle .content{
  margin-bottom:30px;
}

.page-about .middle .content p{
  font-size:2.4rem;
  color:#fff;
  line-height:1.75;
  text-align:center;
  font-weight:bold;
}


.page-about .bot{
  text-align:center;
}

.page-about .bot .bot_p1{
  font-weight:500;
  font-size:1.6rem;
  line-height:1.8;
  margin-bottom:40px;
}


.page-about .bot .bot_p2{
  font-weight:bold;
  font-size:3.2rem;
  margin-bottom:40px;
}

.page-about .bot .bot_p3{
  font-size:2.2rem;
  font-weight: bold;
  line-height:2;
}

@media only screen and (max-width: 767px){
  .page-about .head p{
    font-size:2rem;
    margin-bottom:30px;
  }

  .page-about .middle .content p{
    font-size:2rem;
  }

  .page-about .middle{
    height:500px;
    align-items: flex-start;
    margin-bottom:35px;
  }

  .page-about .middle .content{
    margin-bottom:0;
    margin-top: 45px;
  }

  .page-about .bot .bot_p1{
    font-size:1.5rem;
    margin-bottom:20px;
  }

  .page-about .bot .bot_p2{
    font-size: min(6vw,3.2rem);
    margin-bottom:20px;
  }

  .page-about .bot .bot_p3{
    font-size:1.6rem;
  }

  .page-id-272 .c-page h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .page-about .middle{
    height:auto;
    background:transparent;
    display:block;
  }

  .page-about .middle .content{
    display:none;
  }

  .page-about .middle img{
    width:100%;
  }
}


.c-breadcrumb a, .c-breadcrumb span{
  color: #a2a2a2;
  letter-spacing: 0.1rem;
}

.author .s-mainTitle{
	height:0;
	position:relative;
	padding-top: 16.875%;
}

.author .s-mainTitle img{
	position:absolute;
	top:0;
	left:0;
}

/* .c-post__author--avatar{
	overflow:initial;
}

.c-post__author--avatar{
	height:auto;
} */

/* 04-14-2021 */
.c-post__grid--add a{
  margin:0 10px 5px 0;
}

.widget_tag_cloud .c-sidebar__content a{
  margin-bottom:5px;
}

._rm {
  margin-bottom:30px;
}

/* 04-16-2021 */
@media only screen and (min-width: 768px){
  .s-mv .c-post__big figure{
    height:600px;
  }

  .c-post__item figure img{
    height:152px;
  }
}

.c-header__logo{
  text-align:center;
}

.c-header__logo img{
  width:220px;
  height:auto;
}

@media screen and (max-width: 767px){
  .s-mv .c-post__big figure{
    height:250px;
  }
}

/* 05-27-2021 */
.l-company{
  display: flex;
  justify-content: space-between;
  word-break: break-all;
}

.l-company__block{
  border: 1px solid #C9C9C9;
  width: 48.63%;
  padding: 100px 70px 110px;
}

.l-company__block .logo{
    min-height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
}

.l-company__block .row{
  display: flex;
  font-size: 1.6rem;
  line-height: 1.34;
  margin-bottom: 15px;
}

.l-company__block .row:last-child{
  margin-bottom:0;
}

.l-company__block .row .head{
  font-weight: bold;
  flex: 0 0 72.5px;
}

.l-company__block .row a{
  transition:.3s ease;
}

.l-company__block .row a:hover{
  opacity: 0.7;
}

@media screen and (max-width:1024px){
  .l-company__block{
    padding: 70px 20px 80px;
  }

  .l-company__block .logo{
    margin-bottom:50px;
  }
}

@media only screen and (max-width: 767px){
  .l-company{
    display:block;
  }

  .l-company__block{
    width:515px;
    max-width:100%;
    margin:0 auto 30px;
  }

  .l-company__block:last-child{
    margin-bottom:0;
  }

  .l-company__block{
    padding:40px 20px;
  }

  .l-company__block .logo{
    min-height:100%;
    margin-bottom:30px;
  }
}

/* 05-28-2021 */
@media only screen and (min-width: 768px){
  .l-company{
    margin:0 -40px;
  }
}

/* 06-15-2021 */
.wp-block-embed__wrapper{
/*   padding-bottom:56.25%; */
}
.wp-block-embed__wrapper iframe{
/*   position:absolute;
  top:0;
  left:0;
  height:100%;
  width:100%; */
}

/* 07-10-2021 */
.c-single ._taxonomy {
  padding-left: 0;
}

/*  07-12-2021 */
._avatar--content{
  flex:auto;
}

/* 07-15-2021 */
.c-user__list{
  flex-wrap:wrap;
}

/* 08-11-2021 */
.c-single p a {
  transition: .3s ease;
  color: #0693e3;
  border-bottom: 1px solid #0693e3;
}

.c-single p a:hover{
  opacity: 0.7;
}

/* 08-18-2021 */
.c-user__avatar{
  opacity: 0;
}

/* 02-03-2022 */
.seminar_thumbnail {
  margin-bottom: 50px;
}
.seminar_content dl {
  display: flex;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.seminar_content dl dt {
  font-weight: bold;
  width: 105px;
  flex: 0 0 105px;
}
.seminar_content dl dd p {
  font-size: 1.6rem;
}
.seminar_item {
  display: flex;
  margin-bottom: 30px;
}
.seminar_img {
  flex: 0 0 155px;
  width: 155px;
  margin-right: 25px;
}
.seminar_list {
  margin-top: 15px;
  margin-bottom: 30px;
}
.c-single ._content .seminar_i h4 {
  font-size: 2rem;
  margin-bottom: 10px;
}
.seminar_form {
  margin-top: 30px;
}
.seminar_label {
  font-size: 1.7rem;
  position: relative;
  font-weight: bold;
  margin-top: 20px;
}
.seminar_label:after {
  content: "必須";
  background-color: #EA4739;
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  width: 40px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  margin-left: 5px;
}
.seminar_input input[type="text"], .seminar_input input[type="tel"], .seminar_input input[type="email"] {
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 5px;
  
  height: 42px;
  padding: 5px;
}
.seminar_form input[type="checkbox"] {
  -webkit-appearance: auto;
}
.seminar_bottom {
  width: 440px;
  height: 70px;
  margin: 0 auto;
  display: block;
  position: relative;
  margin-top: 40px;
}
.seminar_form input[type="submit"] {
  background-color: #3B63CA;
  color: #fff;
  cursor: pointer;
  padding: 0;
  border: none;
  border-radius: 35px;
  font-family: inherit;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  height: 100%;
}
.seminar_form input[type="submit"]:hover {
  opacity: 0.7;
}
.seminar_bottom:after {
  content: '';
  background: url(../images/seminar-arrow.svg) no-repeat left top;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 40px;
  background-size: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.seminar-sidebar {
  border-radius: 4px;
  border: 1px solid #999;
  background-color: #fff;
  width: 100%;
  padding: 30px 40px 36px;
  border-radius: 8px;
	position: sticky;
	top: 95px;
}
.seminar-banner {
  margin: 30px;
  border-bottom: 1px solid #999;
  font-size: 2.5rem;
  line-height: 1.3;
  text-align: center;
  padding: 40px 0;
  font-weight: bold;
}
.r_content_ttl {
  padding: 26px 0 23px;
  width: 270px;
  margin: 0 auto;
  text-align: center;
  font-size: 27px;
  line-height: 35px;
  word-break: normal;
}
.subcont_line_under {
  padding-top: 15px;
  border-top: 1px solid #CCCCCC;
}
.ex_info_data .ex_info_para {
  font-size: 12px;
  color: #858585;
}

.ex_supp {
  margin-top: 28px;
}
.ex_supp_accordion p {
  text-align: center;
  font-size: 1.4rem;
}
.ex_supp_accordion span {
  display: inline-block;
  text-decoration: underline;
  position: relative;
  cursor: pointer;
  padding-right: 20px;
}

.ex_supp_accordion span::after {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  position: absolute;
  transform: rotate(45deg);
  right: 5px;
  top: 5px;
  transition: transform 0.2s ease;
}
.btn_area {
  margin-top: 24px;
}
.btn_area .btn {
  display: block;
  text-align: center;
  border-radius: 37px;
  margin: 0 auto;
  padding: 15px 0;
  color: #fff;
}
.btn_area a:hover {
  opacity: 0.7;
}
.btn_area .login_btn {
  display: block;
  text-align: center;
  border-radius: 37px;
  margin: 20px auto 0;
  padding: 15px 0;
  border: solid 2px;
}
.doc_dl.doc_ex_acc {
  margin-top: 27px;
}
.doc_dl {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
}
.doc_dl.doc_ex_acc p {
  font-size: 15px;
  letter-spacing: -1px;
}
.doc_dl a {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .seminar_content dl dt {
    width: 75px;
    flex: 0 0 75px;
  }
  .seminar_form {
    margin: 0;
  }
  .seminar_bottom {
    width: 100%;
  }
	.seminar-sidebar {
		display: none;
	}
	.seminar_img {
		flex: 0 0 95px;
		width: 95px;
		margin-right: 10px;
	}
}

/* チェックボックス01 */
input[type=checkbox] {
    display: none;
}
.checkbox01 {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
	font-weight: bold;
}
.checkbox01::before {
    background: #fff;
    border: 1px solid #bebebe;
    content: '';
    display: block;
    height: 16px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 50%;
    width: 16px;
    border-radius: 2px;
}
.checkbox01::after {
    border-right: 3px solid #EA4739;
    border-bottom: 3px solid #EA4739;
    content: '';
    display: block;
    height: 9px;
    left: 10px;
    margin-top: -7px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 5px;
}
input[type=checkbox]:checked + .checkbox01::after {
    opacity: 1;
}

.seminar_form input[type="submit"].btn-disable {
	background-color: #eee;
	pointer-events: none;
}

.seminar_form .privacy {
	background-color: #f5f5f5;
	padding:  20px;
}
.seminar_form .btn-check {
	text-align: center;
}

/* 05-19-2022 */
.s-main--custom {padding-bottom: 0;}

.s-main--custom .c-breadcrumb {margin-top: 100px;}

.s-main--custom ._tag {margin-top: 30px;}

@media only screen and (max-width: 767px){
    .s-main--custom .c-breadcrumb{
        margin-top:50px;
    }
}

/* 05-31-2022 */
.h-search {
  background: transparent;
  border: none;
  font-size: 2rem;
  margin-right: 20px;
  cursor: pointer;
  color:#000;
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #333;
  z-index: 10000;
  display:none;
}

.c-modal__content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 25px 20px;
}

.c-modal__content .logo {
  max-width: 242.5px;
  margin: 0 auto 70px;
}

.modal-search__wrap {
  max-width: 560px;
  margin: 0 auto;
}

.c-modal__search .search-field {
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #FFF;
  line-height: 1;
  font-weight: 300;
  width: 100%;
  border: none;
  font-size: 3.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 21px;
  letter-spacing: 1px;
  outline: none;
}

.c-modal__search .search-submit {
  position:
  absolute;
  top: 50%;
  right: 0;
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  font-size: 3rem;
  transform: translateY(-50%);
  line-height: 1;
  right: 20px;
}

.c-modal__search .search-form {
  position: relative;
}

.c-modal__search {
  margin-bottom: 70px;
}

.c-modal__tags .title {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 30px;
  font-weight: bold;
}

.c-modal__tags .tags a {
  color: #fff;
  font-size: 1.6rem;
  margin-right: 25px;
  margin-bottom: 20px;
  line-height: 1;
  display: inline-block;
}

.c-modal__tags .tags a:hover{
  opacity:0.7;
}

.c-modal__close {
  position: absolute;
  right: 30px;
  border: none;
  background: transparent;
  font-size: 2.6rem;
  font-weight: bold;
  top:30px;
  cursor: pointer;
  color:#fff;
}

@media screen and (max-width: 767px){
  .h-search {
    margin-right: 0;
    font-size: 2rem;
  }

  .c-modal__content .logo {
    max-width: 200px;
  }
  
  .c-modal__close{
    top:30px;
    right:15px;
    font-size:2rem;
  }

  .c-modal__search .search-field{
    font-size:2rem;
    padding:20px 15px;
  }

  .c-modal__search .search-submit{
    font-size:2rem;
    right:10px;
  }

  .c-modal__tags .title{
    font-size:1.8rem;
  }

  .c-modal__tags .tags a{
    font-size:1.5rem;
  }
}

.l-header--top{
  overflow:hidden;
}

.l-header--top .l-header__main {
  flex-wrap: wrap;
  flex-direction: column-reverse;
  height: auto;
}

.l-header--top .c-tabs--header {
  width: 100%;
  margin-bottom: 0;
  position: relative;
  background-color: #f7f7f7;
  position: relative;
  border: none;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.l-header--top .c-header__stuff {
  width: 100%;
  justify-content: flex-end;
  margin: 20px 0 30px;
}

.l-header--top .c-header__logo img, .l-header--top .c-header__logo .logo {
  top: 25px;
  transform: translateX(-50%);
}

.l-header--top .c-header__logo .logo img{
  transform:none;
}

.l-header--top .c-tabs--header::before {
  content: '';
  position: absolute;
  width: 50vw;
  left: -25vw;
  background: #f7f7f7;
  height: 100%;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  z-index: -1;
  top:-1px;
}

.l-header--top .c-tabs--header::after{
  content: '';
  position: absolute;
  width: 50vw;
  top:-1px;
  right: -25vw;
  background: #f7f7f7;
  height: 100%;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
  z-index: -1;
}

.l-header--top .c-tabs--header li {
  width: auto;
}

.l-header--top .c-tabs--header {
  text-align: center;
  justify-content: center;
}

.l-header--top .c-tabs--header li a {
  border-right: none;
  background: transparent;
  padding: 0 25px;
  font-size: 1.4rem;
  position: relative;
}

.l-header--top .c-tabs--header li a.is-active {
  background: transparent;
}

.l-header--top .c-tabs--header li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  opacity: 0;
  transition: .3s ease;
}

.l-header--top .c-tabs--header li a:hover::after {
  opacity: 1;
}

.l-header--top .c-tabs--header li a.is-active::after {
  opacity: 1;
}

.l-header--top.is-fixed .l-header__main{
  flex-wrap:
  nowrap;
  flex-direction: row;
}

.l-header--top.is-fixed .c-header__logo img, .l-header--top.is-fixed .c-header__logo .logo {
  position: static;
  transform: none;
  left: 0;
}

.l-header--top.is-fixed .c-header__logo .logo img{
  position:static;
}

.l-header--top.is-fixed .c-tabs--header {
  background: transparent;
  border: none;
  justify-content: center;
  width: auto;
  flex: auto;
}

.l-header--top.is-fixed .c-tabs--header::before {
  display: none;
}

.l-header--top.is-fixed .c-tabs--header::after {
  display: none;
}

.l-header--top.is-fixed .c-header__logo {
  flex-shrink: 0;
}

.l-header--top.is-fixed .c-tabs--header a {
  font-size: 1.2rem;
  padding: 0 15px;
}

.l-header--top.is-fixed .c-header__stuff {
  margin: 0;
  width: auto;
}

@media screen and (min-width: 768px) and (max-width: 990px){
  .l-header--top .c-header__menu {
      position: fixed;
      top: 10px;
      left: 5px;
  }

  .h-search{
    font-size:2rem;
    margin-right:10px;
  }

  .l-header--top .c-header__stuff{
    margin:15px 0 25px;
  }

  .l-header--top.is-fixed .c-header__logo {
      margin-left: 75px;
  }
}

@media only screen and (max-width: 767px){
  .l-header--top .c-header__menu {
    position: fixed;
    top: 10px;
    left: 5px;
  }

  .l-header--top .c-header__logo img{
    top:20px;
  }

  .l-header--top .c-header__logo .logo{
    top:5px;
  }

  .l-header--top .c-header__logo .logo img{
    transform:none;
  }

  .l-header--top .c-header__logo a {
    top: 0;
    transform: translateX(-50%);
  }

  .l-header--top .c-header__stuff{
    margin:10px 0 0;
  }

  .l-header--top .c-tabs--header {
    margin-top: 25px;
  }

  .l-header--top .c-tabs--header li a {
    font-size: 1.1rem;
    padding: 0 7px;
  }

  .l-header--top.is-fixed .c-header__logo img, .l-header--top.is-fixed .c-header__logo .logo{
    position: absolute;
  }
  
  .l-header--top.is-fixed .c-header__logo .logo{
    top:5px;
    margin:0 auto;
    right:0;
  }

  .l-header--top.is-fixed .c-tabs--header a{
    padding:9px 7px;
    height:auto;
    font-size:1.1rem;
  }

  .l-header--top.is-fixed .h-search {
    position: fixed;
    top: 30px;
    right: 5px;
  }

  .l-header--top.is-fixed .c-tabs--header {
      margin-top: 50px;
  }
  .l-header--top{
    padding:5px 10px;
  }
}

aside#search-3 {
  display: none;
}

aside#tag_cloud-2 {
  display: none;
}

body.home .s-main {
  padding-top: 0;
}

body.home .s-mv {
  padding-top: 20px;
}

@media screen and (max-width: 767px){
  body.home .s-mv {
    padding-top: 10px;
  }
}

/* 08-17-2022 */
.c-single ._taxonomy ._avatar img {
    border-radius: 50%;
    height: 35px;
    object-fit: cover;
    object-position: top;    
}

.c-post__author--avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.widget-title span::before {
    display: none!important;
}

.widget-title {    
    border-bottom: 2px solid #999;
    height: auto!important;
    padding-bottom: 10px;
    font-size: 2rem!important;    
    font-family: futura-pt, sans-serif;
    font-weight: 500!important;
}

.widget-title span{
  font-family:inherit;
  font-weight: inherit;  
}

.c-footer__top {
    background: #999;
    padding: 40px 0;
}

.c-footer__bottom {
    background: #1a1a1a;
    padding-top: 30px;
}

@media screen and (max-width: 767px){
	.c-footer__top {    
		padding: 30px 0;
	}
}

/* 10-04-2022 */
@media screen and (max-width: 767px) {
  .s-mv_slider .c-post__big {
    width: 82vw;
    max-width: 300px;
    margin: 0 2vw;
  }

  .s-mv_slider .c-post__big figure {
    height: auto;
    padding: 26%;
    position: relative;
    overflow: hidden;
  }

  .s-mv_slider .c-post__big--content {
    left: 0;
    position: relative;
    z-index: 1;
    top: -20px;
    right: 0;
    bottom: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    min-height: 50%;
    margin: 0 15px;
  }

  .s-mv_slider .slick-track {
    display: flex !important;
  }

  .s-mv_slider .slick-slide {
    height: inherit !important;
  }

  .s-mv .slick-dots {
    margin-top: 15px;
  }

  .s-mv_slider .c-post__big--top {
    margin-bottom: 7px;
  }

  .s-mv_slider .c-post__big--title {
    padding-bottom: 0.3em;
    transition: background 0.4s;
    transition-delay: 0.5s;
    text-decoration: none;
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  body.home .s-mv .container {
    width: 100%;
  }

  .s-mv_slider .c-post__big {
    width: 82vw;
    margin: 0 2vw;
  }

  .c-post__big--content {
    left: 0;
    margin: 0 30px;
  }
}

/* 10-14-2022 */
@media screen and (min-width: 768px) {
  .s-mv_slider .c-post__big {
    max-width: 769.24px;
  }

  .s-mv_slider .c-post__big figure {
    height: auto;
    padding: 26%;
    position: relative;
    overflow: hidden;
  }
}

/* 02-21-2023 */
.c-post__go:hover {
  opacity: 0.3;
}

.c-post__go {
  opacity: 0;
  background: #fff;
  font-size: 0;
  transition: 0.3s all ease-in-out;
}

@media screen and (max-width: 767px) {
  .c-post__go, .c-post__link:after{
    opacity:0!important;
  }

  .c-sidebar__post li a{
    opacity: 1!important;
  }
}

/* 02-21-2023 */
.c-tabLinks {
  display: flex;
  justify-content: center;    
}

.c-tabLink {
  width: 50%;
  border: none;
  background: transparent;
  font-size: 14px;
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid #999;
  cursor: pointer;
  transition: .3s ease;
  color: #aeb7b8;
}

.widget_tab_widget .widget-title {
  border: none;
}

.c-tabLink.is-active {
  border-color: #000;
  color:#000;
}

.c-tabContent {
  display: none;
}

.c-tabLink:hover {
  opacity: .7;
}

/* 05-26-2023 */
.wp-block-embed.aligncenter.wp-block-embed-twitter {
  width: 500px;
  margin: 0 auto;
  max-width: 100%;
}

/* 05-30-2023 */
.c-company__header ul li.note img {
  width: 26px;
}

.c-companyTable dt {
  font-weight: bold;
  flex-basis: 210px;
  flex-shrink: 0;
  padding-right: 15px;
}

.c-companyTable {
  font-size: 14px;
}

.c-companyTable dl {
  display: flex;
  margin-bottom: 5px;
}

.c-companyTable dl:last-child {
  margin-bottom: 0;
}

.c-company .c-companyTable {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .c-companyTable dt {
    flex-basis: 90px;
  }
}