@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  font-size: 14px;
}

*:focus {
  outline: none;
}

/* リンクの設定 */
a {
  color: #EB2D2D;
  text-decoration: none;
  border: none;
}

a:visited {
  color: #EB2D2D;
  text-decoration: none;
}

a:active {
  color: #EB2D2D;
  text-decoration: none;
}

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

/* コンテナー */
.acms-container {
  max-width: 1146px;
  padding-right: 15px;
  padding-left: 15px;
  padding-right: calc(15px + constant(safe-area-inset-right));
  padding-left: calc(15px + constant(safe-area-inset-left));
}
.acms-container .acms-container {
  padding: 0;
}

.narrow-container {
  max-width: 960px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-right: calc(15px + constant(safe-area-inset-right));
  padding-left: calc(15px + constant(safe-area-inset-left));
}

.max-container {
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  padding-right: calc(15px + constant(safe-area-inset-right));
  padding-left: calc(15px + constant(safe-area-inset-left));
}
.max-container .acms-container {
  padding: 0;
}

[class*=acms-col] {
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.acms-grid,
.acms-grid-r {
  margin-right: -15px;
  margin-left: -15px;
}
.acms-grid:before, .acms-grid:after,
.acms-grid-r:before,
.acms-grid-r:after {
  display: table;
  content: " ";
}
.acms-grid:after,
.acms-grid-r:after {
  clear: both;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
.js .js-animation .section-heading,
.js .js-animation .entry-heading-center {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out, transform 0.4s ease-out;
}
.js .js-animation .module-group-list,
.js .js-animation .entry-column,
.js .js-animation .module-section,
.js .js-animation .suggest-center-box {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out 0.4s, transform 0.4s ease-out 0.4s;
}
.js .js-animation .main-slider-text-wrap {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity 0.2s ease-out 0.6s, transform 0.4s ease-out 0.6s;
}

.js-animation.is-show .section-heading,
.js-animation.is-show .entry-heading-center {
  opacity: 1;
  transform: translate(0);
}
.js-animation.is-show .module-group-list,
.js-animation.is-show .entry-column,
.js-animation.is-show .module-section,
.js-animation.is-show .suggest-center-box {
  opacity: 1;
  transform: translate(0);
}
.js-animation.is-show .main-slider-text-wrap {
  opacity: 1;
  transform: translate(0);
}

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

/*左から右*/
.fadeIn-bgextend {
  position: relative;
}

.fadeIn-bgextend.animated {
  opacity: 1;
}

.fadeIn-bgextend.animated::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #EB2D2D;
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0 -15px 10px;
  padding: 0;
  list-style: none;
}
.banner a {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.banner a:hover {
  opacity: 0.75;
}

.banner-item {
  margin: 0 0 15px 0;
}

.banner-img-center {
  margin: 0 auto;
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #666;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
}
.btn:hover, .btn:visited {
  color: #FFF;
  text-decoration: none;
}
.btn:focus, .btn:active {
  color: #FFF;
}
.btn:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}
.btn:active, .btn:focus {
  background: #444;
}

/* ボタン　色付き */
.btn-attention {
  background: #EB2D2D;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
}
.btn-attention:hover, .btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention:focus, .btn-attention:active {
  color: #FFF;
}
.btn-attention:hover {
  color: #FFF;
  background-color: #000;
  background-image: linear-gradient(to bottom, #EB2D2D, #000);
}
.btn-attention:active, .btn-attention:focus {
  background: #000;
}

/* ボタンサイズ大 */
.btn-large {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-large:hover, .btn-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-large:focus, .btn-large:active {
  color: #FFF;
}
.btn-large:hover {
  background: #444;
}
.btn-large:active, .btn-large:focus {
  background: #444;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #EB2D2D;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-attention-large:hover, .btn-attention-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention-large:focus, .btn-attention-large:active {
  color: #FFF;
}
.btn-attention-large:hover {
  background: #000;
}
.btn-attention-large:active, .btn-attention-large:focus {
  background: #000;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-block-large:hover, .btn-block-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-block-large:focus, .btn-block-large:active {
  color: #FFF;
}
.btn-block-large:hover {
  background: #444;
}
.btn-block-large:active, .btn-block-large:focus {
  background: #444;
}

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: #EB2D2D;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-attention-block-large:hover, .btn-attention-block-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention-block-large:focus, .btn-attention-block-large:active {
  color: #FFF;
}
.btn-attention-block-large:hover {
  background: #000;
}
.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: #000;
}

@media (min-width: 768px) {
  .btn-block-large {
    max-width: 360px;
  }

  .btn-attention-block-large {
    max-width: 360px;
  }
}
.btn-search-block {
  width: 100%;
  max-width: 165px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: 20px;
  }
}
/* ボーダーボタン */
.home-btn {
  margin: 20px auto 10px;
}

.btn-border {
  display: inline-block;
  padding: 7px 10px;
  color: #333;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-size: 16px;
}
.btn-border [class*=acms-icon-] {
  color: #CCC;
  font-size: 14px;
}
.btn-border:hover {
  text-decoration: none;
}

/* 影付きボタン */
.btn-shadow {
  box-shadow: 0 1rem 1rem -0.75rem rgba(0, 0, 0, 0.4);
}

.entry-column .entry-btn01 {
  background: #EB2D2D;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 10px 15px;
  border-radius: 24px;
  text-decoration: none;
  transition: 0.1s all;
}
.entry-column .entry-btn01:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: 0.1s all;
}

/* ------------------------------
　　カード
------------------------------ */
.card {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #E5E5E5;
}

.card-item {
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.card-link {
  display: block;
  margin: 0 -15px;
  padding: 10px;
  color: #333;
}
.card-link:hover {
  text-decoration: none;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.card-link:hover, .card-link:visited, .card-link:active, .card-link:focus {
  color: #333;
}

.card-img {
  margin: 0 0 10px 0;
}

.card-title {
  margin: 20px 0 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.card-detail {
  font-size: 13px;
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
}

.headline-link {
  color: #333;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 10px;
}
.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: #333;
}
.headline-link:hover {
  padding: 16px 10px;
  background: none;
  opacity: 0.7;
}

.headline-title {
  margin: 10px 0 0;
}

@media screen and (max-width: 479px) {
  /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-item {
    padding: 10px 0;
  }

  .headline-title {
    display: block;
    margin: 0;
  }
}
/* 1カラムページ用のヘッドライン */
.headline-1col {
  font-size: 16px;
}

/* ------------------------------
　　ページ上部のインフォーメーション
------------------------------ */
.info-bar {
  color: #FFF;
  background: #666;
}

.info-bar-contents {
  display: flex;
  width: 100%;
  align-items: center;
}

.info-bar-icon {
  display: flex;
  font-size: 24px;
}

.info-bar-message {
  padding: 0 15px;
}

.info-bar-link-wrap {
  margin-left: auto;
}

.info-bar-link {
  color: #FFF;
  padding: 5px 0;
}
.info-bar-link:link, .info-bar-link:visited, .info-bar-link:hover, .info-bar-link:active, .info-bar-link:focus {
  color: #FFF;
}
.info-bar-link:hover {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.info-bar-link-icon {
  margin: 0 10px 0 0;
}

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 10px 20px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-item:hover {
    padding: 10px 10px 10px 20px;
    -webkit-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }

  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 10px 30px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-label-parent:hover {
    padding: 10px 30px 10px 20px;
  }
}
/* 検索結果 */
.list-results-wrap {
  margin: 15px 0 15px 0;
  padding: 10px;
  border: 1px solid #CCC;
}

.list-results-heading {
  margin: 0 0 10px 0;
  padding: 5px;
  background: #E5E5E5;
}

.list-results {
  position: relative;
  margin: 0;
}

.list-results-item {
  position: absolute;
  width: 100px;
}

.list-results-detail {
  margin: 0;
  padding: 0 0 0 100px;
  font-weight: bold;
}

/* ------------------------------
　　メインビジュアル
------------------------------ */
.main-visual {
  display: flex;
  align-items: center;
  height: 350px;
  padding: 40px 5px;
  text-align: center;
  box-sizing: border-box;
  background: #EEE no-repeat center;
  background-size: cover;
  color: #FFF;
}

.main-visual-title {
  margin: 0 0 20px 0;
  font-size: 24px;
  font-weight: bold;
}

.main-visual-text {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.main-visual-center-btn {
  margin: 0;
}

.main-visual-title,
.main-visual-text,
.main-visual-center-btn {
  opacity: 0;
  animation: fadeUp 0.35s 1 both ease-out;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@media screen and (min-width: 768px) {
  .main-visual {
    height: 420px;
    padding: 50px 0;
  }

  .main-visual-title {
    margin: 0 0 30px 0;
    font-size: 30px;
  }

  .main-visual-text {
    margin: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 767px) {
  .main-visual-center-btn .btn-attention-block-large {
    padding: 15px 15px;
    font-size: 16px;
  }
}
/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
  margin: 0 0 30px 0;
}

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}
.module-header + .thumbnail, .module-header + .summary-default, .module-header + .entry-column, .module-header + .card, .module-header + .search-form, .module-header + .banner {
  margin-top: 10px;
}

.module-heading {
  margin: 0;
  font-size: 18px;
}
.module-heading [class*=acms-icon-] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
  font-size: 16px;
}
a.module-index-link [class*=acms-icon-] {
  color: #CCC;
  font-size: 14px;
}

/* カスタムフィールドグループ */
.module-group-list {
  margin: 0;
  padding: 0 15px;
  list-style: none;
}

.module-group-heading {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.2;
}

.module-group-detail {
  margin: 0 0 30px 0;
  font-size: 16px;
  line-height: 1.7;
}

/* 行揃えの設定 */
/* 見出し */
.heading-align-left .module-group-heading {
  text-align: left;
}
.heading-align-center .module-group-heading {
  text-align: center;
}
.heading-align-right .module-group-heading {
  text-align: right;
}

/* 概要文 */
.detail-align-left .module-group-detail {
  text-align: left;
}
.detail-align-center .module-group-detail {
  text-align: center;
}
.detail-align-right .module-group-detail {
  text-align: right;
}

/* ボタン */
.btn-align-left .module-group-btn-wrap {
  text-align: left;
}
.btn-align-center .module-group-btn-wrap {
  text-align: center;
}
.btn-align-right .module-group-btn-wrap {
  text-align: right;
}

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: 100px;
  color: #FFF;
  background: url("../../images/title_company.jpg") #333 no-repeat center;
  background-size: cover;
}

.page_title_wrap {
  margin-top: 100px;
  background-color: #FFFBF4;
}
.page_title_wrap .page_title_inner {
  margin: 0 auto;
  padding: 30px 0 22px;
  text-align: center;
}

.page-description {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
}

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 300px;
  }
}
@media (max-width: 1024px) {
  .page_title_wrap {
    margin-top: 54px;
  }
}
@media (max-width: 768px) {
  .page_title_wrap {
    margin-top: 0;
  }
}
/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  margin: 0 -5px 50px -5px;
  padding: 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline-block;
  margin: 0 5px;
}
.pager li.cur {
  /* 現在いる位置 */
  padding: 5px 20px;
  color: #FFF;
  background: #767676;
  border-radius: 3px;
}

.pager-link {
  display: block;
  padding: 5px 20px;
  color: #333;
  background: #E5E5E5;
  border-radius: 3px;
}
.pager-link:visited, .pager-link:focus, .pager-link:active {
  color: #333;
}
.pager-link:hover {
  color: #FFF;
  text-decoration: none;
  background: #333;
}

.pager-link-forward {
  float: right;
}

.pager-link-prev {
  float: left;
}

