@charset "UTF-8";
/*
Theme Name : localgoals
Theme URI :
Author: SCARAMANGA INC.
Author URI: http://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

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

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: '';
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
  color: #070707;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: .01em;
  line-height: 1.98;
  position: relative;
  display: block;
  background-color: #ffffff;
}

@media screen and (max-width: 979px) {
  body {
    width: 100%;
    background-color: #ffffff;
    line-height: 2;
  }
}

canvas {
  vertical-align: bottom;
  display: block;
  width: 100%;
}

canvas.flipped {
  transform: rotate(180deg);
}

a {
  color: #070707;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 979px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 980px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 1179px) {
  .pc_tab_only {
    display: none !important;
  }
}

@media screen and (min-width: 1180px) {
  .tab_only {
    display: none !important;
  }
}

@media screen and (max-width: 1179px) {
  .nav-pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 1180px) {
  .nav-sp_only {
    display: none !important;
  }
}

.font_small {
  font-size: 80%;
}

/* animate
---------------------------------------------------------------------------------------*/
.bounce_in,
.fade_in,
.fade_in_up,
.fade_in_down,
.fade_in_left,
.fade_in_right {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_bounce {
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*!------------------------------------*
fadeInUp
\*!------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*!------------------------------------*
fadeInDown
\*!------------------------------------*/
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/*!------------------------------------*
fadeInLeft
\*!------------------------------------*/
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  -webkit-animation-name: adeInLeft;
  animation-name: fadeInLeft;
}

/*!------------------------------------*
fadeInRight
\*!------------------------------------*/
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

/* _header
---------------------------------------------------------------------------------------*/
.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  background: #ffffff;
}

@media screen and (max-width: 979px) {
  .header {
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    border-radius: 0;
    padding: 0;
  }
}

.header .header_description {
  position: absolute;
  top: 3px;
  left: 15px;
  font-size: 1.2rem;
}

.header .header_inr {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header .header_inr .left_area {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-top: 15px;
}

@media screen and (max-width: 979px) {
  .header .header_inr .left_area {
    margin-top: 0;
  }
}

.header .header_inr .left_area .header_logo {
  width: 120px;
  margin: 10px 10px 10px 20px;
}

@media screen and (max-width: 979px) {
  .header .header_inr .left_area .header_logo {
    width: 120px;
    margin: 0 10px;
  }
}

.header .header_inr .left_area .header_logo a {
  display: block;
}

.header .header_inr .left_area .header_logo a:hover {
  opacity: 0.7;
}

.header .header_inr .left_area .left_area_nav {
  position: relative;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 979px) {
  .header .header_inr .left_area .left_area_nav {
    display: none;
  }
}

.header .header_inr .left_area .left_area_nav li {
  margin: 0 10px;
}

.header .header_inr .left_area .left_area_nav li:hover .child_menu {
  visibility: visible;
}

.header .header_inr .left_area .left_area_nav li a {
  display: block;
  font-size: 1.35rem;
  font-weight: bold;
  color: #070707;
}

.header .header_inr .left_area .left_area_nav li a:hover {
  color: #B9B9B9;
}

.header .header_inr .left_area .left_area_nav li .child_menu {
  width: 300px;
  position: absolute;
  top: 100%;
  /* 親項目の直下に配置 */
  left: 0;
  padding: 25px;
  color: #333;
  /* 文字色 */
  background: #ffffff;
  /* 背景色 */
  visibility: hidden;
}

.header .header_inr .left_area .left_area_nav li .child_menu li {
  margin: 0 0 10px;
}

.header .header_inr .right_area {
  display: -webkit-flex;
  display: flex;
}

.header .header_inr .right_area .right_area_nav {
  display: -webkit-flex;
  display: flex;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_01 {
  background: #daf400;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_01 a {
  color: #070707;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_02 {
  background: #f7f6f5;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_02 a {
  color: #070707;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_03 {
  background: #2D2D2D;
}

.header .header_inr .right_area .right_area_nav li.right_area_nav_03 a {
  color: #ffffff;
}

.header .header_inr .right_area .right_area_nav li a {
  display: block;
  font-size: 1.35rem;
  font-weight: bold;
  height: 90px;
  line-height: 1.35;
  text-align: center;
  padding: 0 30px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (max-width: 1179px) {
  .header .header_inr .right_area .right_area_nav li a {
    padding: 0 20px;
  }
}

@media screen and (max-width: 979px) {
  .header .header_inr .right_area .right_area_nav li a {
    height: 70px;
    width: 70px;
    line-height: 1.35;
    font-size: 1.1rem;
    padding: 0 6px;
    text-align: center;
  }
  .header .header_inr .right_area .right_area_nav li a span {
    display: block;
  }
}

.header .header_inr .right_area .right_area_nav li a:hover {
  color: #B9B9B9;
}

.header .header_inr .right_area .search_box {
  margin: 20px;
}

@media screen and (max-width: 979px) {
  .header .header_inr .right_area .search_box {
    display: none;
  }
}

.header .header_inr .right_area .search_box .searchform {
  position: relative;
}

.header .header_inr .right_area .search_box .searchfield {
  font-size: 1.6rem;
  width: 100%;
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  background-color: #FAFAFA;
  border: 1px solid #d4d4d4;
}

.header .header_inr .right_area .search_box .searchsubmit {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 0;
  cursor: pointer;
  background-image: url("images/ico-search-b.svg");
  background-color: #FAFAFA;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.header .header_inr .right_area .search_box .searchsubmit:hover {
  opacity: 0.6;
}

.sp_menu {
  margin-top: 70px;
}

.sp_menu ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sp_menu ul li {
  width: 33.3333%;
}

.sp_menu ul li a {
  height: 60px;
  display: block;
  line-height: 1.2;
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.sp_menu ul li.right_area_nav_01 {
  background: #daf400;
}

.sp_menu ul li.right_area_nav_01 a {
  color: #070707;
}

.sp_menu ul li.right_area_nav_02 {
  background: #f7f6f5;
}

.sp_menu ul li.right_area_nav_02 a {
  color: #070707;
}

.sp_menu ul li.right_area_nav_03 {
  background: #2D2D2D;
}

.sp_menu ul li.right_area_nav_03 a {
  color: #ffffff;
}

.g_nav.active {
  right: 0 !important;
}

.g_nav {
  position: fixed;
  box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
  width: 70%;
  max-width: 300px;
  height: 100vh;
  top: 0;
  right: -100%;
  background: white;
  z-index: 998;
  overflow: scroll;
  padding: 120px 20px 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.g_nav .search_box {
  margin: 20px 0;
}

.g_nav .search_box .searchform {
  position: relative;
}

.g_nav .search_box .searchfield {
  font-size: 1.6rem;
  width: 100%;
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  background-color: #FAFAFA;
  border: 1px solid #d4d4d4;
}

.g_nav .search_box .searchsubmit {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 0;
  cursor: pointer;
  background-image: url("images/ico-search-b.svg");
  background-color: #FAFAFA;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.g_nav .search_box .searchsubmit:hover {
  opacity: 0.6;
}

.g_nav .nav_01 .action {
  background: url("images/dummy.jpg") left center no-repeat;
  background-size: 20px;
  padding-left: 26px;
}

.g_nav .nav_01 .assist {
  background: url("images/dummy.jpg") left center no-repeat;
  background-size: 20px;
  padding-left: 26px;
}

.g_nav ul {
  border-bottom: 1px solid #070707;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.g_nav ul li {
  margin: 10px 0;
}

.g_nav ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.g_nav ul li a {
  display: block;
  font-weight: bold;
  color: #070707;
  font-size: 1.35rem;
}

.g_nav ul li a:hover {
  color: #B9B9B9;
}

.g_nav ul .log_out a {
  color: #f7f6f5;
}

.g_nav .copy {
  font-size: 1.1rem;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  color: #f7f6f5;
}

@media screen and (max-width: 979px) {
  .g_nav {
    width: 70%;
    padding: 90px 20px 0;
  }
}

/*----------ハンバーガーアイコン----------*/
.hamburger_area {
  width: 90px;
  height: 90px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #070707;
  position: relative;
}

@media screen and (max-width: 979px) {
  .hamburger_area {
    width: 70px;
    height: 70px;
  }
}

.hamburger_area:hover {
  cursor: pointer;
}

.hamburger {
  display: block;
  position: absolute;
  top: 35px;
  left: 30px;
  width: 31px;
  height: 16px;
  z-index: 99999;
}

@media screen and (max-width: 979px) {
  .hamburger {
    top: 26px;
    left: 15px;
    width: 40px;
    height: 16px;
  }
}

.hamburger .hamburger_line {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  border-radius: 10px;
}

@media screen and (max-width: 979px) {
  .hamburger .hamburger_line {
    background: #ffffff;
  }
}

.hamburger .hamburger_line:nth-of-type(1) {
  top: 0;
}

.hamburger .hamburger_line:nth-of-type(2) {
  top: 7px;
}

.hamburger .hamburger_line:nth-of-type(3) {
  bottom: 0;
}

.hamburger p {
  margin-top: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
}

.active .hamburger_line:nth-of-type(1) {
  top: -4px;
}

.active .hamburger_line:nth-of-type(3) {
  bottom: 0 !important;
}

.hamburger .hamburger_line:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}

.hamburger .hamburger_line:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

.hamburger .hamburger_line:nth-of-type(3) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.active .hamburger_line:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
}

.active .hamburger_line:nth-of-type(2) {
  opacity: 0;
}

.active .hamburger_line:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(30deg);
  }
}

@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(30deg);
  }
}

