@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body { 
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 80px;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: justify;
  letter-spacing: 1px;
}
/* PCより小さい(タブレット) */
@media (max-width: 959px) {
}
/* タブレットより小さい(スマホランドスケープ) */
@media (max-width: 767px) {
  body {
    padding-top: 54px;
  }
}
/* スマホランドスケープより小さい(スマホポートレート) */
@media (max-width: 639px) {
}


/* --------------- .wrapper --------------- */
.wrapper {
  /*position: relative;*/
  /*z-index: 1;*/
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper.col2 {
  display: flex;
  justify-content: space-between;
}
.wrapper.col2 > .main {
  max-width: calc(100% - 350px);
  width: 810px;
}
.wrapper.col2 > .sidebar {
  flex-shrink: 0;
  width: 310px;
  margin-left: 40px;
}
@media (max-width: 959px) {
  .wrapper.col2 > .main {
    max-width: calc(100% - 250px);
  }
  .wrapper.col2 > .sidebar {
    flex-shrink: 0;
    width: 210px;
    margin-left: 40px;
  }
}
@media (max-width: 767px) {
  .wrapper.col2 {
    display: block;
  }
  .wrapper.col2 > .main {
    max-width: 100%;
  }
  .wrapper.col2 > .sidebar {
    width: 100%;
    margin-top: 100px;
    margin-left: 0;
  }
  #page-front .wrapper.col2 > .sidebar {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #ccc;
  }
}


/* --------------- .btn --------------- */
.btn {
  position: relative;
  z-index: 2;
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  display: inline-block;
  background-color: #ffd800;
  border: 1px solid #ffd800;
  outline: none;
  transition: all ease 0.3s;
}
.btn::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease 0s;
}
.btn span {
  position: relative;
  z-index: 3;
}
.btn:hover {
  border-color: #000;
}
.btn:hover::before{
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}


/* --------------- .tbl --------------- */
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 20px 10px;
  border-bottom: 1px solid #000;
  line-height: 2;
  letter-spacing: 0;
}
.tbl th {
  font-weight: normal;
}
.tbl td {
}
@media (max-width: 640px) {
  .tbl th,
  .tbl td {
    display: block;
  }
  .tbl th {
    padding-bottom: 0;
    border-bottom: none;
  }
  .tbl td {
    padding-left: 30px;
    padding-top: 0;
  }
}




/* ---------------------------------------------------------
 * header
** --------------------------------------------------------- */
#header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  background-color: #fff;
}
.h_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  transition: all 0.3s ease;
}
.h_logo {
}
.h_logo img {
}
.h_nav {
}
.h_nav .gnavi {
}
.h_nav .gnavi ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ccc;
}
.h_nav li {
  border-left: 1px solid #ccc;
}
.h_nav a {
  position: relative;
  display: block;
  height: 46px;
  padding: 0 40px;
  line-height: 46px;
}
.h_nav a::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffd800;
  transform: scale(0, 1);
  transition: transform 0.3s ease 0s;
}
.h_nav a::before {
  bottom: 0;
  transform-origin: right top;
}
.h_nav a.selected::before,
.h_nav a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media (max-width: 1079px) {
  .h_nav a {
    padding: 0 20px;
  }
}
@media (max-width: 959px) {
  .h_logo img {
    /*width: 130px;*/
    /*object-fit: cover;*/
    /*object-position: left center;*/
  }
}
@media (max-width: 767px) {
  #header {
    /*position: fixed;*/
  }
  .h_inner {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 10px;
  }
  .h_logo img {
    /*width: auto;*/
  }
  .h_nav .gnavi {
    position: absolute;
    left: 0;
    top: 54px;
    overflow: hidden;
    width: 100%;
    max-height: 0;
    /*padding-bottom: 10px;*/
    transition: all 0.3s ease;
  }
  .h_nav .gnavi.active {
    max-height: var(--max-height);
  }
  .h_nav .gnavi ul {
    display: block;
    padding: 15px;
    background-color: #fff;
    /*box-shadow: 0 0 10px #ccc;*/
  }
  .h_nav li {
    border-left: none;
    /*border-bottom: 1px solid #ccc;*/
  }
  .h_nav li:first-child {
    border-top: 1px solid #ccc;
  }
  .h_nav a {
    height: 54px;
    border-bottom: 1px solid #ccc;
    line-height: 54px;
  }
  .h_nav a.selected {
    border-bottom: 3px solid #ffd800;
  }
  .h_nav a::before {
    display: none;
  }
  .h_nav a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform-origin: center;
    transform: rotate(45deg);
  }
}
@media (max-width: 639px) {
}
@media (max-width: 439px) {
  .h_logo img {
    /*width: 130px;*/
    /*object-fit: cover;*/
    /*object-position: left center;*/
  }
}