@media screen and (min-width: 768px) {
  .pager-link {
    padding: 5px 10px;
  }

  .pager li.cur {
    /* 現在いる位置 */
    padding: 5px 10px;
  }
}
/* 前後リンク */
.serial-nav {
  margin: -50px 0 60px 0;
  padding: 0;
  list-style: none;
}
.serial-nav .serial-nav-item {
  display: block;
  float: none;
}
.serial-nav .serial-nav-item-prev {
  text-align: left;
}
.serial-nav .serial-nav-item-next {
  text-align: right;
}
.serial-nav a {
  display: block;
  padding: 25px 0;
  color: #333;
  border-bottom: 1px solid #E5E5E5;
}
.serial-nav a:hover, .serial-nav a:visited, .serial-nav a:focus, .serial-nav a:active {
  color: inherit;
  text-decoration: none;
}
.serial-nav a:hover {
  background: #E5E5E5;
}

@media screen and (min-width: 768px) {
  .serial-nav {
    margin: 0 0 60px 0;
    border: 0;
  }
  .serial-nav .serial-nav-item-prev {
    float: left;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    display: inline;
    border: 0;
  }
  .serial-nav a:hover {
    text-decoration: underline;
    background: 0;
  }
}
/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #FFF;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  filter: none;
  /* IEでのグラデーションを上書き */
  font-size: 16px;
}
.search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
  background: #666;
}
.search-form input[type=search] {
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  box-sizing: border-box;
}

input[type=search].search-form-input {
  padding-top: 5px;
  padding-bottom: 4px;
  font-size: 20px;
  box-sizing: border-box;
}

/* ------------------------------
　　セクション
------------------------------ */
/* 背景色 */
.section-bg {
  padding: 20px 0;
  background: #F6F6F6;
}

.section-space {
  padding: 20px 0;
}

/* カラムの中央寄せ */
.section-center-col {
  float: none;
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  margin: 20px 0;
  font-size: 24px;
}
.section-heading a {
  color: #333;
}

@media screen and (min-width: 768px) {
  /* 背景色 */
  .section-bg {
    padding: 80px 0;
  }

  .section-space {
    padding: 80px 0;
  }

  /* 見出し */
  .section-heading {
    margin: 20px 0 40px 0;
    font-size: 28px;
  }
}
/* ------------------------------
　　スライダー
------------------------------ */
.top_mainimag {
  position: relative;
  margin-top: 100px;
  background: linear-gradient(#fff 10%, #FFFBF4 10%);
  overflow: hidden;
}

.top_mainimag_inner {
  position: relative;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.slick-slider {
  margin: 0 0 0 auto;
  padding: 0 0 7vh;
  width: 90%;
}
.slick-slider img {
  margin: 0 auto;
}

.fix-height {
  height: 77vh;
  /* はじめのちらつき防止 */
  overflow: hidden;
  /* はじめのちらつき防止 */
}

.slide {
  position: relative;
  max-height: 680px;
  height: 77vh;
  transition: transform 8s linear;
  transform: scale(1.2);
}
.zooming .slide {
  transform: scale(1);
}

.top_img01 .slide {
  background: url("../../images/top_main01.jpg") no-repeat center top;
  background-size: cover;
}

.top_img02 .slide {
  background: url("../../images/top_main02.jpg") no-repeat center top;
  background-size: cover;
}

.top_img03 .slide {
  background: url("../../images/top_main03.jpg") no-repeat center top;
  background-size: cover;
}

.top_img04 .slide {
  background: url("../../images/top_main04.jpg") no-repeat center top;
  background-size: cover;
}

.top_img05 .slide {
  background: url("../../images/top_main05.jpg") no-repeat center top;
  background-size: cover;
}

/* ちらつき防止 */
.slick-track,
.slick-list {
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
}

/* ドットのナビゲーション */
.slick-dots {
  position: relative;
  clear: both;
  margin: -35px 0 0 0;
  padding: 0;
  text-align: center;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
}

.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 8px;
  font-size: 0;
  background: #FFF;
  border: 1px solid transparent;
  border-radius: 7px;
  content: "";
}

.slick-dots li button:focus {
  border: 1px solid #EB2D2D;
  outline: 0;
}

.slick-dots li:hover button {
  cursor: pointer;
}

.slick-dots li.slick-active button {
  background: #EB2D2D;
}

.slick-dots button {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  position: absolute;
  bottom: 7vh;
  left: 5%;
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -18px;
  top: -15px;
  /*テキストの形状*/
  color: #000;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #000;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.kanekichi_here_wrap {
  position: fixed;
  top: 0;
  right: -13px;
  z-index: 99998;
}
.kanekichi_here_wrap a {
  color: #000;
}
.kanekichi_here_wrap a img {
  margin-left: 8px;
  width: 130px;
  height: auto;
}
.kanekichi_here_wrap .kanekichi_here_inner {
  position: relative;
  width: 209px;
  height: 209px;
  line-height: 209px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(-1px 1px 3px rgba(0, 0, 0, 0.16));
}
.kanekichi_here_wrap .kanekichi_here_inner .kanekichi_here_box {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  line-height: 1;
}
.kanekichi_here_wrap .kanekichi_here_inner .kanekichi_here_box p {
  margin: 0 auto 3px;
  line-height: 1.2;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}
.kanekichi_here_wrap .kanekichi_here_inner:hover {
  background: #FFEDCC;
}

@media screen and (min-width: 768px) {
  .slick-prev {
    left: 50px;
  }

  .slick-next {
    right: 50px;
  }

  .fix-height {
    max-height: 100%;
    height: calc(93vh - 100px);
    /* はじめのちらつき防止 */
  }

  .slide {
    max-height: 100%;
    height: calc(93vh - 100px);
  }
}
.slider_text_inner {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  background-color: transparent;
}
.slider_text_inner p {
  margin: 0;
  color: #EB2D2D;
  font-size: 40px;
  font-weight: bold;
  text-align: left;
}
.slider_text_inner p span {
  padding: 2px 10px;
  background-color: #EB2D2D;
}
.slider_text_inner p span.animated {
  color: #fff;
}
.slider_text_inner p:nth-of-type(1) {
  margin-bottom: 30px;
}

@media screen and (max-width: 1023px) {
  .top_mainimag {
    margin-top: 54px;
  }

  .kanekichi_here_wrap {
    position: relative;
    display: none;
  }

  .scroll_box {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .top_mainimag {
    margin-top: 10px;
  }

  .top_img01 .slide {
    background: url("../../images/top_sp_img01.jpg") no-repeat center top;
    background-size: cover;
  }

  .top_img02 .slide {
    background: url("../../images/top_sp_img02.jpg") no-repeat center top;
    background-size: cover;
  }

  .top_img03 .slide {
    background: url("../../images/top_sp_img03.jpg") no-repeat center top;
    background-size: cover;
  }

  .top_img04 .slide {
    background: url("../../images/top_sp_img04.jpg") no-repeat center top;
    background-size: cover;
  }

  .top_img05 .slide {
    background: url("../../images/top_sp_img05.jpg") no-repeat center top;
    background-size: cover;
  }

  .slider_text_inner {
    bottom: 0%;
    left: 2%;
    transform: translateY(0);
    -webkit-transform: translateY(0);
  }
  .slider_text_inner p {
    font-size: 26px;
  }
}
@media screen and (max-width: 479px) {
  .slider_text_inner p {
    font-size: 24px;
  }
}
/* ------------------------------
　　提案エリア
------------------------------ */
/* お問い合わせ提案エリア */
.suggest-item {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* お問い合わせ提案エリア 中央寄せ */
.suggest-center-box {
  padding: 70px 0;
  border-top: 1px solid #DDDDDD;
}

.suggest-center-box .h2-title01 {
  padding: 0 0 40px;
}
.suggest_textbox {
  padding: 0 15px;
}
.suggest_textbox p {
  margin: 0;
  line-height: 170%;
}
.suggest_textbox p:nth-of-type(1) {
  padding: 0 0 30px;
}
.suggest_linkbox .suggest_tel_box {
  display: inline-block;
  width: 49%;
  vertical-align: middle;
}
.suggest_linkbox .suggest_tel_box .suggest_tel_box_inner {
  margin: 0 auto;
  max-width: 300px;
  width: 100%;
  height: 135px;
  padding: 30px;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.suggest_linkbox .suggest_tel_box p {
  margin: 0;
  color: #454545;
  font-weight: bold;
  line-height: 1.5;
}
.suggest_linkbox .suggest_tel_box p:nth-of-type(2) a {
  color: #454545;
}
.suggest_linkbox .suggest_tel_box p:last-of-type {
  font-size: 12px;
}
.suggest_linkbox .suggest_tel_box .suggest_tel {
  margin: 0;
  color: #454545;
  font-weight: bold;
  line-height: 1.5;
  font-size: 24px;
}
.suggest_linkbox .suggest_tel_box .suggest_tel a {
  color: #454545;
}
.suggest_linkbox .suggest_mail_box {
  display: inline-block;
  width: 50%;
  vertical-align: middle;
}
.suggest_linkbox .suggest_mail_box .suggest_mail_box_inner {
  margin: 0 0 0 auto;
  max-width: 300px;
  width: 100%;
  height: 135px;
  padding: 20px 30px 30px 30px;
  border: 1px solid #707070;
  box-sizing: border-box;
}
.suggest_linkbox .suggest_mail_box p {
  font-weight: bold;
}
.suggest_linkbox .suggest_mail_box .top_btn div {
  width: 220px;
}
.suggest_linkbox .suggest_mail_box .top_btn div img {
  margin-top: 3px;
  padding-right: 10px;
  width: 13.5px;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 1023px) {
  .suggest_textbox p {
    text-align: center;
  }
  .suggest_textbox p:nth-of-type(1) {
    padding: 0 0 10px;
  }
  .suggest_linkbox .suggest_tel_box {
    width: 100%;
  }
  .suggest_linkbox .suggest_tel_box .suggest_tel_box_inner {
    margin: 35px auto 30px;
  }
  .suggest_linkbox .suggest_mail_box {
    width: 100%;
  }
  .suggest_linkbox .suggest_mail_box .suggest_mail_box_inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .suggest_textbox p {
    text-align: left;
  }
}
/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
}
.summary-default:before, .summary-default:after {
  display: table;
  content: " ";
}
.summary-default:after {
  clear: both;
}
.summary-default.slick-initialized {
  margin-right: -10px;
  margin-left: -10px;
  overflow: hidden;
  border: 0;
}
.summary-default .slick-list {
  padding: 0 0 0 20px;
  overflow: inherit;
}
.summary-default .slick-dots {
  margin: 0;
}
.summary-default .slick-dots button {
  background: #E5E5E5;
}
.summary-default .slick-dots .slick-active button {
  background: #EB2D2D;
}

.summary-default-item {
  display: block;
  padding: 0 15px;
  color: #333;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}
.acms-entry .summary-default-item {
  padding: 15px;
}
.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
}

.summary-default-link {
  display: block;
  margin: 0 -15px;
  padding: 10px;
  color: #333;
  transition: background 0.2s;
}
.summary-default-link:hover, .summary-default-link:visited, .summary-default-link:active, .summary-default-link:focus {
  color: #333;
}
.summary-default-link:hover {
  text-decoration: none;
  background: #F1F1F1;
}

.summary-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: bold;
}

.summary-detail {
  margin: 0;
  line-height: 1.5;
  font-size: 13px;
}

@media screen and (min-width: 480px) {
  .summary-default {
    margin: 0 0 20px 0;
  }
}
/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumbnail-row {
  margin: 0 15px;
  padding: 0;
  list-style: none;
}

.thumbnail-item {
  margin: 0 0 20px 0;
}

@media screen and (max-width: 767px) {
  .thumbnail-row .thumbnail-item {
    padding-right: 7.5px;
    padding-left: 7.5px;
  }
}
.thumbnail-link {
  display: block;
  color: #333;
  transition: opacity 0.2s;
}
.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.75;
}
.thumbnail-link:visited {
  color: #333;
}

.thumbnail-img {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  backface-visibility: hidden;
}

.thumbnail-title {
  margin: 10px 0;
  font-weight: bold;
  font-size: 15px;
}

.thumbnail-detail {
  margin: 0;
  line-height: 1.5;
  font-size: 12px;
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  margin-bottom: 30px;
  padding: 10px 0;
  background: #F5F5F5;
}

.topicpath-list {
  margin: 0 auto;
  list-style: none;
}

.topicpath-item {
  float: left;
  padding: 0 10px 0 23px;
  background: url("../../images/marker/icon_arrow.png") no-repeat left center;
}
.topicpath-item:first-child {
  padding: 0 10px 0 0;
  background: 0;
}

.topicpath-link {
  color: #666;
  font-size: 14px;
}
.topicpath-link:visited, .topicpath-link:focus, .topicpath-link:active {
  color: #666;
}

/* ------------------------------
 ユニットグループ
------------------------------- */
/* ------------------------------
 フロート解除
------------------------------ */
.clearHidden {
  display: block;
  clear: both;
  height: 0;
  margin: 0;
  border: none;
  visibility: hidden;
}

/* ------------------------------
 動的フォーム
------------------------------ */
/* ------------------------------
 エントリー内 主な要素
------------------------------ */
.entry-column [class*=acms-col-] {
  padding: 0;
}

/* ------------------------------
 テキストユニットの設定
------------------------------ */
.entry-column h2 {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column h3 {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column h4 {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column h5 {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column h6 {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column dl {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column p {
  margin-right: 15px;
  margin-left: 15px;
}
.entry-column blockquote {
  margin: 0 0 30px 0;
  padding: 10px 20px;
  border-left: solid 5px #ccc;
}

/* ------------------------------
各種ユニットの設定
------------------------------ */
.entry-column [class*=column-image] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-file] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-map] {
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  box-sizing: border-box;
}

.entry-column [class*=column-yolp] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-street-view]:not(.column-street-view-inner) {
  padding-right: 15px;
  padding-left: 15px;
}

.entry-column [class*=column-youtube] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-video] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-eximage] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-media] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

.entry-column [class*=column-quote] {
  margin-right: 15px;
  margin-left: 15px;
}

.entry-column [class*=column-module] {
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

[class*=column-image] {
  margin-bottom: 20px;
}

[class*=column-file] {
  margin-bottom: 20px;
}

[class*=column-map] {
  margin-bottom: 20px;
}

[class*=column-yolp] {
  margin-bottom: 20px;
}

[class*=column-street-view] {
  margin-bottom: 20px;
}

[class*=column-youtube] {
  margin-bottom: 20px;
}

[class*=column-video] {
  margin-bottom: 20px;
}

[class*=column-eximage] {
  margin-bottom: 20px;
}

[class*=column-media] {
  margin-bottom: 20px;
}

[class*=column-quote] {
  margin-bottom: 20px;
}

[class*=column-module] {
  margin-bottom: 20px;
}

/* 画像・メディア・画像URLの共通設定 */
[class*=column-image],
[class*=column-media],
[class*=column-eximage] {
  display: block;
}
[class*=column-image].caption,
[class*=column-media].caption,
[class*=column-eximage].caption {
  margin-bottom: 10px;
}
[class*=column-image] a,
[class*=column-media] a,
[class*=column-eximage] a {
  display: block;
}
[class*=column-image] img,
[class*=column-media] img,
[class*=column-eximage] img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
[class*=column-image] .caption,
[class*=column-media] .caption,
[class*=column-eximage] .caption {
  margin: 5px 0 0 0;
}

/* 画像ユニットの設定 */
[class*=column-image][style*=width] {
  max-width: 100%;
}

/* メディアの種類がファイルだった時の設定 */
[class*=column-media] a[href*=media-download] {
  display: inline-block;
  width: 100%;
}

/* 地図・Yahooo!地図の共通設定 */
[class*=column-map] > img,
[class*=column-yolp] > img {
  max-width: 100%;
}
[class*=column-map] img,
[class*=column-yolp] img {
  width: auto;
  height: auto;
}

[class*=column-map] > div {
  max-width: 100%;
}

[class*=column-yolp] {
  width: auto !important;
}

[class*=column-quote] {
  /* 引用ユニット画像 */
  /* 引用ユニットテキスト */
}
[class*=column-quote] blockquote {
  padding: 20px 10px 20px 20px;
}
[class*=column-quote] .quoteImageContainer {
  position: relative;
  float: left;
  max-width: 154px;
  margin-right: 25px;
}
[class*=column-quote] .quoteImage {
  display: block;
  max-width: 100%;
  height: auto;
}
[class*=column-quote] .quoteTitle {
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.4;
  font-size: 18px;
}
[class*=column-quote] .quoteTitleLink {
  color: #006cd8;
}
[class*=column-quote] .quoteSiteName {
  margin: 0 0 10px 0;
  padding: 0;
  color: #666;
  font-size: 11px;
}
[class*=column-quote] .quoteDescription {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  font-size: 12px;
}

/* 配置のスタイル */
.column-image-left {
  float: left;
  text-align: left;
}

.column-image-right {
  float: right;
  text-align: right;
}

.column-image-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-image-auto {
  float: none;
}

/* 配置のスタイル */
.column-file-left {
  text-align: left;
  float: left;
  text-align: left;
}
.column-file-left + .caption {
  text-align: left;
}

.column-file-right {
  text-align: right;
  float: right;
  text-align: right;
}
.column-file-right + .caption {
  text-align: right;
}

.column-file-center {
  text-align: center;
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.column-file-center + .caption {
  text-align: center;
}

.column-file-auto {
  text-align: auto;
  float: none;
}
.column-file-auto + .caption {
  text-align: auto;
}

/* 配置のスタイル */
.column-map-left {
  float: left;
  text-align: left;
}

.column-map-right {
  float: right;
  text-align: right;
}

.column-map-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-map-auto {
  float: none;
}

/* 配置のスタイル */
.column-yolp-left {
  float: left;
  text-align: left;
}

.column-yolp-right {
  float: right;
  text-align: right;
}

.column-yolp-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-yolp-auto {
  float: none;
}

/* 配置のスタイル */
.column-street-view-left {
  float: left;
  text-align: left;
}

.column-street-view-right {
  float: right;
  text-align: right;
}

.column-street-view-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-street-view-auto {
  float: none;
}

/* 配置のスタイル */
.column-youtube-left {
  float: left;
  text-align: left;
}

.column-youtube-right {
  float: right;
  text-align: right;
}

.column-youtube-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-youtube-auto {
  float: none;
}

/* 配置のスタイル */
.column-video-left {
  float: left;
  text-align: left;
}

.column-video-right {
  float: right;
  text-align: right;
}

.column-video-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-video-auto {
  float: none;
}

/* 配置のスタイル */
.column-eximage-left {
  float: left;
  text-align: left;
}

.column-eximage-right {
  float: right;
  text-align: right;
}

.column-eximage-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-eximage-auto {
  float: none;
}

/* 配置のスタイル */
.column-media-left {
  float: left;
  text-align: left;
}
.column-media-left :not([href*=media-download]) + .caption {
  text-align: center;
}

.column-media-right {
  float: right;
  text-align: right;
}
.column-media-right :not([href*=media-download]) + .caption {
  text-align: center;
}

.column-media-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.column-media-center :not([href*=media-download]) + .caption {
  text-align: center;
}

.column-media-auto {
  float: none;
}
.column-media-auto :not([href*=media-download]) + .caption {
  text-align: center;
}

/* 配置のスタイル */
.column-quote-left {
  float: left;
  text-align: left;
}

.column-quote-right {
  float: right;
  text-align: right;
}

.column-quote-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-quote-auto {
  float: none;
}

/* 配置のスタイル */
.column-module-left {
  float: left;
  text-align: left;
}

.column-module-right {
  float: right;
  text-align: right;
}

.column-module-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-module-auto {
  float: none;
}

/* .acms-entry-unit-fullの設定 */
.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-image] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-file] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-map] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-yolp] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-street-view] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-youtube] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-video] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-eximage] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-media] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-quote] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-module] {
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 480px) {
  [class*=acms-col-][class*=-right] {
    float: left;
  }

  [class*=acms-col-][class*=-right] + * {
    clear: both;
  }
}
/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: 15px;
  margin-left: 15px;
}