@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
}

@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}

/* _page
---------------------------------------------------------------------------------------*/
.main {
  margin-top: 90px;
}

@media screen and (max-width: 979px) {
  .main {
    margin-top: 0;
  }
}

.row_wrap {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

@media screen and (max-width: 979px) {
  .row_wrap {
    display: block;
  }
}

.row_wrap .main_area {
  width: 100%;
  padding-right: 5%;
}

@media screen and (max-width: 979px) {
  .row_wrap .main_area {
    padding: 0;
  }
}

.row_wrap .side_area {
  flex-basis: 30%;
}

@media screen and (max-width: 979px) {
  .row_wrap .side_area {
    width: 100%;
  }
}

.row_wrap .side_area .current-cat a {
  color: #C40816;
}

.row_wrap .side_area .side_area_block {
  margin-bottom: 35px;
}

.row_wrap .side_area .side_area_block ul li {
  margin: 7px 0;
  font-size: 1.4rem;
}

.wrapper {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  word-break: break-word;
}

.wrapper .main_nav {
  width: 290px;
  padding: 0 20px;
}

@media screen and (max-width: 1179px) {
  .wrapper .main_nav {
    width: 100%;
  }
}

.wrapper .main_nav .tag_area {
  margin: 45px 0 70px;
}

.wrapper .main_nav .tag_area h3 {
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 10px;
}

.wrapper .main_nav .tag_area .tag_list {
  line-height: 1.7;
}

.wrapper .main_nav .tag_area .tag_list li {
  display: inline-block;
  vertical-align: top;
  margin: 5px 10px 0 0;
}

.wrapper .main_nav .tag_area .tag_list li a {
  display: block;
  font-size: 1.2rem;
}

.wrapper .main_nav .tag_area .tag_list li a:before {
  content: "#";
}

.wrapper .main_nav .btn_action a {
  display: block;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  background: #daf400;
  color: #070707;
}

.wrapper .main_nav .btn_assist a {
  display: block;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 5px;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  background: #2D2D2D;
  color: #ffffff;
}

.wrapper .main_area {
  width: -webkit-calc(100% - 290px);
  width: calc(100% - 290px);
  padding: 0 20px;
}

@media screen and (max-width: 1179px) {
  .wrapper .main_area {
    width: 100%;
    padding: 0;
  }
}

.search_area {
  margin-bottom: 40px;
  /* styles */
}

@media screen and (max-width: 1179px) {
  .search_area {
    background: #FAFAFA;
    width: -webkit-calc(100% + 40px);
    width: calc(100% + 40px);
    margin: -30px -20px 40px;
    padding: 20px;
  }
  .search_area .search_area_inr {
    border: 1px solid #d4d4d4;
    padding: 20px;
  }
  .search_area .tag_area {
    border: 1px solid #d4d4d4;
    padding: 5px 15px;
    margin: 15px 0 0 !important;
  }
}

.search_area .search_box {
  margin-bottom: 20px;
}

.search_area .search_box h3 {
  font-weight: bold;
  font-size: 1.6rem;
  position: relative;
  margin-bottom: 10px;
}

@media screen and (max-width: 1179px) {
  .search_area .search_box h3 {
    margin: 10px 0;
  }
}

.search_area .search_box h3:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 1179px) {
  .search_area .search_box h3:after {
    right: 10px;
  }
}

