<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=Josefin+Sans");
/*==========================================
 共通設定
===========================================*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus {
  outline: none;
}
.pc_none {
  display: none;
}
.sp_none {
  display: inline-block;
}
.tb_none {
  display: inline-block;
}
@media (min-width: 769px) {
  .sp768 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .tb_none {
    display: none;
  }
  .pc768 {
    display: none !important;
  }
  .tell_btn {
    cursor: pointer;
    pointer-events: auto;
  }
}
@media (min-width: 577px) {
  .sp576 {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .pc576 {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .pc_none {
    display: inline-block;
  }
  .sp_none {
    display: none;
  }
}
/*=== clearfix ===*/
.cf {
  zoom: 1;
}
.cf:before,
.cf:after {
  content: "";
  display: table;
}
.cf:after {
  clear: both;
}
/*=== フォント ===*/
html {
  font-size: 62.5%;
}
body {
  -webkit-text-size-adjust: 100%;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo,
    "ＭＳ ゴシック", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
}
em {
  font-style: italic;
}
strong {
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
/*=== リンク ===*/
a {
  color: #000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
/*=== 画像 ===*/
img {
  max-width: 100%;
  height: auto;
}
/*=== セクション見出し ===*/
.sec_ttl {
  text-align: center;
}
.sec_ttl a {
  display: inline-block;
}
.sec_ttl .ttl_en {
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.5rem;
  word-wrap: break-word;
}
.sec_ttl .ttl_en::after {
  content: "";
  display: block;
  background: #ff9933;
  width: 70px;
  height: 5px;
  margin: 5px auto 10px;
}
.sec_ttl .ttl_ja {
  /* color: #666;
  padding: 0 2%;
  line-height: 1.4; */
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
  font-weight: bold;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  word-wrap: break-word;
  color: #000;
}

@media screen and (min-width: 768px) {
  .sec_ttl a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 480px) {
  .sec_ttl .ttl_en {
    font-size: 3rem;
    margin-top: 10px;
  }
}
/*=== ボタン（背景：白　ボーダー：オレンジ　文字色：オレンジ） ===*/
.btn_ow {
  display: block;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 0.1rem;
  padding: 20px 0;
  border: solid 1px #ff9933;
  color: #f08436;
}
.btn_ow &gt; i {
  font-size: 1.4rem;
  margin: 0 6% 0 0;
}
.btn_300 {
  max-width: 300px;
}
@media all and (-ms-high-contrast: none) {
  .btn_ow {
    padding: 21px 0 18px;
  }
}
@media screen and (min-width: 768px) {
  .btn_ow:hover {
    background: #ff9933;
    color: #fff;
  }
}
/*====リンク無効化===*/
.click_none {
  pointer-events: none;
}
.btn_close {
  background-color: #808080 !important;
  color: #bbb !important;
}

/*=== アニメーション ===*/
.inview_fi {
  opacity: 0;
  transition: 3s;
}
.inview_fi.show {
  opacity: 1;
}
.inview_fiU {
  transform: translate(0, 20%);
  opacity: 0;
  transition: 1s;
}
.inview_fiU.show {
  transform: translate(0, 0);
  opacity: 1;
}
.inview_fade {
  animation-name: fade;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fade {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* ぼかしから出現 */
.inview-blur {
  opacity: 0;
}
.inview-blur.show {
  animation-name: blurAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0.1;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/*==========================================
 追尾系
===========================================*/
.pagetop {
  position: fixed;
  display: block;
  right: 10px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  background: #000;
  z-index: 9;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .pagetop:hover {
    background: #ff9933;
  }
}
@media screen and (max-width: 1299px) {
  .pagetop {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1179px) {
  .pagetop {
    bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    bottom: 65px;
  }
}
@media screen and (max-width: 480px) {
  .pagetop {
    bottom: 55px;
    width: 45px;
    height: 45px;
    line-height: 45px;
  }
}
.work_performance_bar {
  z-index: 1001;
  position: fixed;
  left: 0;
  top: 200px;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
  -webkit-border-radius: 0 10px 10px 0 / 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0 / 0 10px 10px 0;
  border-radius: 0 10px 10px 0 / 0 10px 10px 0;
  max-width: 50px;
  width: 100%;
  min-height: 250px;
  text-align: center;
  line-height: 3;
  padding: 10px 0;
  -ms-text-combine-horizontal: digits 3;
  /*　Safari　Edge　IE　非対応　*/
  -webkit-text-orientation: sideways;
  text-orientation: sideways;
}
@media screen and (min-width: 678px) {
  .work_performance_bar:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 1209px) {
  .work_performance_bar {
    background: rgba(0, 0, 0, 0.7);
  }
  /*.work_performance_bar:hover{
 left: 0;
}*/
}
@media screen and (max-width: 767px) {
  .work_performance_bar {
    top: 80px;
    max-width: 35px;
    line-height: 2.5;
    min-height: 165px;
    font-size: 1.5rem;
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
}
/* 横向きの場合のスタイル */
@media screen and (min-width: 768px) and (max-height: 530px) {
  .work_performance_bar {
    display: none !important;
  }
}
@media screen and (max-width: 767px) and (max-height: 380px) {
  .work_performance_bar {
    display: none !important;
  }
}
/*==========================================
 コンバージョンナビ
===========================================*/
.conversion_scroll_nav {
  padding: 60px 0 0;
  min-height: 74px;
}
.conversion_bar {
  width: 100%;
  display: block;
  z-index: 9999;
}
.conversion_wrap {
  background: rgba(255, 255, 255, 0.8);
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ababab;
  padding: 10px 4%;
}
.conversion_list li {
  width: 25%;
  text-align: center;
  transition: 0.2s ease-in-out;
}
.conversion_list li:not(:last-child) {
  margin: 0 2% 0 0;
}
.conversion_list li a {
  padding: 10px 0;
  display: block;
  color: #fff;
  font-weight: bold;
}
@media all and (-ms-high-contrast: none) {
  .conversion_list li a {
    padding: 12px 0 8px;
  }
}
.conversion_list li a &gt; i {
  margin: 0 3% 0 0;
  font-size: 1.2rem;
  vertical-align: middle;
}
.conversion_list .conv_reseved {
  border: 3px solid #afcbc2;
  background: url(../img/common/bg_stripe_g.gif);
}
.conversion_list .conv_reseved .conv_reseved_a1 {
  font-size: 1.3rem;
}
.conversion_list .conv_bg_o {
  border: 3px solid #fed9b5;
  background: url(../img/common/bg_stripe_o.gif);
}
@media screen and (min-width: 767px) {
  .conversion_list .conv_reseved:hover,
  .conversion_list .conv_bg_o:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 989px) {
  .conversion_wrap {
    padding: 10px 1%;
  }
  .conversion_list li:not(:last-child) {
    margin: 0 1% 0 0;
  }
  .conversion_list li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .conversion_scroll_nav {
    display: none;
  }
}
/*ページサイド*/
.sideR_btn_contact {
  position: fixed;
  top: 140px;
  right: 0;
}
.sideR_btn_list li {
  max-width: 47px;
  font-size: 0;
}
.sideR_btn_list li:not(:last-child) {
  margin-bottom: 7px;
}
.sideR_btn_list li a {
  display: block;
}
@media screen and (max-height: 960px) {
  .sideR_btn_contact {
    top: 90px;
  }
  .sideR_btn_list li {
    max-width: 45px;
  }
}
@media screen and (max-height: 700px) {
  .sideR_btn_contact {
    display: none !important;
  }
  .block_performance_bar {
    display: none !important;
  }
}
@media screen and (min-width: 1270px) {
  .pagetop {
    right: 55px !important;
  }
}
@media screen and (max-width: 1279px) {
  .sideR_btn_contact {
    display: none !important;
  }
  .block_performance_bar {
    display: none !important;
  }
}
/*==========================================
 汎用css
===========================================*/
/*=== hover Action ===*/
@media screen and (min-width: 768px) {
  /*memo 【_d】aタグに直*/
  /*=== opacity ===*/
  .hover_oc_d:hover,
  .hover_oc a:hover {
    opacity: 0.5;
  }
  /*=== under line ===*/
  .hover_ul_d,
  .hover_ul a {
    position: relative;
    display: inline-block;
  }
  .hover_ul_d::after,
  .hover_ul a::after {
    position: absolute;
    bottom: -2px;
    left: 50%;
    content: "";
    width: 0;
    height: 3px;
    background-color: #ff9933;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .hover_ul_d:hover::after,
  .hover_ul a:hover::after {
    width: 100%;
  }
  .g_nav_list .fav_link {
    position: relative;
    bottom: 10px;
  }
  .g_nav_list .fav_link a {
    position: relative;
    display: block;
    color: #f7757c;
    padding: 0.5em 0.5em 0.5em 1.5em;
    border-radius: 10px;
    border: solid 2px #f7757c;
  }
  .g_nav_list .fav_link a::before {
    position: absolute;
    content: "\f004";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 50%;
    left: 5px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .g_nav_list .fav_link a::after {
    display: none;
  }
  .g_nav_list .fav_link a:hover {
    opacity: 0.5;
  }
}
/*=== SVG images ===*/
.svg {
  width: 100%;
}
/*=== 幅 ===*/
.wrap {
  max-width: 1140px;
  margin: 0 auto;
}
.wrap_inner {
  padding: 0 2.5%;
}
.content_inner {
  width: 92%;
  max-width: 1620px;
  margin: 0 auto;
}
@media screen and (min-width: 1060px) {
  .wrap_inner {
    padding: 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .wrap_inner {
    padding: 0 4%;
  }
}
/*=== flex ===*/
.row {
  display: flex;
}
/*=== 3点リーダー ===*/
/* 2行  font-size:1.6rem */
.js-text-overflow_s {
  overflow: hidden;
  width: 100%;
  height: 2em;
}
/* 2行  font-size:1.6rem ajax*/
.js-text-overflow_ajax {
  overflow: hidden;
  width: 100%;
  height: 2em;
}
/* 2行  line-height:1.5 */
.js-text-overflow {
  overflow: hidden;
  width: 100%;
  height: 3.2em;
}
/* 4行  line-height:1.5 */
.js-text-overflow_4 {
  overflow: hidden;
  width: 100%;
  height: 6em;
}
/* 4行  line-height:1.5 toppage */
.js-text-overflow_ajax.works_category {
  align-items: flex-start;
  align-content: flex-start;
  height: 6em;
}
/*=== 画像トリミング ===*/
.trim {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 100%;
}
.trim img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.trim_h img {
  /*縦*/
  /*height: 100%;*/
  height: auto;
  max-width: inherit;
  max-height: 100%;
}
.trim_w img {
  /*横*/
  height: auto;
}
/*=== フォント ===*/
/*color オレンジ*/
.t_c_orange {
  color: #ff9933;
}
/* 縦書き */
.v_rl {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
/*明朝体*/
.ff_min {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6",
    "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
/*=== アニメーション ===*/
/* ふわふわさせる */
.fuwafuwa {
  animation: fuwafuwa 2s ease infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/*=== PC none / SP none ===*/
@media screen and (min-width: 481px) {
  .pc_none_s {
    display: none;
  }
  .pc_none2_s {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .pc_none {
    display: none;
  }
  .pc_none2 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
  .sp_none2 {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .sp_none_s {
    display: none;
  }
  .sp_none2_s {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .sp_none_960 {
    display: none;
  }
}
/*==========================================
 アンカーリンク
===========================================*/
.anchor_link {
  position: relative;
  top: -110px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor_link {
    top: -80px;
  }
}
/*==========================================
 ヘッダー
===========================================*/
/*=== container余白 ===**/
.container {
  padding: 80px 0 0;
}
.header {
  position: fixed;
  width: 100%;
  background: #fff;
  min-height: 80px;
  z-index: 10000;
}
.header_inner {
  max-width: 2040px;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  padding: 2px 1.5% 0;
}
.header_logo {
  max-width: 250px;
  width: 100%;
  margin: 20px 0 0 0;
}
.logo_area {
  display: flex;
  /*flex-basis:72%; */
  flex-basis: 460px;
  align-items: center;
}
.header_logo a {
  display: block;
}
.header .nav_block {
  width: 65%;
}
.g_nav_list,
.header .sub_nav {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.header .sub_nav a {
  font-size: 1.4rem;
  vertical-align: middle;
}
.header .sub_nav a i {
  font-size: 1.1rem;
}
.header .sub_nav_list li {
  margin: 0 15px 0 0;
}
.header .btn_members {
  width: 100%;
  max-width: 138px;
  text-align: center;
  margin: 0 15px 0 0;
}
.header .btn_recruit {
  width: 100%;
  max-width: 138px;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 10px 0;
  margin: 0 15px 0 0;
}
.logo_txt {
  font-size: 14px;
  padding-top: 18px;
  padding-left: 10px;
  line-height: 1.2;
}
/* 20191119更新↓ */
.row.sub_nav .fav_link {
  display: none;
  color: #f7757c;
  border: solid 1px #f7757c;
  text-align: center;
  font-size: 1rem;
  padding: 2px 4px;
  border-radius: 4px;
}
.row.sub_nav .fav_link .fas {
  display: block;
  font-size: 1.2rem;
  padding-bottom: 2px;
}
@media screen and (max-width: 767px) {
  /* 20191119更新↓ */
  .row.sub_nav .fav_link {
    display: block;
    max-width: 60px;
    margin-right: 5px;
  }
}
/*20181024更新↓*/
.nav_block.type02 {
  width: 90%;
  /* padding-left: 2%;*/
  flex-basis: calc(100% - 460px);
}
.header .btn_toptel {
  width: 100%;
  /*max-width: 48px;*/
  max-width: 138px;
  text-align: center;
  background: #198016;
  color: #fff;
  padding: 9px 0;
  margin: 0 15px 0 0;
  display: inline-block;
}
.header .sub_nav .pc_txt_tel i {
  font-size: 1.4rem;
  margin-right: 2px;
  transform: scale(-1, 1);
}
.search {
  width: 100%;
  max-width: 183px;
}
@media screen and (max-width: 1300px) {
  .logo_area {
    flex-basis: auto;
    align-items: baseline;
  }
  .logo_txt {
    display: none;
  }
  .nav_block.type02 {
    flex-basis: auto;
  }
}
@media screen and (max-width: 1140px) {
  .header .btn_toptel {
    margin: 0 8px 0 0;
  }
  .header .btn_recruit {
    margin: 0 8px 0 0;
    max-width: 110px;
  }
  .header .btn_members {
    max-width: 110px;
    margin: 0 8px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .header .btn_toptel {
    cursor: default;
    pointer-events: none;
  }
}
/*20181024更新↑*/
@media screen and (min-width: 960px) {
  /*=== fixed ===**/
  .header.fixed,
  .header,
  .header.fixed .search_block,
  .header .search_block,
  .header.fixed .g_nav_list,
  .header .g_nav_list,
  .header.fixed .sub_nav,
  .header .sub_nav,
  .header.fixed .sub_nav_list,
  .header .sub_nav_list,
  .header.fixed .header_logo,
  .header .header_logo {
    transition: 0.2s ease-in-out;
  }
  .header.fixed {
    border-bottom: 1px solid #ccc;
    background: rgba(255, 255, 255, 0.99);
    min-height: 73px;
  }
  .header.fixed .logo_txt {
    font-size: 14px;
    padding-top: 1.5%;
    padding-left: 10px;
    line-height: 1.2;
  }
  .header.fixed .search_block {
    margin: 0;
  }
  .header.fixed .sub_nav {
    align-items: flex-start;
  }
  .header.fixed .sub_nav_list {
    padding: 10px 0 0;
  }
  .header.fixed .header_logo {
    max-width: 225px;
    margin: 15px 0 0 0;
  }
  .header.fixed .g_nav_list {
    padding: 13px 2.5% 0 0;
    transition: 0.2s ease-in-out;
  }
}
/*=== SP nav ===*/
.g_nav.open {
  display: block;
}
.g_nav.close {
  display: none;
}
@media screen and (min-width: 960px) {
  .nav-button,
  .header .sp_btn_members {
    display: none;
  }
  .g_nav {
    display: block !important;
  }
  .g_nav_list {
    padding: 20px 0 0 0;
  }
  .g_nav_list li:not(:last-child) {
    margin: 0 3.5% 0 0;
  }
  .sp_nav_item {
    display: none;
  }
  .header .btn_members {
    background: #ff9933;
    color: #fff;
    padding: 10px 0;
  }
  .btn_members:hover {
    background: #000;
  }
  .btn_recruit:hover {
    background: #777;
  }
  .search_block {
    position: relative;
    width: 0%;
    min-width: 160px;
    height: 24px;
    overflow: hidden;
    margin: 9px 0 0 0;
  }
  .search_input {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    outline: none;
    background: #eaeaea;
    width: 100%;
    height: 24px;
    margin: 0;
    z-index: 1;
    padding: 0 3%;
    font-family: inherit;
    font-size: 1.3rem;
    color: #000;
  }
  .search_input::-ms-clear {
    opacity: 0.2;
  }
  .search_input::-webkit-input-placeholder {
    color: #a6a6a6;
  }
  .search_input:-ms-input-placeholder {
    color: #a6a6a6;
  }
  .search_input::-moz-placeholder {
    color: #a6a6a6;
  }
  .search_input::placeholder {
    color: #a6a6a6;
  }
  .search_btn,
  .search_icon {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    margin: 0;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    border: none;
  }
  .search_btn {
    background: url(../img/common/icon_search.svg) no-repeat center center;
    width: 24px;
    height: 24px;
    z-index: 2;
  }
  /*.search_icon::before {
 content: url(../img/common/icon_search.svg);
 position: absolute;
 right: 0;
 top: 0;
 z-index: 1;
 width: 11px;
 padding: 0 8px;
}*/
  .search_icon i {
    display: none;
  }
}
@media all and (-ms-high-contrast: none) and (min-width: 960px) {
  .search_btn {
    background-size: 9px 13px;
  }
}
@media all and (-ms-high-contrast: none) {
  .search_input {
    padding: 0.3em 3% 0;
  }
  input::-ms-clear {
    visibility: hidden;
  }
}
@media screen and (min-width: 961px) and (max-width: 1600px) {
  .g_nav {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 960px) and (max-width: 1099px) {
  .header_inner {
    padding: 0 1%;
  }
  .g_nav_list li:not(:last-child) {
    margin: 0 1.5% 0 0;
  }
  .g_nav_list {
    padding: 20px 0 0 0;
  }
}
@media screen and (max-width: 959px) {
  .container {
    padding: 50px 0 0;
  }
  .header {
    min-height: 50px;
  }
  .header_inner {
    align-items: center;
  }
  .header .nav_block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header_logo {
    margin: 5px 0 0 0;
    max-width: 200px;
  }
  .sub_nav_list {
    display: none;
  }
  /*=== SP nav ===*/
  .header_logo,
  .header .sp_btn_members {
    position: relative;
    z-index: 20;
  }
  .nav-button {
    cursor: pointer;
  }
  .g_nav {
    position: fixed;
    left: 0;
    top: 0;
    padding: 50px 0 0 0;
    display: none;
    z-index: 10;
    /*background-color: rgba(0, 0, 0, 0.7);*/
    width: 100%;
    height: 100%;
  }
  .g_nav_list {
    height: 100%;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
    padding: 0 0 0;
  }
  .g_nav_list li {
    display: block;
    text-align: center;
  }
  .g_nav_list li a {
    color: #fff;
    font-size: 1.6rem;
    display: block;
    padding: 15px 2.5%;
    border-bottom: #000 solid 1px;
    background: rgba(50, 50, 50, 0.95);
  }
  .g_nav_list .fav_link {
    position: static;
    bottom: 0;
  }
  .g_nav_list .fav_link a {
    position: relative;
    display: block;
    color: #fff;
    padding: 15px 2.5%;
    border: none;
    border-bottom: #000 solid 1px;
    border-radius: 0;
    background: rgba(50, 50, 50, 0.95);
  }
  .g_nav_list .fav_link a::before {
    display: none;
  }
  .g_nav_list .fav_link a:after {
    display: inline-block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    content: "";
    width: 0;
    height: 3px;
    background-color: #ff9933;
    transition: 0.3s;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .g_nav_list .fav_link a:hover:after {
    width: 100%;
  }
  .g_nav_list .fav_link a:hover {
    opacity: 1;
  }
  /*メニューボタンのエフェクト*/
  .nav-button,
  .nav-button span {
    display: inline-block;
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .nav-button {
    z-index: 20;
    position: relative;
    width: 30px;
    height: 25px;
  }
  .nav-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #000;
    border-radius: 4px;
  }
  .nav-button span:nth-of-type(1) {
    top: 0;
  }
  .nav-button span:nth-of-type(2) {
    top: 10px;
  }
  .nav-button span:nth-of-type(3) {
    bottom: 0;
  }
  /*.nav-button.active span{
 background-color: #fff;
}*/
  .nav-button.active span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  .nav-button.active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-button.active span:nth-of-type(3) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
  }
  .header .pc_txt_members {
    display: none;
  }
  .header .btn_members {
    background: #ff9933;
    color: #fff;
    padding: 10px 5px;
    max-width: 138px;
  }
  .header .sub_nav a i {
    font-size: 3rem;
  }
  .header .btn_recruit i {
    display: none;
  }
  .header .search {
    display: none !important;
    position: fixed;
    right: 0;
    bottom: 130px;
    padding: 0;
    width: 65px;
    transition: 250ms ease;
  }
  .search.focused {
    width: 100% !important;
  }
  .search_block {
    position: relative;
    background: #5a86cc;
    border-radius: 60px;
    transform-origin: 100% 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: 250ms ease;
  }
  .search.focused .search_block {
    width: 100%;
  }
  .search.focused .search_block .search_input {
    padding: 0 40px 0 13px;
    width: 100%;
    transform: scale(1);
  }
  .search.focused .search_block .search_btn {
    display: inline;
  }
  .search_block .search_btn {
    display: none;
    background: url(../img/common/icon_search_white.svg) no-repeat center center;
    border: none;
    width: 21px;
    height: 21px;
    margin: 0 7px 0 0;
    background-size: contain;
    cursor: pointer;
  }
  .search_input {
    background: transparent;
    border: 0;
    color: white;
    outline: none;
    height: 60px;
    width: 0;
    overflow: hidden;
    font-weight: 100;
    transform: scale(0);
    transform-origin: 0 50%;
    transition: 275ms ease;
    font-size: 1.6rem;
  }
  .search_input::-webkit-input-placeholder {
    color: #ccc;
  }
  .search_input:-ms-input-placeholder {
    color: #ccc;
  }
  .search_input::-moz-placeholder {
    color: #ccc;
  }
  .search_input::placeholder {
    color: #ccc;
  }
  .search_icon {
    position: absolute;
    color: white;
    font-size: 2.4rem;
    top: 50%;
    right: 18px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
  }
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .header .search {
    right: 9px;
    bottom: 142px;
  }
}
.pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: inline-block;
  }
  .header .btn_recruit {
    display: none;
  }
  .header .btn_members {
    border-radius: 5px;
    padding: 7px 5px;
    border-right: #e27a24 1px solid;
    border-bottom: #e27a24 1px solid;
  }
  .header .btn_recruit {
    border-radius: 5px;
    padding: 7px 5px;
    border-right: #e27a24 1px solid;
    border-bottom: #e27a24 1px solid;
  }
  .header .btn_toptel {
    border-radius: 5px;
    padding: 7px 5px;
    border-right: #11510f 1px solid;
    border-bottom: #11510f 1px solid;
    max-width: 48px;
    margin: 0 20px 0 0;
  }
  .g_nav_list .fav_link {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .g_nav_list li a {
    font-size: 1.4rem;
  }
  .header .search {
    width: 55px;
    bottom: 110px;
  }
  .search_block {
    border-radius: 50px;
    width: 50px;
    height: 50px;
  }
  .search_block .search_btn {
    width: 20px;
    height: 20px;
  }
  .search_input {
    height: 50px;
  }
  .search_icon {
    font-size: 2.2rem;
    right: 15px;
  }
  .header .btn_members {
    max-width: 60px;
  }
}
/*==========================================
中ページ用ヘッダー差分
===========================================*/
.inner_top {
  padding: 100px 0 40px;
}
.inner_top_sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .inner_top_re {
    padding: 60px 0 0;
  }
}
/*=== パンくずリスト ===*/
.breadcrumb {
  font-size: 14px;
}
.breadcrumb a {
  border-bottom: 1px dashed rgba(0, 0, 0, 0);
}
.breadcrumb a:hover {
  border-bottom: 1px dashed rgba(0, 0, 0, 1);
}
/*=== 注目コンテンツ ===*/
.pickup_contents {
  max-width: 214px;
  /* max-width: 300px;*/
  width: 100%;
}
@media screen and (max-width: 960px) {
  .pickup_contents {
    display: none;
  }
}
.pickup_block {
  position: relative;
  min-height: 36px; /* min-height: 50px;*/
}
.pickup_block_inner {
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  background: -webkit-linear-gradient(45deg, transparent 8px, #005c3f 8px),
    -webkit-linear-gradient(135deg, transparent 8px, #005c3f 8px),
    -webkit-linear-gradient(225deg, transparent 0, #005c3f 0),
    -webkit-linear-gradient(315deg, transparent 0, #005c3f 0);
  background: -moz-linear-gradient(45deg, transparent 8px, #005c3f 8px),
    -moz-linear-gradient(135deg, transparent 8px, #005c3f 8px),
    -moz-linear-gradient(225deg, transparent 0, #005c3f 0),
    -moz-linear-gradient(315deg, transparent 0, #005c3f 0);
  background: -o-linear-gradient(45deg, transparent 8px, #005c3f 8px),
    -o-linear-gradient(135deg, transparent 8px, #005c3f 8px),
    -o-linear-gradient(225deg, transparent 0, #005c3f 0),
    -o-linear-gradient(315deg, transparent 0, #005c3f 0);
  background: -ms-linear-gradient(45deg, transparent 8px, #005c3f 8px),
    -ms-linear-gradient(135deg, transparent 8px, #005c3f 8px),
    -ms-linear-gradient(225deg, transparent 0, #005c3f 0),
    -ms-linear-gradient(315deg, transparent 0, #005c3f 0);
  background-position: bottom left, bottom right, top right, top left;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.btn_pickup {
  display: block;
  min-height: 36px;
  line-height: 32px;
  padding: 0 25px;
  /* min-height: 50px;
 line-height: 46px;
 padding: 0 0 0 55px;*/
  color: #fff;
  cursor: pointer;
  background: url(../img/index/btn_bg_pickup.svg) no-repeat center right;
  text-align: left;
  background-size: contain;
}
@media all and (-ms-high-contrast: none) {
  .btn_pickup {
    line-height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .btn_pickup:hover {
    background: url(../img/index/btn_bg_pickup_hover.svg) no-repeat center right;
    background-size: contain;
  }
}
.pickup_block_inner.open .btn_pickup {
  background: url(../img/index/icon_close_w.svg) no-repeat center right;
}
.btn_pickup p {
  font-size: 12px;
}
.btn_pickup .btn_txt::before,
.btn_pickup .btn_txt::after {
  vertical-align: sub;
}
.btn_pickup .btn_txt::before {
  content: url(../img/index/balloon_line_l.png);
  margin: 0 2% 0 0;
}
.btn_pickup .btn_txt::after {
  content: url(../img/index/balloon_line_r.png);
  margin: 0 0 0 2%;
}
.btn_pickup i {
  color: #f1c13a;
}
.pickup_item {
  padding: 0 0 20px;
  height: 296px;
  display: none;
}
.pickup_item a {
  display: block;
  color: #fff;
}
.pickup_item_inner {
  max-width: 190px;
  width: 100%;
  margin: 0 auto;
}
.pickup_item .pickup_img {
  max-width: 240px;
  width: 100%;
  margin: 0 auto 5px;
  background: #e0e0e0;
}
.pickup_item .pickup_img_inner {
  /*padding-bottom: 58.333%;*/
  padding-bottom: 70%;
  transition: 0.2s ease-in-out;
}
.pickup_item .pickup_day,
.pickup_item .pickup_txt {
  line-height: 1.6;
}
.pickup_item .pickup_txt.js-text-overflow_4 {
  height: 6.5em;
}
@media screen and (min-width: 768px) {
  .pickup_item_inner a:hover {
    opacity: 0.7;
  }
}
/*==========================================
 フッター
===========================================*/
.footer {
  margin: 120px auto 0;
}
.footer .flex_item {
  flex-basis: calc(88% * 1 / 3);
  margin: 0 2%;
}
.footer .cst5703 .flex_item {
  flex-basis: calc(88% * 1 / 2);
}
.footer .flex_item02 {
  flex-basis: calc(88% * 2 / 3);
  margin: 0 2%;
}
.footer .item_company {
  text-align: center;
}
.footer .logo_footer {
  max-width: 415px;
  width: 100%;
  margin: 0 auto 40px;
  padding: 0 4%;
}
.footer .logo_footer a {
  display: block;
}
/*会社概要エリア*/
.footer .item_company .txt_tel {
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 auto 10px;
  display: inline-block;
}
.footer .item_company .txt_tel::before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-size: 2.6rem;
  margin: 0 0.25em 0 0;
  transform: scale(-1, 1);
  display: inline-block;
  font-weight: 900;
}
.footer .item_company .txt_time {
  font-size: 1.6rem;
  margin: 0 auto 25px;
}
.footer .item_company .txt_add {
  font-size: 1.6rem;
  line-height: 1.8;
}
.footer .item_company .txt_add span {
  display: inline-block;
}
.footer .con_btn_list {
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 35px auto 0;
}
.footer .con_btn_list li {
  width: 48%;
}
.footer .con_btn_list li:nth-of-type(-n + 2) {
  margin-bottom: 20px;
}
.footer .con_btn_list li a {
  display: block;
  background: #ff7033;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 20px 0;
  font-size: 1.6rem;
  position: relative;
}
.footer .con_btn_list li a:hover {
  background: #000;
}
.footer_sns_area {
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
}
.footer_sns_li {
  margin: 0 2%;
}
.footer_sns_li a {
  display: inline-block;
}
.footer_sns_li a:hover {
  opacity: 0.7;
}
.footer .footer_item_ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-left: 2%;
}
.footer .item_fb_inner {
  overflow: auto;
  text-align: center;
  width: 100%;
  max-height: 450px;
  border: 1px solid #bfbbbb;
  padding: 5% 2% 0;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo,
    "ＭＳ ゴシック", sans-serif;
}
.footer .main_info_area {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.footer .main_info_area span {
  display: inline-block;
  line-height: 1;
}
.footer .main_star {
  color: #f5a708;
  font-size: 1.4em;
}
.footer .main_score {
  color: #363a44;
  font-weight: bold;
  font-size: 28px;
  margin: 0 10px;
}
.footer .main_count {
  color: #86888d;
  font-size: 13px;
  margin-bottom: 3px;
}
.footer .widget_ul {
  /*padding: 16px;*/
}
.footer .widget_li {
  border: 1px solid #e9e9eb;
  border-radius: 4px;
  background: #fff;
  margin-top: 16px;
  padding: 24px;
  text-align: left;
}
.footer .widget_li_name {
  font-size: 16px;
  color: #363a44;
  font-weight: bold;
  margin-bottom: 6px;
}
.footer .widget_li_star {
  color: #f5a708;
  display: inline-block;
  font-size: 20px;
  margin-bottom: 12px;
}
.footer .widget_li_date {
  display: inline-block;
  color: #86888d;
  font-size: 13px;
  margin-left: 4px;
}
.widget_li_shopName {
  line-height: 1.6;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}
.footer .widget_li_comment {
  font-size: 15px;
  color: #363a44;
  line-height: 1.6;
  margin-bottom: 8px;
  font-weight: 500;
}
.footer .platformName_img {
  display: inline-block;
  max-width: 20px;
  vertical-align: text-top;
  margin-right: 10px;
}
.footer .widget_li_platform {
  text-align: right;
  color: #86888d;
  font-size: 13px;
}
.footer .widget_li_platform a {
  display: inline-block;
  border-bottom: 1px dashed #fff;
  padding-bottom: 2px;
}
.footer .widget_li_platform a:hover {
  opacity: 0.7;
  border-bottom: 1px dashed #363a44;
}
.footer .more_page {
  margin: 10px 0;
  text-align: center;
}
.footer .more_page a {
  border: 1px solid #e9e9eb;
  padding: 12px 16px;
  width: 240px;
  border-radius: 100px;
  color: #0086d6;
  background: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: bold;
}
.footer .more_page a:hover {
  background: #f8f8fa;
}
/*ブログエリア*/
.footer .item_blog_inner {
  overflow: auto;
  text-align: center;
  width: 100%;
  max-height: 450px;
  border: 1px solid #bfbbbb;
  padding: 5% 2% 0;
}
.item_blog_li {
}
.item_blog_li_a {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e9e9eb;
}
.item_blog_li_a:hover {
  opacity: 0.7;
}
.blog_img_blc {
  flex-basis: 30%;
  margin-right: 5%;
}
.blog_img {
  width: 100%;
  overflow: hidden;
  height: 0;
  padding-bottom: 86%;
  position: relative;
}
.blog_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.blog_txt_blc {
  flex-basis: 68%;
  text-align: left;
  line-height: 1.6;
}
.item_blog_btn {
  padding-bottom: 50px;
}
.item_blog_btn a {
  display: inline-block;
  width: 100%;
  max-width: 200px;
}
.blog_title {
  font-weight: bold;
}
.blog_date {
  font-size: 1.4rem;
}
@media all and (-ms-high-contrast: none) {
  .footer .con_btn_list li a {
    padding: 21px 0 18px;
  }
}
@media (max-width: 1024px) {
  .footer .con_btn_list {
    position: fixed;
    bottom: 0;
    left: 0;
    flex-wrap: nowrap;
    width: 100%;
    z-index: 9999;
  }
  .footer .con_btn_list li {
    margin: 0;
    width: 25%;
  }
  .footer .con_btn_list li:nth-of-type(-n + 2) {
    margin-bottom: 0;
  }
  .footer .con_btn_list li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.9);
    height: 100%;
    padding: 10px 0;
  }
  .footer .con_btn_list li a:active {
    background: #ff9933;
  }
  .footer .con_btn_list li a &gt; i {
    display: block;
    font-size: 2.6rem;
    margin: 0 auto 2px;
  }
}
@media screen and (min-width: 768px) {
  .footer .item_company,
  .footer .item_fb {
    width: 50%;
  }
  .footer .item_company {
    /*margin: 0 5% 0 0;*/
  }
  .footer .item_company .txt_tel {
    cursor: default;
    pointer-events: none;
  }
  .footer .item_fb {
  }
  .footer .item_fb_inner {
    min-height: 450px;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .footer .main_block {
    flex-direction: column-reverse;
  }
  .footer .item_company {
    margin: 0 auto 30px;
  }
  .footer .item_company .txt_tel {
    font-size: 3.5rem;
  }
  .footer .item_fb {
    margin: 0 2% 50px;
    text-align: center;
  }
  .footer .item_blog {
    margin: 0 2% 50px;
    text-align: center;
  }
  .footer .con_btn_list {
    position: fixed;
    bottom: 0;
    left: 0;
    flex-wrap: nowrap;
    width: 100%;
    z-index: 9999;
  }
  .footer .con_btn_list li {
    margin: 0;
    width: 25%;
  }
  .footer .con_btn_list li a {
    font-size: 1.4rem;
    padding: 7px 0;
  }
  .footer .con_btn_list li .con_btn_list_a1 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    margin: 60px auto 0;
  }
  .footer .item_company .txt_tel::before {
    width: 18px;
    height: 18px;
  }
  .footer .item_company .txt_tel {
    font-size: 2.6rem;
  }
  .footer .item_company .txt_time {
    margin: 15px auto 15px;
  }
  .footer .item_company .txt_add {
    font-size: 1.6rem;
  }
  .footer .con_btn_list li a {
    font-size: 1.2rem;
  }
  .footer .con_btn_list li .con_btn_list_a1 {
    font-size: 1rem;
  }
  .footer .con_btn_list li a &gt; i {
    font-size: 2.1rem;
  }
}
@media all and (max-width: 767px) and (-ms-high-contrast: none) {
  .footer .con_btn_list li a &gt; i {
    margin: 0 auto 5px;
  }
}
/*=== ===*/
.footer .gray_bg {
  background: #ebebeb;
  padding: 10px 0;
}
.footer_nav .nav01,
.footer_nav .nav02 {
  justify-content: center;
}
.footer_nav .nav02 li:not(:last-child) {
  margin: 0 5% 0 0;
}
.footer_nav .nav01 {
  margin: 0 auto 35px;
}
.footer_nav .nav02 {
  font-size: 1.4rem;
}
.footer .copyright {
  text-align: center;
  line-height: 1.5;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .footer .gray_bg {
    padding: 70px 0 10px;
    margin: 55px auto 0;
  }
  .copyright {
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .gray_bg {
    padding: 10px 0 65px;
  }
  .footer_nav {
    display: none;
  }
  .footer .copyright span {
    display: inline-block;
  }
}
@media screen and (min-width: 0px) and (max-width: 767px) {
}
/*==========================================
 フッター上コンバージョンバナー
===========================================*/
.bnr_list {
  margin-top: 130px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .bnr_list {
    margin-top: 80px;
  }
}
.bnr_list_inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.bnr_list_item {
  -webkit-flex-basis: 49%;
  flex-basis: 49%;
  text-align: center;
}
@media screen and (min-width: 0px) and (max-width: 640px) {
  .bnr_list_inner {
    display: block;
  }
  .bnr_list_item {
    margin-bottom: 10px;
  }
}
/*==========================================
 リンク
===========================================*/
.link_block {
  margin: 0 auto;
  padding-top: 120px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.link_list {
  flex-wrap: wrap;
  justify-content: center;
}
.link_list li:last-child {
  margin-bottom: 0;
}
.link_list li a {
  display: block;
}
.link_img_inner {
  background: #e0e0e0;
  padding-bottom: 100%;
}
@media screen and (min-width: 481px) {
  .link_list li {
    width: 22.75%;
    margin: 0 0 35px 0;
  }
  .link_list li:not(:nth-child(4n)) {
    margin: 0 2.99% 0 0;
  }
}
@media screen and (max-width: 767px) {
  .link_block {
    padding-top: 100px;
  }
  .link_list li {
    margin: 0 0 2% 0;
  }
}
@media screen and (max-width: 480px) {
  .link_block {
    padding-top: 80px;
  }
  .link_list li {
    width: 49%;
    margin: 0 0 2% 0;
  }
  .link_list li:not(:nth-child(even)) {
    margin: 0 2% 0 0;
  }
}
/*==========================================
 お知らせ
===========================================*/
.news_block {
  margin: 0 auto 40px;
}
.news_block .news_post {
  border-bottom: 1px solid #bfbfbf;
}
.news_block .news_post a {
  padding: 25px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
/*NEW表示*/
.news_post .new {
  color: #d80000;
  padding: 0 0.5em 0 0;
}
.news_block .news_post .news_category {
  border-radius: 10px;
  max-width: 120px;
  width: 100%;
  padding: 7px 0;
  text-align: center;
  font-size: 1.6rem;
  margin: 0 1.5% 0 0;
}
@media all and (-ms-high-contrast: none) {
  .news_block .news_post .news_category {
    padding: 9px 0 4px;
  }
}
.news_block .news_post .news_category.news_cg_01 {
  /*会社情報*/
  border: 1px solid #131826;
  letter-spacing: 0.12rem;
  color: #131826;
}
.news_block .news_post .news_category.news_cg_02 {
  /*WEB 更新*/
  border: 1px solid #2c5ead;
  letter-spacing: 0.05rem;
  color: #2c5ead;
}
.news_block .news_post .news_category.news_cg_03 {
  /*IR*/
  border: 1px solid #005c3f;
  letter-spacing: 0.05rem;
  color: #005c3f;
}
.news_block .news_post .news_day {
  font-size: 1.6rem;
  margin: 0 1% 0 0;
  max-width: 150px;
  width: 100%;
}
.news_block .news_post .nesw_txt {
  overflow: hidden;
  position: relative;
  height: 1.5em;
  line-height: 1.5;
  background-color: #fff;
  padding-right: 1em;
  width: 75%;
}
.news_block .news_post .nesw_txt::before {
  content: "...";
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 1em;
}
.news_block .news_post .nesw_txt::after {
  content: "";
  position: relative;
  right: -1em;
  float: right;
  width: 1em;
  height: 100%;
  background-color: inherit;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .news_block .news_post a {
    flex-wrap: wrap;
  }
  .news_block .news_post .news_category {
  }
  .news_block .news_post .news_day {
    max-width: 50%;
  }
  .news_block .news_post .nesw_txt {
    width: 100%;
    margin: 15px auto 0;
  }
}
/*==========================================
social_btn
===========================================*/
.social_btn {
  max-width: 1140px;
  margin: 90px auto 40px;
  padding: 0 50px;
}
.social_btn li {
  display: inline-block;
  vertical-align: top;
}
.social_btn li:not(:last-child) {
  margin-right: 10px;
}
#loading {
  margin: 0 auto;
  width: 15px;
}
@media screen and (max-width: 767px) {
  .social_btn {
    text-align: center;
  }
}
/*==========================================
ページネーション
===========================================*/
.pagenation {
  margin: 60px auto;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.pages,
.page,
.page-numbers,
.nextpostslink,
.previouspostslink {
  border: 1px solid #005c3f;
  padding: 10px 15px;
  margin-left: 2px;
  display: inline-block;
}
.pagenation a:hover,
.current {
  border: 1px solid #005c3f;
  color: #fff;
  background-color: #005c3f;
  padding: 10px 15px;
  margin-left: 2px;
  display: inline-block;
}
@media all and (-ms-high-contrast: none) {
  .pages,
  .page,
  .page-numbers,
  .nextpostslink,
  .previouspostslink,
  .pagenation a:hover,
  .current {
    padding: 12px 15px 8px;
  }
}
@media screen and (max-width: 767px) {
  .pages,
  .page,
  .page-numbers,
  .nextpostslink,
  .previouspostslink {
    margin-bottom: 5px;
  }
}
/*==========================================
共通パーツ
===========================================*/
/*一覧へ戻る*/
.back_to_before {
  max-width: 1140px;
  padding: 0 25px;
  margin: 40px auto 30px;
  text-align: right;
}
.back_to_before a {
  font-size: 13px;
  color: #3e3e3e;
  padding-bottom: 3px;
  border-bottom: 1px solid #3e3e3e;
}
.back_to_before a:hover {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .back_to_before a {
    font-size: 16px;
  }
}
/*==========================================
404
===========================================*/
.page404 .text_block {
  margin: 60px auto;
  text-align: center;
}
.page404 .txt01 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 2;
  letter-spacing: 0.1rem;
}
.page404 .txt02 {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2;
}
.page404 .btn_bottom a {
  font-size: 18px;
  margin: 40px auto 0 auto;
  display: block;
  width: 300px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ffa347;
  color: #ffa347;
  transition: 0.5s all;
  letter-spacing: 0.1em;
}
.page404 .btn_bottom a:hover {
  background: #ffa347;
  color: #fff;
}
.page404 .btn_bottom a i {
  padding-right: 15px;
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .page404 .btn_bottom a {
    width: 96%;
    padding: 10px;
    line-height: 24px;
  }
}
/*==========================================
フッターリフォームをご検討中の方へ
===========================================*/
.consider .wrap {
  padding: 0 0 40px;
}
.consider_block {
  display: flex;
  flex-wrap: wrap;
}
.consider_block_li {
  flex-basis: calc(88% * 1 / 6);
  margin: 0 1% 8px;
  line-height: 1.4;
  padding-bottom: 8px;
}
.consider_block_li a {
  display: inline-block;
  width: 100%;
  padding-left: 1.5em;
  position: relative;
  font-size: 13px;
  border-bottom: dashed 1px rgba(255, 153, 51, 0);
}
.consider_block_li a:hover {
  border-bottom: dashed 1px rgba(255, 153, 51, 1);
  opacity: 1;
}
.consider_block_li a::before {
  content: "■";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  font-size: 13px;
  color: #f93;
}
@media screen and (max-width: 960px) {
  .consider_block_li {
    flex-basis: calc(92% * 1 / 4);
  }
}
@media screen and (max-width: 767px) {
  .consider .wrap {
    padding: 30px 0 40px;
  }
}
@media screen and (max-width: 640px) {
  .consider_block_li {
    flex-basis: calc(94% * 1 / 3);
    margin: 0 1% 4px;
    padding-bottom: 4px;
  }
  .consider_block_li a {
    font-size: 11px;
  }
  .consider_block_li a::before {
    font-size: 11px;
  }
}
/*==========================================
対応エリア
===========================================*/
/*トップページ*/
/*ショウルームフッター*/
.service_area_area02 {
  padding-top: 30px;
}
.s_a_ttl02 {
  font-size: 14px;
  padding: 5px 20px;
  margin: 0 auto 8px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-left: solid 5px #ffa347;
  border-bottom: 1px solid #ccc;
}
.s_a_ttl02_span {
  display: inline-block;
  font-size: 18px;
}
.s_a_txt02 {
  line-height: 1.6;
  font-size: 14px;
  padding: 0 2.3%;
}
.s_a_txt02 a {
  display: inline-block;
  color: #000;
  border-bottom: dotted 2px #fff;
}
.s_a_txt02 a:hover {
  border-bottom: dotted 2px #515151;
}
@media screen and (max-width: 767px) {
}
/*==========================================
エディター下線
===========================================*/
.marker-red {
  background: linear-gradient(transparent 60%, #ff4500 60%);
}
.marker-blue {
  background: linear-gradient(transparent 60%, #00bfff 60%);
}
.marker-yellow {
  background: linear-gradient(transparent 60%, #ffff00 60%);
}
.marker-green {
  background: linear-gradient(transparent 60%, #3cb371 60%);
}
/*==========================================
 フォーム
===========================================*/
.region_size {
  max-width: 150px;
}
.dn {
  display: none;
}
.top_main_slider.pc {
  display: block;
}
.top_main_slider.sp {
  display: none;
}
@media screen and (max-width: 480px) {
  .top_main_slider.pc {
    display: none;
  }
  .top_main_slider.sp {
    display: block;
  }
}

form .error {
  color: red;
}
</pre></body></html>