/* PDFプレビュー */
.column-pdf-image {
  width: 100%;
  border: solid 1px #aaa;
}

/* ストリートビュー */
.column-inner-street-view {
  width: 100%;
  padding-bottom: 100%;
}

/* YouTube動画をレスポンシブ対応させるための記述 */
.column-youtube,
.column-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.column-youtube iframe,
.column-youtube object,
.column-youtube embed,
.column-iframe iframe,
.column-iframe object,
.column-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------
 検索
------------------------------ */
/* 検索結果のハイライト
------------------------------ */
.highlight1 {
  background-color: #FFFF66;
}

.highlight2 {
  background-color: #a0FFFF;
}

.highlight3 {
  background-color: #99FF99;
}

.highlight4 {
  background-color: #FF9999;
}

.highlight5 {
  background-color: #FF66FF;
}

.highlight6 {
  background-color: #880000;
}

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 100px 0;
}

.page-header {
  margin: 0 0 20px 0;
  border: none;
}

.entry-info {
  margin: 0 auto 20px;
  font-size: 18px;
  text-align: center;
}

/* カテゴリーと新着ラベル */
.entry-category,
.entry-new {
  font-size: 12px;
}

/* タイトル */
.entry-title {
  margin: 10px 0;
  text-align: center;
}
.entry-title a {
  color: #333;
}
.acms-entry h2 .entry-title {
  padding: 0;
}

.entry-column-top {
  padding: 0 5px;
}

.entry-column-grid {
  margin: 0 -15px;
}

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}
.entry-column h2 {
  margin: 50px 15px 50px 15px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.entry-column h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}
.entry-column h2.entry-heading-center {
  position: relative;
  margin: 20px 0 25px 0;
  font-size: 16px;
  text-align: center;
  border: 0;
  color: #333;
}
.entry-column h3 {
  margin: 0 15px 20px 15px;
  padding: 5px 10px;
  font-size: 24px;
  color: #333;
  text-align: center;
}
.entry-column h4 {
  margin: 0 15px 20px 15px;
  font-size: 18px;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}
.entry-column .h2_left {
  text-align: left;
}
.entry-column .h3_left {
  padding: 5px 0;
  text-align: left;
}
.entry-column .h4_left {
  text-align: left;
}
.entry-column a:link {
  text-decoration: none;
}
.entry-column a:hover, .entry-column a:focus, .entry-column a:active {
  text-decoration: underline;
}
.entry-column a:visited {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .entry-column h2.entry-heading-center {
    margin: 0 20px 35px 0;
    font-size: 22px;
  }
  .entry-column h2.entry-heading-center:before {
    bottom: -15px;
  }
}
/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}
.entry-column p.entry-danger-text {
  color: #EB2D2D;
  font-weight: bold;
}
.entry-column p.summary-title {
  margin: 0 0 10px 0;
}
.entry-column p.summary-detail {
  margin: 0 0 10px 0;
  font-size: 14px;
}
.entry-column p.entry-lead-text {
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}
.entry-column p.bold {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .entry-column p.entry-lead-text {
    margin: 0 0 40px 0;
    font-size: 30px;
  }
}
/* エントリー内コンテナー */
.entry-container {
  margin: 0 15px;
}