.search_area .search_box h3.search_box_active:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 1179px) {
  .search_area .search_box h3.search_box_active:after {
    right: 10px;
  }
}

@keyframes radio-select {
  0% {
    transform: scale(0, 0);
  }
  65% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

.search_area label {
  display: block;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0 0 18px;
}

.search_area input[type="radio"],
.search_area input[type="checkbox"] {
  height: 1px;
  width: 1px;
  opacity: 0;
}

.search_area .outside_radio {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  width: 22px;
  height: 22px;
  border: 2px solid #CCCCCC;
  border-radius: 50%;
  box-sizing: border-box;
  background: #F3F3F3;
}

.search_area .inside_radio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #070707;
  left: 3px;
  top: 3px;
  transform: scale(0, 0);
}

.no-transforms .search_area .inside_radio {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.search_area input[type="radio"] {
  /*  &:focus, &:active {
      + .outside {
        border-color: $almost-black;
      }
    }*/
}

.search_area input[type="radio"]:checked + .outside_radio .inside_radio {
  animation: radio-select 0.1s linear;
  transform: scale(1, 1);
}

.no-transforms .search_area input[type="radio"]:checked + .outside_radio .inside_radio {
  width: 12px;
  height: 12px;
}

.search_area .outside_check {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -11px;
  width: 22px;
  height: 22px;
  border: 2px solid #CCCCCC;
  box-sizing: border-box;
  background: #F3F3F3;
}

.search_area .inside_check {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #070707;
  left: 3px;
  top: 3px;
  transform: scale(0, 0);
}

.no-transforms .search_area .inside_check {
  left: auto;
  top: auto;
  width: 0;
  height: 0;
}

.search_area input[type="checkbox"] {
  /*  &:focus, &:active {
      + .outside {
        border-color: $almost-black;
      }
    }*/
}

.search_area input[type="checkbox"]:checked + .outside_check .inside_check {
  animation: radio-select 0.1s linear;
  transform: scale(1, 1);
}

.no-transforms .search_area input[type="checkbox"]:checked + .outside_check .inside_check {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 1179px) {
  .search_area .tag_area h3:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #070707;
    border-right: solid 1px #070707;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -8px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}

@media screen and (max-width: 1179px) and (max-width: 979px) {
  .search_area .tag_area h3:after {
    right: 15px;
  }
}

@media screen and (max-width: 1179px) {
  .search_area .tag_area h3.search_box_active:after {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #070707;
    border-right: solid 1px #070707;
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -5px;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}

@media screen and (max-width: 1179px) and (max-width: 979px) {
  .search_area .tag_area h3.search_box_active:after {
    right: 15px;
  }
}

@media screen and (max-width: 1179px) {
  .search_area .tag_area .search_box_inr {
    display: none;
  }
}

.search_area .close h3:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .search_area .close h3:after {
    right: 15px;
  }
}

.search_area .close h3.search_box_active:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .search_area .close h3.search_box_active:after {
    right: 15px;
  }
}

.search_area .close .search_box_inr {
  display: none;
}

.btn_search {
  border: 0;
  color: #ffffff;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.6rem;
  padding: 15px 20px;
  width: 90%;
  margin: 0 auto;
  background: #070707;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  border-radius: 5px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .btn_search {
    width: 100%;
    margin-left: 0;
    border-radius: 5px;
    margin-top: 10px;
  }
}

.btn_search span {
  background: url("images/ico-search-w.svg") left center no-repeat;
  background-size: 18px;
  padding-left: 25px;
}

.btn_search:hover {
  opacity: 0.7;
}

.container {
  max-width: 1480px;
  margin: auto;
  padding: 0 25px;
}

@media screen and (max-width: 979px) {
  .container {
    padding: 0 15px;
  }
}

.min_container {
  max-width: 820px;
  margin: auto;
}

.form_container {
  max-width: 680px;
  margin: auto;
}

.breadcrumbs {
  font-size: 1.25rem;
  padding: 20px;
  margin-bottom: 15px;
}