/* gnavi_btn(sp only) */
.gnavi_btn {
  align-items: center;
  transition: all 0.4s ease;
  margin-left: auto;
  padding: 15px 10px;
}
.gnavi_btn.open {
  background: rgba(0, 0, 0, 0);
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}




/* ---------------------------------------------------------
 * Common contents parts
** --------------------------------------------------------- */
/* --------------- .lower_fv --------------- */
.lower_fv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 146px;
  background-image: url("../img/lower_fv.png");
  background-position: center;
  background-size: cover;
}
.lower_fv h1 {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
  .lower_fv {
    height: 100px;
  }
  .lower_fv h1 {
    font-size: 24px;
  }
}


/* --------------- .breadcrumb --------------- */
.breadcrumb {
}
.breadcrumb ul {
  display: flex;
  margin-top: 20px;
}
.breadcrumb li {
  flex-shrink: 0;
  font-size: 13px;
}
.breadcrumb li:last-child {
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.breadcrumb li:not(:last-child) {
  position: relative;
  padding-right: 30px;
}
.breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.breadcrumb a {
  color: #1a89e3;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb span {
}


/* --------------- .blog_posts --------------- */
.blog_posts {
}
.blog_posts h2 {
  font-size: 24px;
  font-weight: bold;
}
.blog_posts ul {
}
.blog_posts li {
  padding: 30px 0;
  border-bottom: 1px solid #ccc;
}
.blog_posts li a {
  display: flex;
  justify-content: space-between;
}
.blog_posts .img {
  flex-shrink: 0;
  width: 250px;
  height: 190px;
  margin-right: 30px;
}
.blog_posts .img img {
  width: 100%;
  height: auto;
}
.blog_posts .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.blog_posts .news_ttl {
  padding-top: 5px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.blog_posts a:hover .news_ttl {
  color: #666;
}
.blog_posts .the_excerpt {
  display: -webkit-box;
  margin-bottom: auto;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-align: left;
}
.blog_posts .cate_date {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.blog_posts .cate {
  margin-bottom: -5px;
}
.blog_posts .cate span {
  display: inline-block;
  margin-top: 5px;
  margin-bottom: 5px;
  padding: 5px 9px;
  background-color: #eee;
  font-size: 12px;
}
.blog_posts .cate span:not(:last-child) {
  margin-right: 10px;
}
.blog_posts .date {
  flex-shrink: 0;
  margin-left: 10px;
  letter-spacing: 0;
}
.blog_posts .news_excerpt_sp {
  display: none;
}
.blog_posts .cate_date_sp {
  display: none;
}
@media (max-width: 959px) {
  .blog_posts .img {
    width: 200px;
    height: calc(calc(190px * 4) / 5);/*152px*/
  }
  .blog_posts .news_ttl {
    padding-top: 0;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .blog_posts .the_excerpt {
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 639px) {
  .blog_posts h2 {
    font-size: 20px;
  }
  .blog_posts li {
    padding: 20px 0;
  }
  .blog_posts li a {
    flex-wrap: wrap;
  }
  .blog_posts .img {
    width: calc(12000% / 355);
    height: auto;
    margin-right: 15px;
  }
  .blog_posts .content {
    width: calc(calc(23500% / 355) - 15px);
  }
  .blog_posts .news_ttl {
    font-size: 16px;
  }
  .blog_posts .cate_date {
    display: none;
  }
  .blog_posts .cate_date_sp {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
/* .recommend */
.blog_posts.recommend {
  margin-top: 55px;
}
.blog_posts.recommend h3 {
  font-size: 24px;
  font-weight: bold;
}
.blog_posts.recommend li {
  margin-top: 20px;
  padding: 0;
  border-bottom: none;
}
.blog_posts.recommend li a {
  padding: 15px 25px 15px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.blog_posts.recommend li a:hover {
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.blog_posts.recommend .img {
  width: 220px;
  height: 164px;
  /*margin-right: 30px;*/
}
.blog_posts.recommend .news_ttl {
  margin-bottom: 10px;
  font-size: 16px;
}
.blog_posts.recommend a:hover .news_ttl {
  color: inherit;
}
.blog_posts.recommend .news_excerpt {
  margin-bottom: auto;
  color: #666;
  font-size: 13px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog_posts.recommend .date {
  font-size: 13px;
}
@media (max-width: 959px) {
  .blog_posts.recommend .img {
    width: calc(calc(220px * 4) / 6);;
    height: calc(calc(164px * 4) / 6);/*152px*/
  }
  .blog_posts.recommend .news_ttl {
    padding-top: 0;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
  .blog_posts.recommend .img {
    width: calc(10000% / 355);
    height: auto;
    margin-right: 10px;
  }
  .blog_posts.recommend .content {
    width: calc(calc(24500% / 355) - 10px);
  }
  .blog_posts.recommend .news_ttl {
    font-size: 14px;
  }
  .blog_posts.recommend .news_excerpt {
    display: none;
  }
  .blog_posts.recommend .news_excerpt_sp {
    width: 100%;
    margin-top: 5px;
    color: #666;
    font-size: 13px;
    text-align: left;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}


/* --------------- .other_posts --------------- */
.other_posts {
}
.other_posts h2 {
  font-size: 24px;
  font-weight: bold;
}
.other_posts ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.other_posts li {
  width: calc(calc(79000% / 810) / 2);
}
.other_posts li:not(:nth-child(3n+1)) {
  margin-left: calc(2000% / 810);
}
.other_posts.col3 li {
  width: calc(calc(77000% / 810) / 3);
}
.other_posts.col3 li:nth-child(n+4) {
  margin-top: calc(2000% / 810);
}
.other_posts li a {
  display: block;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.other_posts li a:hover {
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.other_posts .img {
}
.other_posts .img img {
  width: 100%;
  height: auto;
}
.other_posts .news_ttl {
  margin-top: 15px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
}
.other_posts .the_excerpt,
.other_posts .the_date {
  margin-top: 5px;
  margin-bottom: 10px;
  padding: 0 20px;
  letter-spacing: 0;
}
.other_posts .the_excerpt {
  font-size: 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
  .other_posts li:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
  .other_posts li:not(:nth-child(2n+1)) {
    margin-left: calc(2000% / 810);
  }
  .other_posts.col3 li {
    width: calc(calc(79000% / 810) / 2);
  }
  .other_posts.col3 li:nth-child(n+3) {
    margin-top: calc(2000% / 810);
  }
  .other_posts .the_excerpt {
    -webkit-line-clamp: 2;
    text-align: left;
  }
}
@media (max-width: 639px) {
  .other_posts h2 {
    font-size: 20px;
  }
  .other_posts ul {
    display: block;
    margin-top: 20px;
  }
  .other_posts li {
    width: 100%;
  }
  .other_posts li:nth-child(2) {
    margin-top: calc(2000% / 810);
  }
  .other_posts li:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
  .other_posts.col3 li {
    width: 100%;
  }
  .other_posts .img {
    /*height: 0;*/
    /*padding-top: 75%;*/
  }
  .other_posts .news_ttl {
    padding: 0 15px;
    font-size: 16px;
  }
}


/* --------------- 監理団体 --------------- */
#archive-group .newsletter {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
/* group_refine */
.group_refine {
  display: block;
  max-width: 920px;
  padding: 30px 40px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.group_refine .ttl {
  font-size: 20px;
  font-weight: bold;
}
.group_refine .input_wrapper {
  display: flex;
  align-items: center;
}
.group_refine .section_search {
  margin-top: 20px;
}
.group_refine .flex {
  margin-top: 15px;
  gap: 20px;
}
.group_refine .flex > div {
}
.group_refine .area_search {
}
.group_refine .most_job_type_search {
}
.group_refine .subttl {
  flex-shrink: 0;
  padding-right: 30px;
}
.group_refine .input_area {
}
.group_refine .section_search .input_area {
  display: flex;
  width: 100%;
}
.group_refine label {
  display: block;
  padding-right: 30px;
}
.group_refine label input {
}
.group_refine select {
  padding: 10px 40px 10px 10px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="200,200" fill="%23888"><path d="M 0 0 L 200 0 L 100 200 z" /></svg>');
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: right 15px center;
  border: 1px solid #888;
}
.group_refine .btn_area {
  margin-top: 20px;
  text-align: center;
}
.group_refine .btn_area button {
  padding: 15px 30px;
  border-radius: 100px;
}
.group_refine .btn_area button img {
  width: 18px;
  margin-right: 10px;
}
@media (max-width: 959px) {
  .group_refine .section_search {
    display: block;
  }
  .group_refine .flex {
    display: block;
  }
  .group_refine .most_job_type_search {
    margin-top: 20px;
  }
  .group_refine .section_search .input_area {
    margin-top: 5px;
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .group_refine {
    padding: 20px 30px;
  }
  .group_refine .subttl {
    padding-right: 15px;
  }
  .group_refine .section_search .input_area {
    display: block;
  }
  .group_refine label {
    width: 100%;
  }
}
@media (max-width: 539px) {
  .group_refine {
    padding: 15px;
  }
  .group_refine .input_wrapper {
    display: block;
  }
  .group_refine .subttl {
    padding-right: 0;
  }
  .group_refine .input_area {
    margin-top: 5px;
    padding-left: 0;
  }
  .group_refine .section_search .input_area {
    padding-left: 0;
  }
}

/* group_result */
.group_result {
  max-width: 920px;
  height: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: right;
  transform: translateY(20px);
}
.group_result span {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
}
@media (max-width: 539px) {
}

/* group_posts */
.group_posts {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.group_posts ul {
}
.group_posts li:not(:first-child) {
  margin-top: 40px;
}
.group_posts li a {
  display: flex;
  transition: all ease 0.3s;
}
.group_posts li a:hover {
  opacity: 0.7;
}
.group_posts .img {
  flex-shrink: 0;
  width: 200px;
  margin-right: 20px;
}
.group_posts .img img {
  width: 100%;
  height: auto;
}
.group_posts .content {
  width: 100%;
}
.group_posts .group_ttl {
  margin-bottom: 5px;
  border-bottom: 1px solid #999;
  font-size: 20px;
  font-weight: bold;
}
.group_posts .cates {
  display: flex;
  flex-wrap: wrap;
}
.group_posts .cates > div {
  display: flex;
  align-items: center;
  margin-right: 25px;
  margin-top: 5px;
}
.group_posts .cate_ttl {
  margin-right: 10px;
  padding: 5px 9px;
  background-color: #eee;
  font-size: 12px;
}
.group_posts .cate_val {
}
.group_posts .cate_val span {
  display: inline-block;
}
.group_posts .the_excerpt {
  margin-top: 10px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.group_posts .not_found {
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 539px) {
  .group_posts li a {
    display: block;
  }
  .group_posts .img {
    width: 100%;
    margin-right: 0;
  }
  .group_posts .content {
    margin-top: 10px;
  }
}


/* --------------- .pagination --------------- */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}
.pagination > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  margin: 5px;
}
.pagination a {
  position: relative;
  border: 1px solid #000;
  outline: none;
  transition: all ease 0.3s;
}
.pagination a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #ffd800;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease 0s;
}
.pagination a span {
  position: relative;
  z-index: 3;
}
.pagination a:hover {
  border-color: #ffd800;
}
.pagination a:hover::before{
  transform-origin: left top;
  transform: scale(1, 1);
}
.pagination .disabled,
.pagination .active {
  border: 1px solid #ddd;
  background-color: #ddd;
}
.pagination .prev,
.pagination .next {
  position: relative;
}
.pagination .prev span,
.pagination .next span {
  display: block;
  width: 100%;
  height: 100%;
}
.pagination .prev span::before,
.pagination .next span::before,
.pagination .prev span::after,
.pagination .next span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 11px;
  height: 11px;
  margin-top: auto;
  margin-bottom: auto;
  transform-origin: center;
}
.pagination .prev span::before,
.pagination .prev span::after {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform: rotate(-45deg);
}
.pagination .prev span::before {
  left: 20px;
}
.pagination .prev span::after {
  right: 15px;
}
.pagination .next span::before,
.pagination .next span::after {
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
.pagination .next span::before {
  left: 15px;
}
.pagination .next span::after {
  right: 20px;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
  .pagination > * {
    width: 40px;
    height: 40px;
  }
}


/* --------------- .not_found --------------- */
.not_found {
  margin-top: 50px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
#page-front .not_found {
  margin-top: 0;
  font-size: 16px;
  font-weight: normal;
}


/* --------------- .search_word --------------- */
.search_word {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #fffde8;
}
.search_word .word {
}
.search_word .count {
  font-size: 16px;
}
.search_word .count span {
  display: inline-block;
  margin-right: 5px;
  font-size: 28px;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}


/* --------------- .newsletter --------------- */
.newsletter {
  margin-top: 60px;
}
.newsletter a {
  display: block;
  overflow: hidden;
}
.newsletter a img {
  width: 100%;
  transition: all 0.3s ease;
}
.newsletter a:hover img {
  transform: scale(1.03);
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
  .newsletter {
    display: none;
  }
}
@media (max-width: 639px) {
}




/* ---------------------------------------------------------
 * sidebar
** --------------------------------------------------------- */
/* --------------- common --------------- */
.sidebar hr {
  margin: 30px 0;
  border-color: #ccc;
}


/* --------------- .side_search --------------- */
.side_search .search-form {
  display: flex;
  border: 1px solid #888;
}
.side_search input {
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
}
.side_search button {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background-image: url("../img/icon_search.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 20px;
}
@media (max-width: 959px) {
  .side_search input {
    padding: 0 15px;
  }
  .side_search button {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}


/* --------------- .categories --------------- */
.categories {
  margin-top: 10px;
}
.categories a {
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  background-color: #eee;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.categories a:not(:last-child) {
  margin-right: 10px;
}
.categories a:hover {
  background-color: #e4e4e4;
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}


/* --------------- .banners --------------- */
.banners:not(:first-child) {
  margin-top: 40px;
}
.banners a {
  display: block;
  overflow: hidden;
}
.banners a:not(:last-child) {
  margin-bottom: 20px;
}
.banners a img {
  width: 100%;
  transition: all 0.3s ease;
}
.banners a:hover img {
  transform: scale(1.03);
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}




/* ---------------------------------------------------------
 * footer
** --------------------------------------------------------- */
/* --------------- #footer --------------- */
#footer {
  position: relative;
  margin-top: 100px;
  background-color: #222;
  color: #fff;
}
#footer .footer_content {
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  padding-bottom: 70px;
}
#footer .left {
  width: calc(100% - 600px);
  padding-right: 40px;
  line-height: 2;
}
#footer .left h4 {
  font-size: 17px;
  font-weight: bold;
}
#footer .left ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  /*margin-top: 10px;*/
}
#footer .left li {
  width: 45%;
  margin-top: 10px;
}
#footer .left a {
}
@media (max-width: 959px) {
  #footer .left {
    width: calc(100% - 500px);
  }
  #footer .left ul {
    display: block;
  }
  #footer .left li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #footer .footer_content {
    display: block;
  }
  #footer .left {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  #footer .left ul {
    display: flex;
    justify-content: flex-start;
  }
  #footer .left li {
    width: auto;
  }
  #footer .left li:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 639px) {
  #footer .footer_content {
    padding-bottom: 40px;
  }
}
#footer .right {
  width: 600px;
  padding-right: 80px;
}
#footer .right .menu {
  display: flex;
  font-size: 17px;
  font-weight: bold;
  line-height: 2;
}
#footer .right .menu li:not(:last-child) {
  margin-right: 40px;
}
#footer .right .submenu {
  display: flex;
  margin-top: 10px;
  font-size: 14px;
}
#footer .right .submenu li:not(:last-child) {
  margin-right: 40px;
}
#footer .right .logo {
  margin-top: 20px;
}
#footer .right .logo span {
}
#footer .right .logo img {
}
#footer .right .btn_area {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#footer .right .btn_area a {
  position: relative;
  z-index: 2;
  isolation: isolate;
  transform: translateZ(0);
  overflow: hidden;
  display: block;
  width: 48%;
  padding: 15px 10px;
  background-color: #ffd800;
  border-radius: 100px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0;
}
#footer .right .btn_area a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s ease 0s;
}
#footer .right .btn_area a span {
  position: relative;
  z-index: 3;
}
#footer .right .btn_area a:hover {
}
#footer .right .btn_area a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
#footer .right .sns_area {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
#footer .right .sns_area p {
  margin-right: 10px;
  font-size: 13px;
}
#footer .right .sns_area ul {
  display: flex;
}
#footer .right .sns_area li {
  margin-left: 15px;
}
@media (max-width: 959px) {
  #footer .right {
    width: 500px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  #footer .right {
    width: 100%;
  }
  #footer .right .sns_area li img {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 639px) {
  #footer .right .menu {
    flex-wrap: wrap;
    /*font-size: 17px;*/
  }
  #footer .right .menu li {
    width: 50%;
  }
  #footer .right .menu li:not(:last-child) {
    margin-right: 0;
  }
  #footer .right .submenu {
    flex-wrap: wrap;
    /*margin-top: 10px;*/
    /*font-size: 14px;*/
  }
  #footer .right .submenu li {
    width: 50%;
    margin-bottom: 5px;
  }
  #footer .right .submenu li:not(:last-child) {
    margin-right: 0;
  }
  #footer .right .logo {
    text-align: center;
  }
  #footer .right .logo span {
  }
  #footer .right .logo img {
  }
  #footer .right .btn_area {
    display: block;
    margin-top: 30px;
  }
  #footer .right .btn_area a {
    width: 80%;
    margin: 15px auto 0;
    padding: 15px 10px;
    /*font-size: 16px;*/
  }
  #footer .right .sns_area {
    display: block;
    margin-top: 30px;
    text-align: center;
  }
  #footer .right .sns_area p {
    margin-right: 0;
  }
  #footer .right .sns_area ul {
    display: flex;
    justify-content: center;
    margin-top: 10px
  }
  #footer .right .sns_area li:first-child {
    margin-left: 0;
  }
}


/* --------------- #copyright --------------- */
#copyright {
  padding-bottom: 10px;
  font-size: 12.5px;
  text-align: center;
}
#copyright .img {
  margin-bottom: 20px;
}
#copyright .img img {
}
@media (max-width: 767px) {
  #copyright .img {
    margin-bottom: 10px;
  }
}


/* --------------- #goto_top --------------- */
#goto_top {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#goto_top::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform-origin: center;
  transform: rotate(45deg);
}
@media (max-width: 959px) {
}
@media (max-width: 767px) {
}
@media (max-width: 639px) {
}