[class^=column-table] .entry-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

[class^=column-table] table {
  margin-bottom: 0;
}

/* テーブル */
.entry-column table {
  width: 100%;
  border-collapse: collapse;
}
.entry-column th,
.entry-column td {
  display: block;
  padding: 5px 10px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dfdfdf;
  font-size: 16px;
}
.entry-column .acms-table-responsive {
  border-top: 0;
  border-bottom: 0;
}
.entry-column .acms-table-responsive th,
.entry-column .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}
.entry-column .acms-table-responsive table {
  margin: 0;
}
.entry-column th {
  background: #FFFBF4;
}
.entry-column .entry-custom-table {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .entry-column th,
.entry-column td {
    display: table-cell;
    padding: 15px 20px 15px 0;
    text-align: left;
    font-size: 16px;
    border-top: 1px solid #DDDDDD;
    background: none;
  }
  .entry-column th {
    width: 20%;
  }
  .entry-column td {
    background: inherit;
  }
  .entry-column tr:first-of-type th,
.entry-column tr:first-of-type td {
    border-top: none;
  }
}
/* リスト */
.entry-column ul {
  margin: 0 15px 25px 15px;
  padding: 0 0 0 2em;
}
.entry-column ul li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}
.entry-column ul.summary-default {
  padding: 0;
}
.entry-column ul.summary-default li {
  margin: 0;
}

/* 番号付きリスト */
.entry-column ol {
  margin: 0 15px 25px 15px;
  padding: 0 0 0 2em;
}
.entry-column ol li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 定義リスト */
.entry-column dl {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.entry-column dt {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.entry-column dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

/* 引用 */
.entry-column blockquote {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px 20px 20px;
  line-height: 1.8;
  background: #F5F5F5;
  border-left: 5px solid #DEDEDE;
  font-size: 16px;
}
.entry-column .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #D0D0D0;
}
.entry-column .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media screen and (min-width: 480px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-column .column-quote-auto blockquote {
    padding: 15px;
  }
}
/* ソースコード */
.entry-column pre {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 30px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
}
.entry-column pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}
.entry-column pre ol li {
  line-height: 1.5;
}

/* 区切り線 */
.entry-column hr {
  border: 0;
  border-bottom: 1px solid #E5E5E5;
}

/* ユニット */
.entry-column .caption {
  font-size: 13px;
}

.column-file-auto + .caption {
  margin-left: 15px;
}

[class*=column-media-] a,
[class*=column-image-] a {
  transition: opacity 0.2s;
}
[class*=column-media-] a:hover,
[class*=column-image-] a:hover {
  opacity: 0.8;
}

/* ユニットグループ */
.ug-bg-color {
  margin: 0 15px 50px 15px;
  padding: 20px 10px;
  background: #F5F5F5;
  overflow: hidden;
}
.ug-bg-color *:last-child {
  margin-bottom: 0;
}
.ug-bg-color h2 {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}
.ug-bg-color h3,
.ug-bg-color h4 {
  margin-bottom: 10px;
}

@media screen and (min-width: 480px) {
  .ug-bg-color {
    padding: 25px 15px;
  }
}
/* スタッフ紹介 */
.entry-column .staff-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 15px 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #EEE;
}
.entry-column .staff-item {
  width: 50%;
  margin: 0;
}
.entry-column .staff-inner {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 10px;
  border-bottom: 1px solid #EEE;
}
.entry-column .staff-body {
  order: 2;
  margin: 0 0 20px 0;
}
.entry-column .staff-name {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1.3;
  text-align: center;
  background: 0;
  font-size: 20px;
}
.entry-column .staff-job {
  margin: 15px 0 5px 0;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
.entry-column .staff-profile {
  margin: 0;
  font-size: 14px;
}
.entry-column .staff-img-wrap {
  order: 1;
}
.entry-column .staff-img {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
}

@media screen and (min-width: 768px) {
  .entry-column .staff-item {
    width: 25%;
  }
  .entry-column .staff-body {
    margin: 0;
  }
}
/* 動的フォーム */
.entry-column ul.contact-form {
  margin: 0;
  padding: 0;
}
.entry-column ul.contact-form li {
  margin: 0;
}
.entry-column tr.contact-form-group:nth-child(odd) {
  background: inherit;
}
.entry-column .contact-form th,
.entry-column .contact-form td {
  background: inherit;
  border: 0;
}

/* エントリーフッター */
.entry-footer {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px 0;
  padding: 10px;
  background: #f5f5f5;
}

/* タグ */
.entry-tag {
  margin: 0 0 5px 0;
}

.entry-tag-icon {
  float: left;
  color: #707070;
}

.entry-tag-item {
  float: left;
  margin: 0 0 0 10px;
}

.entry-footer-item + .entry-footer-item {
  margin: 10px 0 0 0;
}

@media screen and (min-width: 768px) {
  .entry-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .entry-footer-item + .entry-footer-item {
    margin: 0 0 0 auto;
  }
}
/* SNSシェア */
.share-wrapper {
  display: flex;
  align-items: center;
}

.share-text {
  display: inline;
  float: left;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .share-wrapper {
    float: right;
  }
}
/* SNSシェアボタン */
.share-list {
  display: inline-flex;
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-item {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: top;
}
.share-item a {
  color: #999;
  text-decoration: none;
}
.share-item [class*=acms-icon] {
  font-size: 22px;
  vertical-align: middle;
}
.share-item .share-item-facebook {
  /* Facebook */
  position: relative;
  color: #1877f2;
  line-height: 1.2;
}
.share-item .share-item-facebook:before {
  vertical-align: middle;
}
.share-item .share-item-facebook:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}
.share-item .share-item-twitter {
  /* Twitter */
  position: relative;
  color: #55ACEE;
  line-height: 1.2;
}
.share-item .share-item-twitter:before {
  vertical-align: middle;
}
.share-item .share-item-twitter:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}

/* 続きを読むボタン */
@media screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }

  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }
}
.label_class {
  width: 56px;
  margin-right: 8px;
  padding: 2px 8px;
  font-size: 12px;
  color: #FFFBF4;
  background-color: #eb2d2d;
  vertical-align: middle;
}
.label_class:nth-of-type(1) {
  margin-left: 10px;
}

.label_new {
  padding: 0 8px 0 0;
  color: #DC0016;
  font-size: 14px;
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
  /* ボタン内のアイコン */
}
.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
}
.entry-column .entry-btn-default:hover, .entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  color: #FFF;
  text-decoration: none;
}
.entry-column .entry-btn-default:focus, .entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
  color: #FFF;
}
.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}
.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #444;
}
.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #EB2D2D;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
}
.entry-column .entry-btn-attention:hover, .entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}
.entry-column .entry-btn-attention:focus, .entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
  color: #FFF;
}
.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #000;
  background-image: linear-gradient(to bottom, #EB2D2D, #000);
}
.entry-column .entry-btn-attention:active, .entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #000;
}
.entry-column .entry-btn-icon-before,
.entryFormLiteEditor .entry-btn-icon-before {
  margin: 0 10px 0 0;
}
.entry-column .entry-btn-icon-after,
.entryFormLiteEditor .entry-btn-icon-after {
  margin: 0 0 0 10px;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.field-title {
  padding: 0 10px;
}

.field-title:first-child {
  margin: 0 0 10px 0;
}

.field-table-inner {
  width: 100%;
}
.field-table-inner th,
.field-table-inner td {
  border: 0;
}

/* ------------------------------
　　メインカラム
------------------------------ */
.main:before, .main:after {
  display: table;
  content: " ";
}
.main:after {
  clear: both;
}

.main-inner {
  width: 100%;
  max-width: 820px;
}
.main-inner.is-space-left {
  float: right;
}
.main-inner.is-space-right {
  float: left;
}
.main-inner.is-space-center {
  margin: 0 auto;
}

/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
  margin-top: 0;
  font-size: 18px;
}

/* ------------------------------
　　追加
------------------------------ */
.top_btn {
  margin: 0 auto;
}

.top_btn div {
  position: relative;
  width: 180px;
  margin: 0 auto 0 0;
  padding: 11px 0 11px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  background-color: #333333;
  transition: 0.1s all;
  display: flex;
  align-items: center;
}
.top_btn div:after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  margin: 0 0 0 auto;
  background: #fff;
}

.continue_btn div {
  margin: 0 15px;
  max-width: 350px;
  width: 80%;
  transition: all 300ms 0s ease;
}

.top_btn div a,
.top_btn div a:visited {
  text-decoration: none;
  color: #fff;
}

.top_btn div:hover {
  color: #fff;
  background-color: #EB2D2D;
  text-decoration: none;
}

.top_btn div:hover a,
.top_btn div:hover a:visited {
  color: #fff;
}

.h1-title01 h1,
.h1-title01 p {
  position: relative;
  margin: 0;
  padding-right: 10px;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #EB2D2D;
  vertical-align: middle;
}
.h1-title01 h1::after,
.h1-title01 p::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #333333;
  position: absolute;
  top: 3px;
  right: -10px;
}
.h1-title01 span {
  margin-top: 5px;
  padding-left: 27px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 100%;
  vertical-align: middle;
}

.h2-title01 h2 {
  position: relative;
  margin: 0;
  padding-right: 10px;
  display: inline-block;
  font-size: 24px;
  color: #EB2D2D;
  vertical-align: middle;
}
.h2-title01 h2::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #333333;
  position: absolute;
  top: 3px;
  right: -10px;
}
.h2-title01 span {
  margin-top: 5px;
  padding-left: 27px;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  line-height: 100%;
  vertical-align: middle;
}

.h2-title01_news {
  margin-bottom: 40px;
  text-align: center;
}
.h2-title01_news h2::after {
  background-color: #DDDDDD;
}

.action_wrap {
  margin-top: 0px;
}

@media screen and (min-width: 768px) {
  .action_wrap {
    margin-top: 54px;
  }

  .h2-title01_news {
    text-align: left;
  }
}
@media screen and (min-width: 1024px) {
  .action_wrap {
    margin-top: 100px;
  }
}
/* ------------------------------
　　トップページ　お知らせ
------------------------------ */
.top_news_wrap .top_btn {
  margin: 0 auto 50px;
  text-align: center;
}