@media screen and (max-width: 979px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs a {
  color: #B9B9B9;
  text-decoration: underline;
}

.page_section {
  margin: 120px auto;
}

@media screen and (max-width: 979px) {
  .page_section {
    margin: 45px auto 90px;
  }
}

.page_section .section_reed_area {
  margin: 45px 0;
}

@media screen and (max-width: 979px) {
  .page_section .section_reed_area {
    margin: 25px 0;
  }
}

.post_section {
  margin-bottom: 120px;
  width: 100%;
}

.post_section .cat_nav {
  margin-bottom: 60px;
}

@media screen and (max-width: 979px) {
  .post_section .cat_nav {
    margin-bottom: 35px;
  }
}

.post_section .cat_nav ul {
  text-align: center;
}

@media screen and (max-width: 979px) {
  .post_section .cat_nav ul {
    text-align: left;
  }
}

.post_section .cat_nav ul li {
  margin: 0 2px 5px;
  display: inline-block;
}

.post_section .cat_nav ul li a {
  border: 1px solid #070707;
  background: #070707;
  color: #ffffff;
  border-radius: 50px;
  padding: 6px 30px;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 979px) {
  .post_section .cat_nav ul li a {
    font-size: 1.3rem;
    padding: 5px 15px;
  }
}

.post_section .cat_nav ul li a:hover {
  border: 1px solid #d4d4d4;
  background: #ffffff;
  color: #070707;
}

.post_section .cat_nav ul .current-cat a {
  border: 1px solid #d4d4d4;
  background: #ffffff;
  color: #070707;
}

.post_section .cat_nav .children {
  display: none;
}

.page_title {
  background: #070707;
  text-align: center;
  margin-top: 90px;
  padding: 60px 20px;
  position: relative;
}

@media screen and (max-width: 979px) {
  .page_title {
    margin-top: 0;
    padding: 35px 20px;
    margin-bottom: 30px;
  }
}

.page_title h1,
.page_title p {
  color: #ffffff;
  font-size: 2.7rem;
  font-weight: bold;
  display: inline-block;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 979px) {
  .page_title h1,
  .page_title p {
    font-size: 1.6rem;
  }
}

.section_title {
  margin-bottom: 45px;
}

@media screen and (max-width: 979px) {
  .section_title {
    margin-bottom: 25px;
    text-align: center;
  }
}

.section_title h2 {
  font-size: 3rem;
  line-height: 1.56;
  font-weight: bold;
}

@media screen and (max-width: 979px) {
  .section_title h2 {
    font-size: 2rem;
  }
}

.section_title p {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 979px) {
  .section_title p {
    font-size: 1rem;
  }
}

.section_title p:before {
  content: "";
  width: 22px;
  height: 1px;
  background: #070707;
  margin: 0 8px 4px 0;
  display: inline-block;
}

.section_title span {
  max-width: 110px;
  margin: 20px auto;
  display: block;
}

.goal01 a {
  background: #e5243b;
}

.goal02 a {
  background: #DDA63A;
}

.goal03 a {
  background: #4C9F38;
}

.goal04 a {
  background: #C5192D;
}

.goal05 a {
  background: #FF3A21;
}

.goal06 a {
  background: #26BDE2;
}

.goal07 a {
  background: #FCC30B;
}

.goal08 a {
  background: #A21942;
}

.goal09 a {
  background: #FF3A21;
}

.goal10 a {
  background: #DD1367;
}

.goal11 a {
  background: #FD9D24;
}

.goal12 a {
  background: #BF8B2E;
}

.goal13 a {
  background: #3F7E44;
}

.goal14 a {
  background: #0A97D9;
}

.goal15 a {
  background: #56C02B;
}

.goal16 a {
  background: #00689D;
}

.goal17 a {
  background: #19486A;
}

.goal_tag {
  margin-top: 10px;
}

.goal_tag span {
  padding: 3px 12px;
  border-radius: 2px;
  margin: 0 5px 5px 0;
  font-size: 1rem;
  display: inline-block;
  color: #ffffff;
}

.goal_tag .goal01 {
  background: #e5243b;
}

.goal_tag .goal02 {
  background: #DDA63A;
}

.goal_tag .goal03 {
  background: #4C9F38;
}

.goal_tag .goal04 {
  background: #C5192D;
}

.goal_tag .goal05 {
  background: #FF3A21;
}

.goal_tag .goal06 {
  background: #26BDE2;
}

.goal_tag .goal07 {
  background: #FCC30B;
}

.goal_tag .goal08 {
  background: #A21942;
}

.goal_tag .goal09 {
  background: #FF3A21;
}

.goal_tag .goal10 {
  background: #DD1367;
}

.goal_tag .goal11 {
  background: #FD9D24;
}

.goal_tag .goal12 {
  background: #BF8B2E;
}

.goal_tag .goal13 {
  background: #3F7E44;
}

.goal_tag .goal14 {
  background: #0A97D9;
}

.goal_tag .goal15 {
  background: #56C02B;
}

.goal_tag .goal16 {
  background: #00689D;
}

.goal_tag .goal17 {
  background: #19486A;
}

.term-goal01 .page_title {
  background: #e5243b;
}

.term-goal02 .page_title {
  background: #C5192D;
}

.term-goal03 .page_title {
  background: #4C9F38;
}

.term-goal04 .page_title {
  background: #C5192D;
}

.term-goal05 .page_title {
  background: #FF3A21;
}

.term-goal06 .page_title {
  background: #26BDE2;
}

.term-goal07 .page_title {
  background: #FCC30B;
}

.term-goal08 .page_title {
  background: #A21942;
}

.term-goal09 .page_title {
  background: #FF3A21;
}

.term-goal10 .page_title {
  background: #DD1367;
}

.term-goal11 .page_title {
  background: #FD9D24;
}

.term-goal12 .page_title {
  background: #BF8B2E;
}

.term-goal13 .page_title {
  background: #3F7E44;
}

.term-goal14 .page_title {
  background: #0A97D9;
}

.term-goal15 .page_title {
  background: #56C02B;
}

.term-goal16 .page_title {
  background: #00689D;
}

.term-goal17 .page_title {
  background: #19486A;
}

.post-type-archive-matching .page_title {
  background: #daf400;
}

.post-type-archive-matching .page_title h1 {
  color: #070707;
}

.post-type-archive-report .page_title {
  background: #f7f6f5;
}

.post-type-archive-report .page_title h1 {
  color: #070707;
}

.post-type-archive-column .page_title {
  background: #2D2D2D;
}

.post-type-archive-column .page_title h1 {
  color: #ffffff;
}

.search .page_title {
  background: #070707 !important;
}

.btn_more_list {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (max-width: 1179px) {
  .btn_more_list {
    display: block;
  }
}

.btn_more_list .btn_more {
  margin: 20px;
}

.btn_more {
  text-align: center;
  margin: 30px auto;
}

@media screen and (max-width: 979px) {
  .btn_more {
    margin: 20px auto 30px;
  }
}

.btn_more a {
  text-align: center;
  display: inline-block;
  position: relative;
  min-width: 220px;
  padding: 0.8em 5em;
  font-size: 1.45rem;
  background: #070707;
  border-radius: 5px;
  color: #ffffff;
  font-weight: bold;
}

@media screen and (max-width: 979px) {
  .btn_more a {
    min-width: auto;
    width: 80%;
    padding: 1em 4em;
    font-size: 1.3rem;
  }
}

.btn_more a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -3px;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn_more a:after {
  content: '';
  width: 26px;
  height: 26px;
  border: 0;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -12px;
  z-index: 1;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn_more a:hover {
  opacity: 0.6;
}

.btn_back {
  text-align: center;
  margin: 60px auto;
}

@media screen and (max-width: 979px) {
  .btn_back {
    margin: 20px auto 30px;
  }
}

.btn_back a {
  text-align: center;
  display: inline-block;
  position: relative;
  min-width: 260px;
  padding: 1.5em 5em;
  font-size: 1.45rem;
  background: #070707;
  border-radius: 40px;
  color: #ffffff;
  font-weight: bold;
}

@media screen and (max-width: 979px) {
  .btn_back a {
    min-width: auto;
    width: 80%;
    padding: 1em 4em;
    font-size: 1.3rem;
  }
}

.btn_back a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  left: 25px;
  margin-top: -6px;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn_back a:after {
  content: '';
  width: 26px;
  height: 26px;
  border: 0;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 15px;
  margin-top: -15px;
  z-index: 1;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn_back a:hover {
  opacity: 0.6;
}

.reed_area {
  text-align: center;
  line-height: 2.2;
  margin-bottom: 60px;
}

@media screen and (max-width: 979px) {
  .reed_area {
    margin: 30px auto;
    text-align: left;
  }
}

.post_list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  width: 100%;
  gap: 45px 3.5%;
  margin-bottom: 60px;
}

@media screen and (max-width: 1179px) {
  .post_list {
    gap: 25px 4%;
  }
}

@media screen and (max-width: 979px) {
  .post_list {
    gap: 25px 4%;
    margin-bottom: 35px;
  }
}

.post_list .search_none {
  text-align: center;
}

.post_list .col_3 {
  width: 31%;
}

@media screen and (max-width: 1179px) {
  .post_list .col_3 {
    width: 48%;
  }
}

@media screen and (max-width: 979px) {
  .post_list .col_3 {
    width: 48%;
  }
}

.post_list .col_2 {
  width: 31%;
}

@media screen and (max-width: 979px) {
  .post_list .col_2 {
    width: 48%;
  }
}

.post_list .post_card {
  position: relative;
  display: block;
}

.post_list .post_card a {
  display: block;
}

.post_list .post_card a .thum {
  position: relative;
  margin: 0 0 5px;
}

@media screen and (max-width: 979px) {
  .post_list .post_card a .thum {
    margin: 0 auto;
  }
}

.post_list .post_card a .thum img {
  width: 100%;
  width: 100%;
  border-radius: 7px;
  position: relative;
  z-index: 1;
  box-shadow: rgba(100, 100, 111, 0.2) 0 3px 19px 0;
}

.post_list .post_card a .thum .status {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 10px;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.post_list .post_card a .thum .status p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  color: #ffffff;
}

.post_list .post_card a:hover .thum img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  border-radius: 10px;
}

.post_list .post_card a:hover .status {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  border-radius: 10px;
}

.post_list .post_card a .post_type_name {
  position: absolute;
  bottom: -18px;
  left: 10px;
  z-index: 3;
}

.post_list .post_card a .post_type_name span {
  padding: 2px 18px;
  font-size: 1.3rem;
  font-weight: bold;
  border-radius: 10px;
  display: inline-block;
  margin: 0 3px 3px 0;
}

@media screen and (max-width: 1179px) {
  .post_list .post_card a .post_type_name {
    left: 0;
    font-size: 1.1rem;
  }
}

.post_list .post_card a .post_type_name.post span {
  background: #ffffff;
  color: #2D2D2D;
}

.post_list .post_card a .post_type_name.matching span {
  background: #daf400;
  color: #070707;
}

.post_list .post_card a .post_type_name.report span {
  background: #f7f6f5;
  color: #070707;
}

.post_list .post_card a .post_type_name.column span {
  background: #2D2D2D;
  color: #ffffff;
}

.post_list .post_card a .tag_area {
  line-height: 1.45;
}

@media screen and (max-width: 979px) {
  .post_list .post_card a .tag_area {
    display: none;
  }
}

.post_list .post_card a .tag_area span {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #2D2D2D;
  display: inline-block;
}

.post_list .post_card a .tag_area span:before {
  content: "#";
}

.post_list .post_card a .date {
  text-align: right;
  font-size: 1.2rem;
  color: #B9B9B9;
  margin-top: 10px;
}

@media screen and (max-width: 1179px) {
  .post_list .post_card a .date {
    margin-top: 15px;
  }
}

.post_list .post_card a .company_name {
  margin: 10px 0 5px;
  font-size: 1.3rem;
  border-bottom: 1px solid #070707;
}

.post_list .post_card a .tit {
  font-size: 2rem;
  line-height: 1.68;
  font-weight: bold;
  margin: 5px 0 10px;
}

@media screen and (max-width: 979px) {
  .post_list .post_card a .tit {
    font-size: 1.3rem;
    margin: 5px 0;
  }
}

.post_list .post_card a .the_excerpt {
  font-size: 1.2rem;
}

.post_list .text_center {
  width: 100%;
}

.other_post {
  margin-top: 120px;
}

@media screen and (max-width: 979px) {
  .other_post {
    margin-top: 45px;
  }
}

.count_area {
  background: #fcfcfc;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.count_area .cat_name {
  color: #ffffff;
  font-size: 1.6rem;
  display: inline-block;
  background: #070707;
  padding: 6px 40px;
  border-radius: 50px;
}

@media screen and (max-width: 979px) {
  .count_area .cat_name {
    font-size: 1.2rem;
    padding: 3px 10px;
  }
}

.count_area .cat_name_area {
  margin-bottom: 10px;
}

.count_area .cat_name_area span {
  font-size: 1.4rem;
  font-weight: bold;
  color: #070707;
  margin-right: 8px;
}

.count_area .cat_name_area span:before {
  content: "#";
}

.topics_list {
  margin: auto;
}

.topics_list .topics_card {
  display: -webkit-flex;
  display: flex;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px dotted #070707;
}

@media screen and (max-width: 979px) {
  .topics_list .topics_card {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
  }
}

.topics_list .topics_card:last-child {
  border-bottom: none;
}

@media screen and (max-width: 979px) {
  .topics_list .topics_card:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.topics_list .topics_card .inr {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

.topics_list .topics_card .inr .date {
  display: inline-block;
  width: 100px;
  font-size: 1.4rem;
  color: #070707;
}

@media screen and (max-width: 979px) {
  .topics_list .topics_card .inr .date {
    width: 75px;
    font-size: 1rem;
  }
}

.topics_list .topics_card .inr .cat {
  border: 1px solid #070707;
  border-radius: 20px;
  color: #070707;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  margin: 0 30px;
  width: 120px;
}

@media screen and (max-width: 979px) {
  .topics_list .topics_card .inr .cat {
    font-size: 1rem;
  }
}

.topics_list .topics_card a {
  display: block;
  color: #070707;
  font-size: 1.8rem;
  position: relative;
  width: -webkit-calc(100% - 280px);
  width: calc(100% - 280px);
}

@media screen and (max-width: 979px) {
  .topics_list .topics_card a {
    width: 100%;
    font-size: 1.4rem;
    font-weight: bold;
    display: block;
    margin-top: 7px;
  }
}

.topics_list .topics_card a:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -6px;
  z-index: 2;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.topics_list .topics_card a:hover {
  color: #B9B9B9;
}

.topics_list .topics_card a:hover:after {
  right: 20px;
}

.cat_area {
  margin-bottom: 60px;
}

@media screen and (max-width: 979px) {
  .cat_area {
    margin-bottom: 35px;
  }
}

.cat_area ul {
  text-align: center;
}

@media screen and (max-width: 979px) {
  .cat_area ul {
    text-align: left;
  }
}

.cat_area ul li {
  margin: 0 2px 5px;
  display: inline-block;
}

.cat_area ul li a {
  border: 1px solid #d4d4d4;
  border-radius: 50px;
  padding: 12px 40px;
  text-align: center;
  font-size: 1.6rem;
}

@media screen and (max-width: 979px) {
  .cat_area ul li a {
    font-size: 1.4rem;
    padding: 5px 15px;
  }
}

.cat_area ul li a:hover {
  border: 1px solid #070707;
  background: #070707;
  color: #ffffff;
}

.cat_area ul .current-cat a {
  border: 1px solid #070707;
  background: #070707;
  color: #ffffff;
}

/* pagination
---------------------------------------------------------------------------------------*/
.pagination {
  clear: both;
  text-align: center;
  position: relative;
}

.pagination .screen-reader-text {
  display: none;
}

.pagination .page-numbers {
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;
  font-weight: bold;
  color: #070707;
}

@media screen and (max-width: 979px) {
  .pagination .page-numbers {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}

.pagination .page-numbers:hover {
  opacity: 0.6;
}

.pagination .current {
  background: #070707;
  color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
}

.pagination .next,
.pagination .prev {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  width: auto !important;
  height: auto !important;
  line-height: auto !important;
}

@media screen and (max-width: 979px) {
  .pagination .next,
  .pagination .prev {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 979px) {
  .pagination .next .txt,
  .pagination .prev .txt {
    display: none;
  }
}

.pagination .next {
  position: absolute;
  top: 17px;
  right: 0;
}

@media screen and (max-width: 979px) {
  .pagination .next {
    top: 25px;
  }
}

.pagination .prev {
  position: absolute;
  top: 17px;
  left: 0;
}

@media screen and (max-width: 979px) {
  .pagination .prev {
    top: 25px;
  }
}

.pagination .btn_prev {
  padding-left: 10px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .pagination .btn_prev {
    padding-left: 10px;
  }
}

.pagination .btn_prev .ico_btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.pagination .btn_prev .ico_btn:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -12px;
}

.pagination .btn_prev:hover {
  margin-left: -10px;
}

.pagination .btn_next {
  text-align: right;
  padding-right: 46px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .pagination .btn_next {
    padding-right: 46px;
  }
}

.pagination .btn_next .ico_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 34px;
}

.pagination .btn_next .ico_btn:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -12px;
}

.pagination .btn_next:hover {
  margin-right: -10px;
}

/* post-nav
---------------------------------------------------------------------------------------*/
.post-nav {
  border-top: 1px solid #070707;
  border-bottom: 1px solid #070707;
  margin: 90px auto 0;
  padding: 0 20px;
}

.post-nav ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-nav ul li {
  width: 50%;
  padding: 20px 0;
}

@media screen and (max-width: 979px) {
  .post-nav ul li {
    width: 100%;
  }
}

.post-nav ul li h4 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 0.4em;
}

.post-nav ul .prev {
  border-right: 1px solid #070707;
  padding-right: 20px;
}

@media screen and (max-width: 979px) {
  .post-nav ul .prev {
    border-bottom: 1px solid #070707;
    border-right: none;
  }
}

.post-nav ul .next {
  text-align: right;
  padding-left: 20px;
}

.post-nav .fa-home {
  display: none;
}

.policy_block {
  margin: 60px 0;
}

@media screen and (max-width: 979px) {
  .policy_block {
    margin: 45px;
  }
}

.article_404 {
  text-align: center;
  padding: 160px 25px;
}

@media screen and (max-width: 979px) {
  .article_404 {
    padding: 120px 25px;
  }
}

.article_404 .article_404_title {
  margin-bottom: 3em;
}

.article_404 .article_404_title h1 {
  font-size: 2.2rem;
  margin: 2em 0;
}

.article_404 .article_404_reed {
  line-height: 2.2;
  margin-bottom: 4em;
}

@media screen and (max-width: 979px) {
  .article_404 .article_404_reed {
    text-align: left;
  }
}

.faq_list .ac_active:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .faq_list .ac_active:after {
    right: 15px;
  }
}

.faq_list .faq_block {
  margin: 0 auto 55px;
}

@media screen and (max-width: 979px) {
  .faq_list .faq_block {
    margin-bottom: 35px;
  }
}

.faq_list dt {
  position: relative;
  cursor: pointer;
  display: block;
  border-bottom: 1px dotted #070707;
  font-size: 1.7rem;
  font-weight: bold;
  padding: 12px 50px 12px 0;
  position: relative;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  align-items: center;
}

@media screen and (max-width: 979px) {
  .faq_list dt {
    padding: 12px 30px 12px 0;
    font-size: 1.4rem;
  }
}

.faq_list dt:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 2px #070707;
  border-right: solid 2px #070707;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

@media screen and (max-width: 979px) {
  .faq_list dt:after {
    right: 0;
  }
}

.faq_list dt .number {
  width: 30px;
  font-size: 2.6rem;
  color: #daf400;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 979px) {
  .faq_list dt .number {
    font-size: 2rem;
    width: 30px;
    text-align: center;
  }
}

.faq_list dt .inr {
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  padding-left: 10px;
  line-height: 1.7;
}

@media screen and (max-width: 979px) {
  .faq_list dt .inr {
    padding-left: 10px;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.faq_list dt:hover {
  color: #070707;
}

.faq_list dd {
  border-radius: 15px;
  margin-top: 30px;
}

@media screen and (max-width: 979px) {
  .faq_list dd {
    padding: 12px 0;
  }
}

.faq_list dd .inr {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq_list dd .inr .number {
  width: 30px;
  font-size: 2.6rem;
  color: #070707;
  font-weight: bold;
  line-height: 1;
}

@media screen and (max-width: 979px) {
  .faq_list dd .inr .number {
    font-size: 2rem;
    width: 30px;
    text-align: center;
  }
}

.faq_list dd .inr .inr {
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
  padding-left: 10px;
  line-height: 1.7;
}

@media screen and (max-width: 979px) {
  .faq_list dd .inr .inr {
    padding-left: 10px;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

.faq_list .acMenu dd {
  display: none;
}

@media screen and (max-width: 979px) {
  .saboxplugin-wrap {
    padding: 0 !important;
  }
}

.gole_tag_search_area {
  padding: 25px;
  background: #FAFAFA;
}

@media screen and (min-width: 980px) {
  .gole_tag_search_area {
    display: none;
  }
}

.gole_tag_search_area .search_box {
  margin: 0 0 15px;
}

.gole_tag_search_area .search_box .searchform {
  position: relative;
}

.gole_tag_search_area .search_box .searchfield {
  font-size: 1.6rem;
  width: 100%;
  padding: 12px 22px;
  border: none;
  border-radius: 30px;
  background-color: #ffffff;
  border: 1px solid #d4d4d4;
}

.gole_tag_search_area .search_box .searchsubmit {
  position: absolute;
  top: 10px;
  right: 20px;
  padding: 0;
  cursor: pointer;
  background-image: url("images/ico-search-b.svg");
  background-color: #ffffff;
  background-size: cover;
  width: 20px;
  height: 20px;
}

.gole_tag_search_area .search_box .searchsubmit:hover {
  opacity: 0.6;
}

.gole_tag_search_area .goals_area {
  border: 1px solid #d4d4d4;
  padding: 5px 15px;
  background: #ffffff;
}

.gole_tag_search_area .goals_area h2 {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}

.gole_tag_search_area .goals_area .goals_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0 0;
  display: none;
}

.gole_tag_search_area .goals_area .goals_list li a {
  display: block;
  padding: 4px 10px;
  border-radius: 3px;
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.gole_tag_search_area .tag_area {
  border: 1px solid #d4d4d4;
  padding: 5px 15px;
  margin-top: 10px;
  background: #ffffff;
}

.gole_tag_search_area .tag_area h2 {
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
}

.gole_tag_search_area .tag_area .tag_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  display: none;
}

.gole_tag_search_area .tag_area .tag_list li {
  display: inline-block;
  vertical-align: top;
  margin: 10px 10px 0 0;
}

.gole_tag_search_area .tag_area .tag_list li a {
  display: block;
  font-size: 1.4rem;
}

.gole_tag_search_area .tag_area .tag_list li a:hover {
  opacity: 0.5;
}

.gole_tag_search_area .tag_area .tag_list li a:before {
  content: "#";
}

@media screen and (min-width: 980px) {
  .sp_acMenu {
    display: none;
  }
}

.sp_acMenu.close h2 {
  position: relative;
}

.sp_acMenu.close h2:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.sp_acMenu.close h2.sp_ac_active:after {
  content: '';
  width: 10px;
  height: 10px;
  border: 0;
  border-top: solid 1px #070707;
  border-right: solid 1px #070707;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -5px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.sp_acMenu .sp_acMenu_inr {
  display: none;
}

/* _footer
---------------------------------------------------------------------------------------*/
.sub_search_area {
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  padding: 35px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 979px) {
  .sub_search_area {
    padding: 35px 0;
  }
}

.sub_search_area .left_area {
  width: 60%;
  padding-right: 10%;
}

@media screen and (max-width: 979px) {
  .sub_search_area .left_area {
    width: 100%;
    padding: 0;
    margin-bottom: 45px;
  }
}

.sub_search_area .left_area .goals_area .goals_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

@media screen and (max-width: 979px) {
  .sub_search_area .left_area .goals_area .goals_list {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width: 979px) {
  .sub_search_area .left_area .goals_area .goals_list li {
    display: inline-block;
    vertical-align: top;
    list-style: none;
    height: auto;
    padding: 0;
    margin: 0;
  }
}

.sub_search_area .left_area .goals_area .goals_list li a {
  display: block;
  padding: 4px 20px;
  border-radius: 3px;
  margin: 0 5px 10px;
  font-size: 1.3rem;
  color: #ffffff;
}

.sub_search_area .right_area {
  width: 40%;
}

@media screen and (max-width: 979px) {
  .sub_search_area .right_area {
    width: 100%;
  }
}

.sub_search_area .right_area .tag_list li {
  display: inline-block;
  vertical-align: top;
  margin: 10px 10px 0 0;
}

.sub_search_area .right_area .tag_list li a {
  display: block;
  font-size: 1.4rem;
}

.sub_search_area .right_area .tag_list li a:hover {
  opacity: .5;
}

.sub_search_area .right_area .tag_list li a:before {
  content: "#";
}

.sub_search_area h2 {
  font-size: 2.2rem;
  font-weight: bold;
}

.produce_banner {
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.produce_banner h4 {
  font-size: 1.3rem;
  font-style: italic;
  font-weight: bold;
  font-family: serif;
  color: #B9B9B9;
}

.produce_banner ul li {
  display: inline-block;
  margin: 10px 20px;
  vertical-align: middle;
}

.produce_banner ul li a {
  display: block;
}

.produce_banner ul li a img {
  max-width: 120px;
}

.footer .support_logo {
  text-align: center;
  margin: 120px auto 0;
}

.footer .support_logo ul li {
  display: inline-block;
  margin: 20px;
  max-width: 300px;
}

.footer .support_logo ul li a {
  display: block;
}

.footer .support_logo ul li a:hover {
  opacity: 0.6;
}

.footer .footer_nav {
  background: #f7f6f5;
  padding: 10px 20px;
  text-align: center;
}

.footer .footer_nav ul li {
  display: inline-block;
  margin: 10px;
}

@media screen and (max-width: 979px) {
  .footer .footer_nav ul li {
    margin: 5px 10px;
  }
}

.footer .footer_nav ul li a {
  display: block;
  font-size: 1.3rem;
}

.footer .footer_nav ul li a:hover {
  opacity: 0.6;
}

.footer .footer_inr {
  background: #070707;
  color: #ffffff;
  text-align: center;
  padding: 10px;
}

.footer .footer_inr .footer_inr_logo {
  max-width: 100px;
  margin: 20px auto;
}

.footer .footer_inr .footer_inr_logo img {
  border-radius: 50%;
}

.footer .footer_inr h3 {
  font-size: 1.8rem;
}

.footer .footer_inr .btn {
  text-align: center;
  margin: 20px auto 40px;
}

.footer .footer_inr .btn a {
  display: inline-block;
  padding: 12px 50px;
  background: #FAFAFA;
  border-radius: 50px;
}

.footer .footer_inr .btn a:hover {
  opacity: 0.6;
}

.footer .footer_inr .btn a span {
  background: url("images/ico_link.png") left center no-repeat;
  background-size: 20px;
  padding-left: 25px;
}

.footer .footer_inr .copy {
  font-size: 1.2rem;
}

.scroll_down {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  color: #070707;
  height: 200px;
  margin-top: -30px;
}

@media screen and (max-width: 979px) {
  .scroll_down {
    display: none;
  }
}

.scroll_down .scroll_down_inr p {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 979px) {
  .scroll_down .scroll_down_inr p {
    font-size: 1.2rem;
  }
}

.scroll_down .scroll_down_inr .arrow {
  width: 4px;
  height: 100px;
  margin: 30px auto 0;
  background-color: none;
  position: relative;
  overflow: hidden;
}

.scroll_down .scroll_down_inr .arrow:before {
  content: '';
  width: 4px;
  height: 100px;
  margin: 30px auto 0;
  background-color: #070707;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 1.5s ease 0s infinite normal;
  animation: arrow 1.5s ease 0s infinite normal;
}

@media screen and (max-width: 979px) {
  .scroll_down .scroll_down_inr .arrow:before {
    background-color: #ffffff;
  }
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

/* clearfix
---------------------------------------------------------------------------------------*/
.clr:after {
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.clr {
  display: inline-block;
  min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clr {
  height: 1%;
}

.clr {
  display: block;
}