/* ------------------------------
　　トップページ　ブランド一覧
------------------------------ */
.top_brand_wrap {
  background: linear-gradient(#FFFBF4 50%, #fff 50%);
}
.top_brand_wrap .top_brand_inner {
  margin: 0 auto;
  padding: 60px 0 70px;
  max-width: 1366px;
  width: 100%;
}

/* ------------------------------
　　トップページ　共通
------------------------------ */
.top_box_imgbox {
  display: table;
  width: 100%;
}
.top_box_imgbox .top_box_imgbox_img {
  display: table-cell;
  margin: 0 auto 0 0;
  width: 60%;
  height: 500px;
  box-shadow: 6px 3px 20px #999;
}
.top_box_imgbox .top_box_imgbox_text {
  display: table-cell;
  width: 40%;
}
.top_box_imgbox .top_box_imgbox_text .top_box_imgbox_text_inner {
  margin: 0 0 0 20%;
  width: 70%;
}
.top_box_imgbox .top_box_imgbox_text p:nth-of-type(1) {
  padding: 35px 0 40px;
  font-size: 18px;
  font-weight: bold;
}
.top_box_imgbox .top_box_imgbox_text p:nth-of-type(2) {
  margin: 0 auto 40px;
  line-height: 170%;
}

section.top_brand_wrap .top_box_imgbox .top_box_imgbox_img {
  background: url("../../images/top_brand.jpg") no-repeat center center;
  background-size: cover;
}

section.top_quality_wrap .top_box_imgbox .top_box_imgbox_img {
  background: url("../../images/top_quality.jpg") no-repeat center center;
  background-size: cover;
}

section.top_recruit_wrap .top_box_imgbox .top_box_imgbox_img {
  background: url("../../images/top_recruit01.jpg") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .top_box_imgbox .top_box_imgbox_img {
    display: inline-block;
    width: 100%;
    height: 280px;
  }
  .top_box_imgbox .top_box_imgbox_text {
    display: inline-block;
    width: 100%;
  }
  .top_box_imgbox .top_box_imgbox_text .top_box_imgbox_text_inner {
    margin: 0 auto;
    width: 90%;
  }
}
.top_brand_logobox {
  display: table;
  width: 100%;
  margin: 70px auto 0;
  text-align: center;
}
.top_brand_logobox .top_brand_logobox_img {
  display: table-cell;
  width: 25%;
  vertical-align: middle;
  text-align: center;
}
.top_brand_logobox .top_brand_logobox_img img {
  width: 100%;
  height: auto;
}
.top_brand_logobox .top_brand_logobox_img img:hover {
  opacity: 0.8;
}
.top_brand_logobox .top_brand_logobox_img:nth-of-type(1) img {
  max-width: 255px;
  width: 80%;
}
.top_brand_logobox .top_brand_logobox_img:nth-of-type(2) img {
  max-width: 209px;
  width: 68%;
}
.top_brand_logobox .top_brand_logobox_img:nth-of-type(3) img {
  max-width: 135px;
  width: 60%;
}
.top_brand_logobox .top_brand_logobox_img:nth-of-type(4) img {
  max-width: 132px;
  width: 55%;
}

@media screen and (max-width: 767px) {
  .top_brand_logobox {
    display: static;
  }
  .top_brand_logobox .top_brand_logobox_img {
    display: inline-block;
    width: 50%;
    margin-bottom: 50px;
  }

  .top_brand_wrap .h2-title01,
.top_quality_wrap .h2-title01,
.top_company_wrap .h2-title01,
.top_recruit_wrap .h2-title01 {
    margin: 0 auto 50px;
    text-align: center;
  }
}
/* ------------------------------
　　トップページ　安心・安全へのこだわり
------------------------------ */
.top_quality_wrap {
  background: linear-gradient(#FFF 50%, #FFFBF4 50%);
}
.top_quality_wrap .top_quality_inner {
  margin: 0 auto;
  padding: 60px 0 70px;
  max-width: 1366px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top_quality_wrap .top_quality_inner {
    padding: 60px 0 120px;
  }
}
/* ------------------------------
　　トップページ　企業情報
------------------------------ */
.top_company_wrap .top_company_inner01 {
  position: relative;
  height: 700px;
}
.top_company_wrap .top_company_bg {
  background: url("../../images/top_bg02.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 450px;
}
.top_company_wrap .top_company_box {
  position: absolute;
  top: 270px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
}
.top_company_wrap .top_company_box .top_company_box_inner {
  background: rgba(255, 255, 255, 0.75);
  padding: 30px 0;
  backdrop-filter: blur(5px);
}
.top_company_wrap .top_company_mainbox .top_company_textbox p:nth-of-type(1) {
  padding: 35px 0 40px;
  font-size: 18px;
  font-weight: bold;
}
.top_company_wrap .top_company_mainbox .top_company_textbox p:nth-of-type(2) {
  margin: 0 auto 40px;
  line-height: 170%;
}
.top_company_wrap .top_company_inner02 {
  margin-bottom: 100px;
}

.top_company_imgbox,
.top_link_box {
  position: relative;
  padding-bottom: 30px;
}
.top_company_imgbox .top_company_img,
.top_company_imgbox .top_link_box_img,
.top_company_imgbox .top_recruit_img,
.top_link_box .top_company_img,
.top_link_box .top_link_box_img,
.top_link_box .top_recruit_img {
  position: relative;
  overflow: hidden;
}
.top_company_imgbox .top_company_img img,
.top_company_imgbox .top_link_box_img img,
.top_company_imgbox .top_recruit_img img,
.top_link_box .top_company_img img,
.top_link_box .top_link_box_img img,
.top_link_box .top_recruit_img img {
  width: 100%;
  height: auto;
  transition: all 300ms 0s ease;
}
.top_company_imgbox .top_company_img h3,
.top_company_imgbox .top_link_box_img h3,
.top_company_imgbox .top_recruit_img h3,
.top_link_box .top_company_img h3,
.top_link_box .top_link_box_img h3,
.top_link_box .top_recruit_img h3 {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  font-size: 18px;
}
.top_company_imgbox .top_company_img::after,
.top_company_imgbox .top_link_box_img::after,
.top_company_imgbox .top_recruit_img::after,
.top_link_box .top_company_img::after,
.top_link_box .top_link_box_img::after,
.top_link_box .top_recruit_img::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
}
.top_company_imgbox .top_link_box_img img,
.top_link_box .top_link_box_img img {
  width: 100%;
  height: auto;
}
.top_company_imgbox a:hover .top_company_img img,
.top_company_imgbox a:hover .top_link_box_img img,
.top_company_imgbox a:hover .top_recruit_img img,
.top_link_box a:hover .top_company_img img,
.top_link_box a:hover .top_link_box_img img,
.top_link_box a:hover .top_recruit_img img {
  transform: scale(1.2, 1.2);
  transition: all 300ms 0s ease;
}
.top_company_imgbox a:hover .top_company_img h3,
.top_company_imgbox a:hover .top_link_box_img h3,
.top_company_imgbox a:hover .top_recruit_img h3,
.top_link_box a:hover .top_company_img h3,
.top_link_box a:hover .top_link_box_img h3,
.top_link_box a:hover .top_recruit_img h3 {
  display: none;
}
.top_company_imgbox a:hover .top_company_img::after,
.top_company_imgbox a:hover .top_link_box_img::after,
.top_company_imgbox a:hover .top_recruit_img::after,
.top_link_box a:hover .top_company_img::after,
.top_link_box a:hover .top_link_box_img::after,
.top_link_box a:hover .top_recruit_img::after {
  background-color: rgba(0, 0, 0, 0);
}
.top_company_imgbox a:hover .top_btn div,
.top_link_box a:hover .top_btn div {
  color: #fff;
  background-color: #EB2D2D;
  text-decoration: none;
}

.top_link_box_btn {
  position: absolute;
  bottom: 15px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .top_company_wrap .top_company_inner01 {
    margin-top: 80px;
    height: auto;
  }
  .top_company_wrap .top_company_bg {
    height: 280px;
  }
  .top_company_wrap .top_company_box {
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .top_company_wrap .top_company_box .top_company_box_inner {
    padding: 30px 0 0;
  }
  .top_company_wrap .top_company_mainbox .top_company_textbox {
    margin-bottom: 80px;
  }
}
/* ------------------------------
　　トップページ　採用情報
------------------------------ */
.top_recruit_wrap {
  background: linear-gradient(#FFFBF4 50%, #fff 50%);
}
.top_recruit_wrap .top_recruit_inner {
  position: relative;
  margin: 0 auto;
  padding: 60px 0 20px;
  max-width: 1366px;
  width: 100%;
  height: 700px;
}
.top_recruit_wrap .top_recruit_box {
  position: absolute;
  top: 440px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
}
.top_recruit_wrap .top_recruit_box .top_recruit_box_inner {
  background: white;
  padding: 30px 0;
}
.top_recruit_wrap .top_recruit_img img {
  width: 100%;
  height: auto;
}

.top_recruit_btnbox {
  margin-bottom: 120px;
}

.top_recruit_btn {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.top_recruit_btn div {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 20px 0 20px 20px;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #EB2D2D;
  border-radius: 78px;
  transition: 0.1s all;
}

.top_recruit_btn a,
.top_recruit_btn a:visited {
  text-decoration: none;
  color: #fff;
}

.top_recruit_btn div:hover {
  background-color: #000;
}

.top_recruit_btn div span {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.top_recruit_btn div:hover > span {
  transform: translateX(4px) translateY(-13px);
  transition: all 300ms 0s ease;
}

@media screen and (max-width: 1023px) {
  .top_recruit_btn div {
    width: 70%;
    padding: 25px 10%;
    font-size: 24px;
    border-radius: 78px;
  }

  .top_recruit_btn div:hover > span {
    transform: translateX(4px) translateY(-11px);
  }
}
@media screen and (max-width: 767px) {
  .top_recruit_wrap .top_recruit_inner {
    height: auto;
  }
  .top_recruit_wrap .top_box_imgbox .top_box_imgbox_text {
    margin-bottom: 60px;
  }
  .top_recruit_wrap .top_recruit_box {
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .top_recruit_btnbox {
    margin-bottom: 80px;
  }

  .top_recruit_btn div {
    width: 68%;
    padding: 20px 13%;
    font-size: 20px;
  }

  .top_recruit_btn div:hover > span {
    transform: translateX(4px) translateY(-10px);
  }
}
/* ------------------------------
　　企業情報ページ
------------------------------ */
.company_wrap {
  margin: 100px auto;
}

.company_top_intro {
  margin: 0 auto 70px;
}
.company_top_intro p {
  line-height: 1.7;
}

/* ------------------------------
　　会社情報　トップメッセージページ
------------------------------ */
.topmessage_wrap .topmessage_inner {
  margin: 100px auto 100px;
  text-align: center;
  width: 100%;
}

.topmessage_textbox {
  position: relative;
}
.topmessage_textbox p {
  font-size: 18px;
  text-align: left;
}
.topmessage_textbox p:nth-of-type(1) {
  line-height: 200%;
}
.topmessage_textbox p:nth-of-type(2) {
  padding: 24px;
  text-align: right;
}

.topmessage_imgbox img {
  max-width: 588px;
  width: 100%;
  height: auto;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

@media screen and (max-width: 767px) {
  .topmessage_textbox {
    position: relative;
  }
  .topmessage_textbox p {
    font-size: 16px;
  }
}
/* ------------------------------
　　会社情報　企業理念
------------------------------ */
.philosophy_intro_wrap {
  margin: 80px auto 120px;
}
.philosophy_intro_wrap .philosophy_intro_inner p {
  font-size: 30px;
  text-align: center;
}
.philosophy_intro_wrap .philosophy_intro_inner p:nth-of-type(1) {
  margin-bottom: 37px;
}
.philosophy_intro_wrap .philosophy_intro_inner p:nth-of-type(2) {
  font-weight: bold;
  color: #EB2D2D;
  line-height: 2.2;
}

.philosophy_box {
  margin: 80px auto;
}
.philosophy_box .philosophy_box_inner .philosophy_textbox .philosophy_textbox_inner h2 {
  font-size: 24px;
  margin-top: 0;
  padding: 1rem 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.philosophy_box .philosophy_box_inner .philosophy_textbox p {
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}
.philosophy_box .philosophy_imgbox img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .philosophy_intro_wrap .philosophy_intro_inner p {
    font-size: 22px;
  }
  .philosophy_intro_wrap .philosophy_intro_inner p:nth-of-type(2) {
    line-height: 1.8;
  }

  .philosophy_box .philosophy_box_inner .philosophy_textbox .philosophy_textbox_inner h2 {
    font-size: 20px;
  }
}
/* ------------------------------
　　ブランド一覧ページ
------------------------------ */
section.brand_wrap {
  background: linear-gradient(#FFF 70%, #FFFBF4 30%);
}
section.brand_wrap .brand_inner {
  padding: 80px 0 120px;
}

.brand_box_imgbox {
  margin: 0 auto;
  display: table;
  max-width: 1366px;
  width: 100%;
}
.brand_box_imgbox .brand_box_imgbox_img {
  display: table-cell;
  margin: 0 auto 0 0;
  width: 50%;
  height: 550px;
}
.brand_box_imgbox .brand_box_imgbox_text {
  display: table-cell;
  width: 50%;
}
.brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner {
  margin: 0 0 0 15%;
  width: 70%;
}
.brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img {
  margin: 0 auto;
  text-align: center;
}
.brand_box_imgbox .brand_box_imgbox_text p {
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 40px auto;
  line-height: 170%;
}

section.brand_wrap:nth-of-type(1) .brand_inner .brand_box_imgbox .brand_box_imgbox_img {
  background: url("../../images/brand-kanekichi.jpg") no-repeat center center;
  background-size: cover;
}
section.brand_wrap:nth-of-type(1) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
  max-width: 417px;
  width: 100%;
  height: auto;
}
section.brand_wrap:nth-of-type(2) .brand_inner .brand_box_imgbox .brand_box_imgbox_img {
  background: url("../../images/brand-tairyoutei.jpg") no-repeat center center;
  background-size: cover;
}
section.brand_wrap:nth-of-type(2) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
  max-width: 300px;
  width: 100%;
  height: auto;
}
section.brand_wrap:nth-of-type(3) .brand_inner .brand_box_imgbox .brand_box_imgbox_img {
  background: url("../../images/brand-gyukaku.jpg") no-repeat center center;
  background-size: cover;
}
section.brand_wrap:nth-of-type(3) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
  max-width: 245px;
  width: 100%;
  height: auto;
}
section.brand_wrap:nth-of-type(4) .brand_inner .brand_box_imgbox .brand_box_imgbox_img {
  background: url("../../images/brand-toriden.jpg") no-repeat center center;
  background-size: cover;
}
section.brand_wrap:nth-of-type(4) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
  max-width: 225px;
  width: 100%;
  height: auto;
}
section.brand_wrap:nth-of-type(odd) .brand_inner .brand_box_imgbox .brand_box_imgbox_img_right {
  display: none;
}
section.brand_wrap:nth-of-type(even) .brand_inner .brand_box_imgbox .brand_box_imgbox_img_left {
  display: none;
}
section.brand_wrap:last-of-type .brand_inner {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  section.brand_wrap .brand_inner {
    padding: 50px 0 80px;
  }

  .brand_box_imgbox .brand_box_imgbox_img {
    display: inline-block;
    width: 100%;
    height: 280px;
  }
  .brand_box_imgbox .brand_box_imgbox_text {
    display: inline-block;
    width: 100%;
  }
  .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner {
    margin: 0 auto;
    width: 90%;
  }
  .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img {
    margin-top: 50px;
  }

  section.brand_wrap:nth-of-type(1) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
    max-width: 300px;
    width: 86%;
    height: auto;
  }
  section.brand_wrap:nth-of-type(2) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
    max-width: 200px;
    width: 80%;
    height: auto;
  }
  section.brand_wrap:nth-of-type(3) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
    max-width: 245px;
    width: 100%;
    height: auto;
  }
  section.brand_wrap:nth-of-type(4) .brand_inner .brand_box_imgbox .brand_box_imgbox_text .brand_box_imgbox_text_inner .brand_logobox_img img {
    max-width: 225px;
    width: 100%;
    height: auto;
  }
}
.brand_btn {
  margin: 0 auto;
}
.brand_btn div {
  position: relative;
  max-width: 362px;
  width: 85%;
  margin: 0 auto 0 0;
  padding: 11px 0 11px 20px;
  font-size: 14px;
  font-weight: bold;
  text-align: left;
  color: #fff;
  background-color: #333333;
  transition: 0.1s all;
  display: flex;
  align-items: center;
}
.brand_btn div:after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  margin: 0 0 0 auto;
  background: #fff;
}

.brand_btn div a,
.brand_btn div a:visited {
  text-decoration: none;
  color: #fff;
}

.brand_btn div:hover {
  color: #fff;
  background-color: #EB2D2D;
}

.brand_btn div:hover a,
.brand_btn div:hover a:visited {
  color: #fff;
}

.brand_btn div span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: auto;
}

.brand_btn div:hover > span {
  transform: translateX(4px) translateY(-8px);
  transition: all 300ms 0s ease;
}

/* ------------------------------
　　安心・安全へのこだわりページ
------------------------------ */
.quality_wrap {
  margin: 100px auto;
}

.quality_box {
  margin-bottom: 100px;
}

.quality_box_img img {
  width: 100%;
  height: auto;
}

.quality_box_text p {
  padding: 0;
  margin: 0;
}
.quality_box_text p:nth-of-type(1) {
  font-size: 15px;
}
.quality_box_text p:nth-of-type(2) {
  margin: 10px auto 23px;
  font-size: 18px;
  vertical-align: middle;
}
.quality_box_text p:nth-of-type(2) span {
  display: inline-block;
  margin-top: -5px;
  padding-right: 30px;
  font-size: 60px;
  font-weight: bold;
  vertical-align: middle;
}
.quality_box_text p:nth-of-type(3) {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}

@media screen and (max-width: 767px) {
  .quality_box_text p {
    margin: 20px auto 0;
  }
}
/* ------------------------------
　　採用情報　一覧ページ
------------------------------ */
.recruit_wrap {
  margin: 100px auto 150px;
}

.recruit_introbox .recruit_introbox_inner {
  margin: 100px auto;
  text-align: center;
}
.recruit_introbox .recruit_introbox_inner p {
  font-size: 18px;
  font-weight: bold;
  line-height: 270%;
}

section.recruit_box .recruit_box_inner {
  padding: 0 0 100px;
}

.recruit_box_imgbox {
  margin: 0 auto;
  display: table;
  max-width: 1366px;
  width: 100%;
}
.recruit_box_imgbox .recruit_box_imgbox_img {
  display: table-cell;
  margin: 0 auto 0 0;
  width: 58%;
  height: 400px;
}
.recruit_box_imgbox .recruit_box_imgbox_text {
  display: table-cell;
  width: 42%;
}
.recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner {
  margin: 0 0 0 10%;
  width: 90%;
}
.recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner .recruit_logobox_img {
  margin: 0 auto;
  text-align: left;
}
.recruit_box_imgbox .recruit_box_imgbox_text p {
  margin: 24px auto;
}
.recruit_box_imgbox .recruit_box_imgbox_text p:nth-of-type(1) {
  font-size: 18px;
  font-weight: bold;
}
.recruit_box_imgbox .recruit_box_imgbox_text p:nth-of-type(2) {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 170%;
}

section.recruit_box:nth-of-type(odd) .recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner {
  margin: 0 0 0 10%;
  width: 90%;
}
section.recruit_box:nth-of-type(even) .recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner {
  margin: 0 10% 0 0;
  width: 90%;
}

section.recruit_box:nth-of-type(1) .recruit_box_inner .recruit_box_imgbox .recruit_box_imgbox_img {
  background: url("../../images/recruit_kanekichi.jpg") no-repeat center center;
  background-size: cover;
}
section.recruit_box:nth-of-type(1) .recruit_box_inner .recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner .recruit_logobox_img img {
  max-width: 247px;
  width: 100%;
  height: auto;
}
section.recruit_box:nth-of-type(2) .recruit_box_inner {
  margin-bottom: 50px;
}
section.recruit_box:nth-of-type(2) .recruit_box_inner .recruit_box_imgbox .recruit_box_imgbox_img {
  background: url("../../images/recruit_tairyoutei.jpg") no-repeat center center;
  background-size: cover;
}
section.recruit_box:nth-of-type(2) .recruit_box_inner .recruit_box_imgbox .recruit_box_imgbox_text .recruit_box_imgbox_text_inner .recruit_logobox_img img {
  max-width: 188px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  section.recruit_box .recruit_box_inner {
    padding: 0 0 80px;
  }

  .recruit_box_imgbox .recruit_box_imgbox_img {
    display: inline-block;
    width: 100%;
  }
  .recruit_box_imgbox .recruit_box_imgbox_text {
    display: inline-block;
    width: 100%;
    margin: 30px auto 0;
  }
}
/* ------------------------------
　　採用情報　エントリーページ
------------------------------ */
.kanekichi_interview_wrap {
  background: #FFFBF4;
  padding: 50px 0 20px;
}
.kanekichi_interview_wrap .kanekichi_interview_inner h2 {
  margin: 0 auto 40px;
  text-align: center;
}

.interviewer_wrap .interviewer_inner {
  position: relative;
}
.interviewer_wrap .interviewer_inner .interviewer_imgbox {
  width: 100%;
  height: 500px;
  background: url("../../images/recruit_kanekichi.jpg") no-repeat center right;
  background-size: cover;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner {
  max-width: 265px;
  width: 100%;
  height: auto;
  padding: 30px;
  background: #fff;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p {
  margin: 0;
  font-size: 14px;
  line-height: 1;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p:nth-of-type(1) {
  font-size: 18px;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p:nth-of-type(2) {
  padding: 10px 0 0;
  font-size: 30px;
  font-weight: bold;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p:nth-of-type(3) {
  padding: 20px 0 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  width: 100%;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p:nth-of-type(3):after {
  border-top: 1px solid black;
  content: "";
  width: 74%;
  margin-left: 10px;
}
.interviewer_wrap .interviewer_inner .interviewer_textbox .interviewer_textbox_inner p:nth-of-type(4) {
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .interviewer_wrap .interviewer_inner .interviewer_textbox {
    position: absolute;
    top: auto;
    bottom: -50px;
    left: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    width: calc(100% - 60px);
  }
}
.interview_box {
  margin: 80px 0;
}
.interview_box .interview_box_textbox p:nth-of-type(1) {
  font-size: 15px;
}
.interview_box .interview_box_textbox p:nth-of-type(2) {
  font-weight: bold;
  font-size: 18px;
  vertical-align: middle;
}
.interview_box .interview_box_textbox p:nth-of-type(2) span.number {
  display: inline-block;
  width: calc(24% - 24px);
  margin-top: -10px;
  padding-right: 24px;
  font-size: 60px;
  vertical-align: middle;
}
.interview_box .interview_box_textbox p:nth-of-type(2) span {
  width: 75%;
  display: inline-block;
  vertical-align: middle;
}
.interview_box .interview_box_textbox p:nth-of-type(3) {
  font-size: 14px;
  line-height: 170%;
  text-align: justify;
  text-justify: inter-ideograph;
}
@media screen and (max-width: 767px) {
  .interview_box .interview_box_textbox p:nth-of-type(2) {
    font-size: 18px;
  }
  .interview_box .interview_box_textbox p:nth-of-type(2) span.number {
    font-size: 52px;
  }
  .interview_box .interview_box_textbox p:nth-of-type(2) span {
    margin-top: -5px;
    vertical-align: middle;
  }
}
.kanekichi_interview_wrap .interview_box:nth-of-type(odd) .interview_box_imgbox_right {
  display: none;
}
.kanekichi_interview_wrap .interview_box:nth-of-type(even) .interview_box_imgbox_left {
  display: none;
}

.recruit_points_box {
  margin: 80px auto;
}
.recruit_points_box h2 {
  margin-bottom: 45px;
  text-align: center;
}
.recruit_points_box p {
  line-height: 1.7;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ------------------------------
　　企業情報　フッターナビゲーション
------------------------------ */
.company_nav_wrap {
  margin-bottom: 80px;
}
.company_nav_wrap .company_nav_box .company_nav_box_inner {
  overflow: hidden;
}
.company_nav_wrap .company_nav_box .company_nav_box_inner img {
  width: 100%;
  height: auto;
  transition: 0.5s all;
}
.company_nav_wrap .company_nav_box .company_nav_box_inner img:hover {
  transform: scale(1.3, 1.3);
  transition: 0.5s all;
}

@media screen and (max-width: 768px) {
  .company_nav_wrap .company_nav_box {
    margin-bottom: 30px;
  }
}
.textcanter {
  margin: 0 auto;
  text-align: center;
}

em {
  color: #EB2D2D;
}

.textunderline {
  border-bottom: solid 2px #EB2D2D;
}

/*================================================*/
/* お知らせ　インデックスページ */
/*================================================*/
.news_wrap {
  margin: 80px auto;
}

/*================================================*/
/* 404 */
/*================================================*/
.error_wrap {
  margin: 80px auto;
}

/*================================================*/
/* レスポンシブ 表示非表示 */
/*================================================*/
.hide-pc {
  display: block;
}

.hide-pctb {
  display: block;
}

.hide-tb {
  display: none;
}

.hide-tbsp {
  display: none;
}

.hide-sp {
  display: none;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*タブレットのとき*/
@media screen and (max-width: 1024px) {
  .hide-pc {
    display: none;
  }

  .hide-pctb {
    display: block;
  }

  .hide-tb {
    display: block;
  }

  .hide-tbsp {
    display: block;
  }

  .hide-sp {
    display: none;
  }
}
/*スマホのとき*/
@media screen and (max-width: 769px) {
  .hide-pc {
    display: none;
  }

  .hide-pctb {
    display: none;
  }

  .hide-tb {
    display: none;
  }

  .hide-tbsp {
    display: block;
  }

  .hide-sp {
    display: block;
  }
}
/*================================================*/
/* レスポンシブ 並び順指定 */
/*================================================*/
.row {
  display: flex;
}

@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
  }

  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }

  .order3 {
    order: 3;
  }

  .order4 {
    order: 4;
  }

  .order5 {
    order: 5;
  }
}
/*================================================*/
/*================================================*/
.acms-label-danger {
  margin-top: -2px;
  margin-left: 6px;
  color: #FFFBF4 !important;
  background-color: #EB2D2D !important;
  border-radius: 0 !important;
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px 0;
}
.contact-box .message-text {
  color: #EB2D2D;
  font-weight: bold;
}
.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
}
.contact-box .contact-no a {
  color: inherit;
}
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #EB2D2D;
}
.contact-box p {
  line-height: 1.6;
}

.contact_tel {
  margin: 0 auto;
  text-align: center;
}
.contact_tel .contact-no {
  font-size: 35px;
}
.contact_mail {
  margin: 50px auto 0;
}
.contact_mail h2 {
  margin: 0 auto 20px;
  text-align: center;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.contact-form-heading {
  margin: 40px 0 10px 0;
}

.contact-form-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  border-bottom: 1px solid #e5e5e5;
}
.contact-form-group:nth-last-of-type(1) {
  border-bottom: none;
}

.contact-form-group fieldset {
  display: contents;
  border: 0;
}

.contact-form-label {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0 10px;
  font-weight: bold;
  text-align: left;
  box-sizing: border-box;
}

.contact-form-control {
  display: block;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

.contact-form-grid {
  margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
  margin: 0 0 10px 0;
  padding: 0 5px;
}
.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
  margin: 0;
}

.contact_btn {
  margin: 50px auto 0;
}
.contact_btn div {
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact_tel .contact-no {
    font-size: 45px;
  }
  .contact-form {
    width: 100%;
  }

  .contact-form-label {
    padding: 15px 15px 5px 15px;
    vertical-align: top;
  }

  .contact-form-control {
    padding: 5px 15px 15px 15px;
  }

  .contact-form-col {
    margin: 0;
  }
}
/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 25px 0;
  padding: 0 10px;
  background: #E5E5E5;
  /* カウンターの設定 */
  counter-reset: mailStep;
}
.contact-box .mail-step-item {
  float: left;
  margin: 0 5px;
  padding: 14px 0 10px;
  color: #999;
  font-weight: bold;
  list-style: none;
  border-bottom: 4px solid transparent;
  font-size: 14px;
}
.contact-box .mail-step-item:before {
  content: counter(mailStep) ".";
  /* カウンターの設定 */
  counter-increment: mailStep;
}
.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid #333;
}
@media screen and (min-width: 768px) {
  .contact-box .mail-step-item {
    margin: 0 10px;
    padding: 18px 0 14px;
    font-size: 16px;
  }
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
  margin: 0 10px 50px 10px;
  text-align: center;
}

.form-btn {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .form-btn-send {
    width: 100%;
    max-width: 360px;
  }
}
/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 2px 8px;
  color: #fff;
  background: #EB2D2D;
  border-radius: 3px;
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .label-required {
    margin: 0 10px;
  }
}
/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #c49511;
}
.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}
.contact-box select[required]:valid {
  border: 1px solid #a7a7aa;
}
.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #fffdeb;
}
.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #ffebee;
}
.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #fff;
}
.contact-box input[type=text],
.contact-box input[type=password],
.contact-box input[type=datetime],
.contact-box input[type=datetime-local],
.contact-box input[type=date],
.contact-box input[type=month],
.contact-box input[type=time],
.contact-box input[type=week],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=url],
.contact-box input[type=search],
.contact-box input[type=tel] {
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 5px;
}
.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px;
}
.contact-box select {
  background-color: #f7f7f7;
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .contact-box input[type=text],
.contact-box input[type=password],
.contact-box input[type=datetime],
.contact-box input[type=datetime-local],
.contact-box input[type=date],
.contact-box input[type=month],
.contact-box input[type=time],
.contact-box input[type=week],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=url],
.contact-box input[type=search],
.contact-box input[type=tel] {
    padding: 5px 8px;
  }
  .contact-box textarea {
    padding: 5px 8px;
  }
  .contact-box select {
    padding-left: 8px;
    min-height: 40px;
  }
}
/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

.valid-mark.valid {
  display: inline;
  float: right;
  color: #5cb85c;
}

.invalid {
  background-color: #ffebee !important;
}

/* 営業目的〜
------------------------------ */
.contact_p {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: underline;
}

/* よくある質問への案内
------------------------------ */
.faq_wrap {
  margin: 60px auto;
  padding: 40px 0 16px;
  border: 1px solid #707070;
}
.faq_wrap p {
  margin: 0;
}
.faq_wrap img {
  width: 100%;
  height: auto;
}
.faq_wrap .note {
  margin: 0 auto 24px;
  font-weight: bold;
  text-align: center;
  font-size: 1.1rem;
}
.faq_wrap .faq_item {
  margin: 0 auto 40px;
}
.faq_wrap .faq_item .imgbox {
  margin: 16px auto;
  text-align: center;
}
.faq_wrap .faq_item .imgbox img {
  height: 70px;
  width: auto;
}
.faq_wrap .faq_item .brand_btn div {
  margin: 0 auto 8px;
}
.faq_wrap .faq_item .brand_btn:nth-of-type(1) {
  margin-bottom: 0;
}

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.realestate-map {
  overflow: hidden;
}

.realestate-map .js-s2d-ready,
.realestate-map [class*=column-map-] {
  width: auto !important;
  max-width: 100%;
}

.realestate-map img[class*=column-map-] {
  width: auto !important;
  max-width: 100%;
  height: auto;
}

.realestate-map-entry {
  margin: 0 10px;
}

.entry-column table.realestate-search {
  margin: 20px 0 30px 0;
}

@media screen and (min-width: 1024px) {
  .table-nowrap {
    white-space: nowrap;
  }
}
/* 物件情報 */
.realestate-search {
  border-collapse: collapse;
}
.realestate-search input {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .realestate-search th, .realestate-search td {
    display: block;
    box-sizing: border-box;
  }
  .realestate-search input {
    box-sizing: border-box;
  }
}
.realestate-search-group {
  display: flex;
}

.realestate-search-item {
  display: flex;
  align-items: center;
  margin: 0 0 10px 0;
}

.realestate-search-label {
  max-width: 6em;
  padding: 0 10px;
  font-weight: bold;
  white-space: nowrap;
}

.realestate-search-input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 10px;
}

.realestate-search-select-price {
  width: calc(50% - 1em);
}

.realestate-search-select-connector {
  padding: 0 0.5em;
}

.realestate-search-footer {
  display: flex;
  justify-content: center;
  margin: 0 0 15px 0;
  padding: 5px 10px 10px 10px;
}

@media (max-width: 767px) {
  .realestate-search-group {
    flex-direction: column;
  }

  .realestate-search-input {
    padding: 0;
  }
}
/* ------------------------------
　　フッター
------------------------------ */
/* フッター内会社情報 */
.foot-wrapper {
  padding: 70px 0 0;
  background: #FFFBF4;
}

.company-about {
  margin: 0 0 30px 0;
  color: #333333;
}

.company-name {
  margin: 0 0 15px 0;
  color: #333333;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
}
.company-name a {
  color: #333;
}
.company-name a:hover {
  text-decoration: none;
}
.company-name span {
  padding-right: 10px;
  vertical-align: middle;
}
.company-name img {
  vertical-align: middle;
}
.company-detail {
  margin: 0 0 5px 0;
  padding: 0;
  color: #333333;
  font-size: 14px;
  font-style: normal;
  line-height: 1.7;
}
.company-detail a {
  color: #333333;
}
.company-detail a:hover {
  text-decoration: underline;
}

.footer_nav {
  display: inline-block;
  font-size: 12px;
}
.footer_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer_nav ul li {
  font-weight: bold;
  padding-bottom: 12px;
}
.footer_nav ul li ul {
  padding: 12px 0 0 12px;
}
.footer_nav ul li ul li {
  font-weight: normal;
}

/* フッターナビゲーション */
@media screen and (max-width: 767px) {
  .footer_nav {
    display: none;
  }
}
/* ページの上に戻るボタン */
.page-top a:focus {
  display: block;
  border: 1px dotted #FFF;
}

.page-top-btn {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: block;
  width: 100px;
  height: 100px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../../images/sp-here.png") no-repeat center;
  background-size: cover;
  transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.no-js .page-top-btn {
  opacity: 0.6;
}
.page-top-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .page-top-btn {
    width: 150px;
    height: 150px;
  }
}
@media screen and (min-width: 1024px) {
  .page-top-btn {
    display: none;
  }
}
.footer_company {
  margin: 0 auto 20px;
}

.footer_copyright_wrap .footer_copyright_inner {
  padding: 30px 0 33px;
  border-top: 1px solid #707070;
  width: 100%;
}

.footer_logobox {
  display: inline-block;
  width: 79%;
}
.footer_logobox .footer_logobox_link {
  display: inline-block;
  margin-right: 5%;
  vertical-align: middle;
  text-align: center;
}
.footer_logobox .footer_logobox_link:nth-of-type(1) img {
  max-width: 143px;
  width: 100%;
  height: auto;
}
.footer_logobox .footer_logobox_link:nth-of-type(2) img {
  max-width: 117px;
  width: 100%;
  height: auto;
}
.footer_logobox .footer_logobox_link:nth-of-type(3) img {
  max-width: 75px;
  width: 100%;
  height: auto;
}
.footer_logobox .footer_logobox_link:nth-of-type(4) img {
  max-width: 74px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .footer_logobox {
    width: 100%;
  }
  .footer_logobox .footer_logobox_link {
    width: 40%;
    margin-right: 5%;
    margin-bottom: 10px;
  }
  .footer_logobox .footer_logobox_link:nth-of-type(1) a img {
    height: 30px;
    width: auto;
  }
  .footer_logobox .footer_logobox_link:nth-of-type(2) a img {
    height: 38px;
    width: auto;
  }
  .footer_logobox .footer_logobox_link:nth-of-type(3) a img {
    height: 40px;
    width: auto;
  }
  .footer_logobox .footer_logobox_link:nth-of-type(4) a img {
    height: 48px;
    width: auto;
  }
}
/* 著作権表示 */
.copyright {
  display: inline-block;
  width: 20%;
  margin: 0 0 0 auto;
  color: #454545;
  font-size: 12px;
  text-align: right;
}

.copyright-text {
  margin: 0 auto;
  text-align: right;
}

.copryright-logo {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .copyright {
    width: 100%;
    margin: 30px 0 0 auto;
  }
}
/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.site-name {
  margin: 0;
  font-size: 20px;
  color: #333333;
  font-weight: bold;
}
.site-name span {
  display: inline-block;
  vertical-align: middle;
  padding-right: 7px;
}
.header-stack .site-name {
  margin: 30px 0 20px;
}
.site-name a {
  color: #000000;
}
.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #333333;
  text-decoration: none;
}
.site-name img {
  display: inline-block;
  vertical-align: middle;
}

.site-logo {
  display: none;
}

.site-logo-sp {
  width: auto;
  height: 32px;
  vertical-align: bottom;
}

.site-name-text {
  display: inline;
  vertical-align: middle;
}

.edit-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
}

.header-nav {
  position: relative;
  display: none;
}

.site-name {
  font-size: 18px;
}

@media (min-width: 768px) {
  .site-name {
    font-size: 20px;
  }
  .header-stack .site-name {
    text-align: center;
  }

  .header {
    display: table;
    width: 100%;
  }
  .header-stack .header {
    display: block;
  }

  .header-logo {
    width: 100%;
    vertical-align: middle;
  }
  .header-stack .header-logo {
    display: block;
  }

  .header-nav {
    display: none;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}
@media (min-width: 1024px) {
  .site-logo {
    display: inline-block;
    width: 145px;
    height: auto;
    vertical-align: middle;
  }

  .header-logo {
    display: table-cell;
    width: 25%;
  }
  .header-stack .header-logo {
    display: block;
    width: 100%;
  }

  .header-nav {
    display: table-cell;
    width: 75%;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}
/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  /* 固定したときの高さを保つ */
  padding: 44px 0 0 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  padding: 5px 5px;
  background: #FFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
  box-sizing: border-box;
}
.site-header .site-header-sp-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  display: inline-block;
  height: 44px;
  padding: 7px 5px;
  font-size: 20px;
  color: #333;
  box-sizing: border-box;
}
a .nav-menu-btn {
  color: #333;
}
.nav-menu-btn:hover {
  color: #333;
  text-decoration: none;
}
.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}

.nav-menu-btn-text {
  display: inline-block;
  margin: 0 0 0 5px;
  color: #333;
  font-weight: bold;
  vertical-align: middle;
  font-size: 11px;
}

/* モバイル時ヘッダー アイコン */
.nav-menu-action {
  display: table;
  float: right;
  margin: 0;
  padding: 0;
}

.nav-menu-action-item {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #333;
  text-align: center;
  vertical-align: middle;
  font-size: 20px;
}

.nav-menu-action-link {
  color: #333;
}
.nav-menu-action-link:hover, .nav-menu-action-link:active, .nav-menu-action-link:visited, .nav-menu-action-link:focus {
  color: #333;
  text-decoration: none;
}

.navbar {
  display: none;
  width: 100%;
}
.navbar.acms-admin-module-edit-wrapper {
  z-index: 1;
}
.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar ul li a {
  padding: 10px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.navbar ul li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #EB2D2D;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.navbar ul li a:hover::after {
  transform: scale(1, 1);
}
.navbar ul li a:focus, .navbar ul li a:active {
  text-decoration: none;
}
.navbar ul li a:hover {
  text-decoration: none;
}
.navbar ul li:last-of-type a::after {
  display: none;
}

@media (min-width: 1024px) {
  .header_out {
    margin: 0 auto;
    text-align: center;
    box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.16);
  }

  .header {
    margin: 0 auto;
    max-width: 1366px;
    width: 100%;
    height: 100px;
  }

  .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    display: flex;
    place-content: center flex-end;
    flex-wrap: wrap;
    float: right;
    padding: 0;
    list-style: none;
  }
  .header-stack .navbar > ul {
    display: table;
    float: none;
    width: 100%;
    table-layout: fixed;
    border-right: 1px solid #EEE;
  }
  .navbar li {
    position: relative;
    float: left;
    display: flex;
    place-items: center;
    margin: 0 8px;
    text-align: center;
    vertical-align: middle;
  }
  .navbar li:first-of-type {
    margin: 0 8px 0 0;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    display: table-cell;
    float: none;
    border-left: 1px solid #EEE;
  }
  .navbar li ul {
    /* 二階層目 */
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li a {
    /* 一階層目のリンクのみ */
    padding: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    -webkit-transition: border 0.25s ease-out;
    transition: border 0.25s ease-out;
  }
  .navbar li a:hover, .navbar li a:focus, .navbar li a:active {
    background: transparent;
  }
  .header-stack .navbar li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }
  .navbar li.stay a {
    /* 一階層目のリンクのみ */
    border-bottom: 2px solid #EB2D2D;
  }
  .navbar li.stay a.btn-attention {
    border: 1px solid #EB2D2D;
  }
  .navbar li:hover ul {
    /* 二階層目 */
    z-index: 10000;
    display: block;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
    box-shadow: 2px 2px 4px gray;
  }
  .navbar li:hover a {
    /* 一階層目のリンクのみ */
  }
  .navbar li:hover li a {
    border: 0;
    width: calc(100% - 30px);
  }
  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #FFF;
    border: 0;
    border-top: 1px solid #b40012;
  }
  .navbar li li:first-child {
    border: 0;
    margin: 0 auto;
  }
  .navbar li li a {
    margin: 0;
    padding: 15px 15px;
    color: #EB2D2D;
    border: 0;
  }
  .navbar li li a:hover {
    opacity: 1;
    color: #fff;
    background: #EB2D2D;
    border: 0;
  }
  .navbar a.btn-attention {
    /* ボタン（色付き） */
    padding: 10px 24px 11px;
    color: #EB2D2D;
    border: 1px solid #EB2D2D;
    border-radius: 30px;
    background-color: #fff;
    transition: 0.1s all;
  }
  .navbar a.btn-attention::before {
    content: " ";
    display: inline-block;
    margin-top: -2px;
    padding-right: 7px;
    width: 21px;
    height: 15.5px;
    background-image: url(../../images/ico-mail.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  .navbar a.btn-attention:hover {
    background-color: #EB2D2D;
    color: #fff;
    transition: 0.1s all;
  }
  .navbar a.btn-attention:hover::before {
    background-image: url(../../images/ico_mail_white.png);
  }
}
@media (min-width: 1024px) {
  .header-logo {
    padding: 0 0 0 2%;
    text-align: left;
  }

  .navbar ul li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 14px;
  }
}
/* ------------------------------
　　サイドメニュー
------------------------------ */
/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 27px;
  height: 1px;
  margin: 9px 0;
  vertical-align: middle;
  background-color: #333;
  border-radius: 1px;
  transition: 0.1s all;
}
.icon-toggle-menu:before, .icon-toggle-menu:after {
  position: absolute;
  display: block;
  width: 27px;
  height: 1px;
  background-color: #333;
  border-radius: 1px;
  transition: 0.3s all;
  content: "";
}
.icon-toggle-menu:before {
  top: -10px;
}
.icon-toggle-menu:after {
  bottom: -10px;
}
[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
}
[aria-expanded=true] .icon-toggle-menu:before {
  width: 30px;
  transform: translate(-3px, 10px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
  width: 30px;
  transform: translate(-3px, -10px) rotate(-45deg);
}

/* ナビゲーションバー */
@media (max-width: 1023px) {
  .is-locked {
    overflow: hidden;
  }

  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 44px;
    background-color: #fff;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
    transition-property: all;
  }
  .mobile-nav.is-active {
    display: block;
  }
  .mobile-nav.is-opened {
    opacity: 1;
  }

  .mobile-nav-wrap {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #FFFBF4;
  }

  .mobile-nav-inner {
    padding: 0 20px;
  }
  .mobile-nav-inner + .mobile-nav-inner {
    border-top: 1px solid #CCC;
  }

  .mobile-navbar {
    width: 100%;
  }

  .mobile-navbar-list {
    display: block;
    margin: 20px auto;
    padding: 0;
    line-height: 2.4;
    list-style: none;
    font-size: 18px;
    width: 88%;
  }
  .mobile-navbar-list li {
    display: block;
    line-height: 280%;
    font-weight: normal;
  }
  .mobile-navbar-list li:not(.btn-attention) {
    color: #EB2D2D;
    text-align: center;
  }
  .mobile-navbar-list .navbar-btn {
    margin-top: 10px;
  }
  .mobile-navbar-list a {
    display: block;
  }
  .mobile-navbar-list a:not(.btn-attention) {
    border-top: 1px solid #EB2D2D;
  }
  .mobile-navbar-list a:not(.btn-attention),
.mobile-navbar-list a:not(.btn-attention):hover,
.mobile-navbar-list a:not(.btn-attention):visited,
.mobile-navbar-list a:not(.btn-attention):active,
.mobile-navbar-list a:not(.btn-attention):focus {
    color: #EB2D2D;
    font-weight: bold;
    text-align: center;
  }
  .mobile-navbar-list a.btn-attention {
    padding: 10px 15px;
    font-weight: normal;
    background: transparent;
    border: 1px solid #EB2D2D;
    color: #fff;
    background-color: #EB2D2D;
    text-align: center;
    font-size: 16px;
  }
  .mobile-navbar-list li:nth-of-type(1) a {
    border-top: none;
  }
  .mobile-navbar-list .mobile-navbar-list {
    margin: -5px auto 10px;
    line-height: 2;
    font-size: 14px;
    width: 88%;
  }
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention),
.mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):hover,
.mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):visited,
.mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):active,
.mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):focus {
    color: #EB2D2D;
    border-top: none;
    font-weight: normal;
  }

  .mobile-nav-side {
    margin: 20px 0;
  }

  .mobile-nav-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-nav-side-item {
    display: block;
    margin: 0 0 10px 0;
  }

  .mobile-nav-side-link {
    color: #333;
    display: block;
  }
  .mobile-nav-side-link:hover, .mobile-nav-side-link:visited, .mobile-nav-side-link:active, .mobile-nav-side-link:focus {
    color: #333;
  }

  .mobile-navbar-footer {
    margin: 15px 0 0 0;
  }
  .mobile-navbar-footer .sns-list {
    margin: 0 0 30px;
  }
}
.mobile-nav-kanekichi {
  margin: 50px auto;
  width: 88%;
  text-align: center;
}
.mobile-nav-kanekichi a {
  margin: 0 auto;
  text-align: center;
}
.mobile-nav-kanekichi a img {
  max-width: 250px;
  width: 100%;
  height: auto;
}
.mobile-nav-kanekichi a img:hover {
  opacity: 0.7;
}

@media (min-width: 768px) {
  header.head-glovalnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    background-color: #fff;
  }

  .mobile-nav-kanekichi a img {
    max-width: 280px;
  }
}