@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
body {
  background: #FFF;
  color: #333;
  font-size: 16px; }

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

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

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

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

.acms-btn:active, .acms-btn:hover, .acms-btn:link, .acms-btn:visited {
  color: #FFF; }

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

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

@media (max-width: 1170px) {
  .acms-container {
    padding-right: 20px;
    padding-left: 20px;
    padding-right: calc(20px + constant(safe-area-inset-right));
    padding-left: calc(20px + constant(safe-area-inset-left)); }
  .narrow-container {
    padding-right: 20px;
    padding-left: 20px;
    padding-right: calc(20px + constant(safe-area-inset-right));
    padding-left: calc(20px + constant(safe-area-inset-left)); } }

@media screen and (min-width: 768px) {
  .flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .main {
    width: 70%; }
  .sub {
    width: 25%; } }

.flex-col-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

/* アニメーション */
@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; } }

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  border: 0;
  background: #999;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px; }
  .btn:hover, .btn:visited {
    color: #FFF;
    text-decoration: none; }
  .btn:focus, .btn:active {
    color: #FFF;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn:hover {
    background-color: #999;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
    background-image: linear-gradient(to bottom, #C1C1C1, #999);
    color: #FFF; }
  .btn:active, .btn:focus {
    background: #878787; }

/* ボタン　色付き */
.btn-attention {
  border: 0;
  background: #E60012;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px; }
  .btn-attention:hover, .btn-attention:visited {
    color: #FFF;
    text-decoration: none; }
  .btn-attention:focus, .btn-attention:active {
    color: #FFF;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn-attention:hover {
    background-color: #E60012;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#E60012), to(#E60012));
    background-image: linear-gradient(to bottom, #E60012, #E60012);
    color: #FFF; }
  .btn-attention:active, .btn-attention:focus {
    background: #8E1E1E; }

/*基本色付きボタン*/
.btn-primary {
  line-height: 1;
  display: inline-block;
  padding: 8px 10px;
  -webkit-transition: background-color .2s, border-color .2s;
  transition: background-color .2s, border-color .2s;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #825b3a;
  font-size: 14px;
  color: #FFF !important;
  -webkit-transition: background-color .2s;
  transition: background-color .2s; }
  .btn-primary:hover {
    background-color: #522E0A;
    text-decoration: none;
    -webkit-transition: border .25s ease-out;
    transition: border .25s ease-out; }

/*動的フォームの送信ボタン*/
.btn-form {
  line-height: 1;
  display: inline-block;
  padding: 15px 20px;
  -webkit-transition: background-color .2s, border-color .2s;
  transition: background-color .2s, border-color .2s;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #e60012;
  font-size: 20px;
  font-weight: 700;
  color: #FFF !important;
  -webkit-transition: background-color .2s;
  transition: background-color .2s; }
  .btn-form:hover {
    background-color: #910021;
    text-decoration: none;
    -webkit-transition: border .25s ease-out;
    transition: border .25s ease-out; }
  .btn-form:active, .btn-form:focus {
    background: #878787; }

/*動的フォームの確認ボタン*/
.btn-form-check {
  line-height: 1;
  display: inline-block;
  padding: 15px 20px;
  -webkit-transition: background-color .2s, border-color .2s;
  transition: background-color .2s, border-color .2s;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  background-color: #666;
  font-size: 20px;
  font-weight: 700;
  color: #FFF !important;
  margin-right: 10px;
  -webkit-transition: background-color .2s;
  transition: background-color .2s; }
  .btn-form-check:hover {
    background-color: #910021;
    text-decoration: none;
    -webkit-transition: border .25s ease-out;
    transition: border .25s ease-out; }
  .btn-form-check:active, .btn-form-check:focus {
    background: #878787; }

/*お問い合わせインデックスページ 
-------------------------------*/
.btn-contact {
  background: #e60012;
  color: #fff !important;
  line-height: 1.5;
  border: 0;
  display: block;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-size: 18px; }
  .btn-contact strong {
    font-size: 20px;
    color: #FFF !important; }
  .btn-contact:hover {
    background: #f56571;
    text-decoration: none !important;
    -webkit-transition: border .25s ease-out;
    transition: border .25s ease-out; }
  .btn-contact:active, .btn-contact:focus {
    background: #e60012;
    text-decoration: none !important; }

/* ボタンサイズ大 */
.btn-large {
  background: #999;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  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;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn-large:hover {
    background: #777; }
  .btn-large:active, .btn-large:focus {
    background: #878787; }

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #E60012;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  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;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn-attention-large:hover {
    background: #E35050; }
  .btn-attention-large:active, .btn-attention-large:focus {
    background: #8E1E1E; }

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #999;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  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;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn-block-large:hover {
    background: #777; }
  .btn-block-large:active, .btn-block-large:focus {
    background: #878787; }

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: #E60012;
  font-weight: bold;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
  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;
    -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
  .btn-attention-block-large:hover {
    background: #E35050; }
  .btn-attention-block-large:active, .btn-attention-block-large:focus {
    background: #8E1E1E; }

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

@media (max-width: 767px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 20px; } }

/* ボーダーボタン */
.home-btn {
  margin: 20px 0 10px; }

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

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

/*
.page-title-filter {
	position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
	background: rgba(255,255,255,0.4);
}*/
.page-title-inner {
  display: table-cell;
  position: relative;
  padding: 15px 0;
  vertical-align: middle; }

.page-title {
  font-family: "じゅん 501";
  text-align: center;
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2; }
  .page-title a {
    color: #e60012; }

.page-description {
  text-align: center;
  margin: 10px 0;
  color: #522E0A;
  font-size: 18px;
  line-height: 1.5; }

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 270px; } }

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  list-style: none;
  margin: 0 -5px 50px -5px;
  padding: 0;
  text-align: center; }
  .pager li {
    display: inline-block;
    margin: 0 5px; }
    .pager li.cur {
      /* 現在いる位置 */
      padding: 5px 20px;
      color: #FFF;
      background: #999999;
      border-radius: 3px; }

.pager-link {
  display: block;
  padding: 5px 20px;
  color: #333;
  border-radius: 3px;
  background: #ece4db; }
  .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 {
  list-style: none;
  margin: -25px 0 60px 0;
  padding: 0; }
  .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;
    border-bottom: 1px solid #ece4db;
    color: #333; }
    .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: #ece4db; }

@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; } }

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

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

.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: #333; }
  .topicpath-link:visited, .topicpath-link:focus, .topicpath-link:active {
    color: #333; }

/* ------------------------------
　　スライダー
------------------------------ */
.slick-slider {
  padding: 0 0 12px 0;
}
.slick-slider img {
  margin: 0 auto;
}

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

.slick-slide:hover {
  cursor: pointer;
}

.slick-list:focus {
  position: relative;
}
.slick-list:focus:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px dotted #00C2FF;
  z-index: 1;
}

.main-slider-image {
  height: 300px;
  background: no-repeat center #333;
  background-size: cover;
}
.main-slider-image a:hover {
  text-decoration: none;
}

.main-slider-text-outer {
  height: 100%;
}

.main-slider-text-wrap {
  display: table;
  width: 100%;
  height: 100%;
}

.main-slider-text-inner {
  display: table-cell;
  padding: 0 20px;
  text-align: center;
  vertical-align: middle;
}

.main-slider-main-copy {
  margin: 0;
  color: #FFF;
  font-weight: bold;
  font-size: 24px;
}

.main-slider-side-copy {
  margin: 0;
  color: #FFF;
  font-size: 16px;
}

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

/* 矢印ナビゲーション */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 19px;
  height: 60px;
  margin-top: -29px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:focus,
.slick-next:focus {
  border: 1px dotted #FFF;
}

.slick-prev {
  left: 10px;
  background: url(../../images/marker/icon_white_arrow_left.png?v=2018082113504) no-repeat;
}

.slick-next {
  right: 10px;
  background: url(../../images/marker/icon_white_arrow_right.png?v=2018082113504) no-repeat;
}

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .slick-prev {
    left: 50px;
  }
  .slick-next {
    right: 50px;
  }
  .fix-height {
    height: 400px;
    /* はじめのちらつき防止 */
  }
  .main-slider-image {
    height: 400px;
  }
  .main-slider-main-copy {
    font-size: 40px;
  }
  .main-slider-side-copy {
    font-size: 24px;
  }
}



/* ------------------------------
　　mainイメージ
------------------------------ */
.fix-height {
  height: 300px;
  /* はじめのちらつき防止 */
  overflow: hidden;
  /* はじめのちらつき防止 */ }

.main-slider-main-copy {
  margin: 0;
  color: #e60012;
  font-weight: bold;
  font-family: "じゅん 501";
  font-size: 24px; }

.main-slider-side-copy {
  margin: 0;
  color: #522E0A;
  font-size: 16px; }

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

.top-image {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; }
  .top-image .top-text-box {
    position: relative;
    top: 80px; }
    .top-image .top-text-box .main-slider-side-copy {
      display: block;
      margin: 10px;
      background: rgba(255, 255, 255, 0.7);
      padding: 10px; }
  @media screen and (min-width: 768px) {
    .top-image .top-text-box {
      top: 220px;
      text-align: center; }
    .top-image .main-slider-main-copy {
      font-size: 40px; }
    .top-image .main-slider-side-copy {
      background: none !important;
      font-size: 22px; } }

.copyshadow {
  text-shadow: -3px -3px rgba(255, 255, 255, 0.5), -3px -2px rgba(255, 255, 255, 0.5), -3px -1px rgba(255, 255, 255, 0.5), -3px 0 rgba(255, 255, 255, 0.5), -3px 1px rgba(255, 255, 255, 0.5), -3px 2px rgba(255, 255, 255, 0.5), -3px 3px rgba(255, 255, 255, 0.5), -2px -3px rgba(255, 255, 255, 0.5), -2px -2px rgba(255, 255, 255, 0.5), -2px -1px rgba(255, 255, 255, 0.5), -2px 0 rgba(255, 255, 255, 0.5), -2px 1px rgba(255, 255, 255, 0.5), -2px 2px rgba(255, 255, 255, 0.5), -2px 3px rgba(255, 255, 255, 0.5), -1px -3px rgba(255, 255, 255, 0.5), -1px -2px rgba(255, 255, 255, 0.5), -1px -1px rgba(255, 255, 255, 0.5), -1px 0 rgba(255, 255, 255, 0.5), -1px 1px rgba(255, 255, 255, 0.5), -1px 2px rgba(255, 255, 255, 0.5), -1px 3px rgba(255, 255, 255, 0.5), 0 -3px rgba(255, 255, 255, 0.5), 0 -2px rgba(255, 255, 255, 0.5), 0 -1px rgba(255, 255, 255, 0.5), 0 0 rgba(255, 255, 255, 0.5), 0 1px rgba(255, 255, 255, 0.5), 0 2px rgba(255, 255, 255, 0.5), 0 3px rgba(255, 255, 255, 0.5), 1px -3px rgba(255, 255, 255, 0.5), 1px -2px rgba(255, 255, 255, 0.5), 1px -1px rgba(255, 255, 255, 0.5), 1px 0 rgba(255, 255, 255, 0.5), 1px 1px rgba(255, 255, 255, 0.5), 1px 2px rgba(255, 255, 255, 0.5), 1px 3px rgba(255, 255, 255, 0.5), 2px -3px rgba(255, 255, 255, 0.5), 2px -2px rgba(255, 255, 255, 0.5), 2px -1px rgba(255, 255, 255, 0.5), 2px 0 rgba(255, 255, 255, 0.5), 2px 1px rgba(255, 255, 255, 0.5), 2px 2px rgba(255, 255, 255, 0.5), 2px 3px rgba(255, 255, 255, 0.5), 3px -3px rgba(255, 255, 255, 0.5), 3px -2px rgba(255, 255, 255, 0.5), 3px -1px rgba(255, 255, 255, 0.5), 3px 0 rgba(255, 255, 255, 0.5), 3px 1px rgba(255, 255, 255, 0.5), 3px 2px rgba(255, 255, 255, 0.5), 3px 3px rgba(255, 255, 255, 0.5); }

@media screen and (min-width: 768px) {
  .fix-height {
    height: 600px;
    /* はじめのちらつき防止 */ }
  .main-slider-image {
    height: 600px; } }

/*お得なお試しメニュー　Summary　*/
.top-summary-wrappar {
  background-color: #FFF9D6;
  padding: 0 0 20px 0; }
  @media screen and (min-width: 768px) {
    .top-summary-wrappar {
      padding: 0 0 60px 0;
      background-image: url("../../images/top-summary-bg.svg");
      background-position: bottom center;
      background-repeat: no-repeat; } }

.top-summary {
  background-color: #CB0101;
  padding: 20px 40px;
  color: #FFF;
  text-align: center;
  font-family: "じゅん 501";
  font-size: 1.4em;
  margin: 0;
  position: relative; }
  .top-summary:before {
    content: '';
    position: absolute;
    top: calc(50% + -20px);
    left: 5px;
    background: url("../../images/icon-folk.svg") no-repeat;
    width: 25px;
    height: 35px; }
  .top-summary:after {
    content: '';
    position: absolute;
    top: calc(50% + -20px);
    left: calc(100% + -20px);
    background: url("../../images/icon-knife.svg") no-repeat;
    width: 25px;
    height: 35px; }
  @media screen and (min-width: 768px) {
    .top-summary {
      font-size: 1.8em; }
      .top-summary:before {
        top: calc(50% + -20px);
        left: calc(50% - 320px);
        height: 45px; }
      .top-summary:after {
        top: calc(50% + -20px);
        left: calc(50% + 300px);
        height: 45px; } }

.top-summary-box {
  margin: 0;
  padding: 0; }
  .top-summary-box li {
    list-style: none !important;
    margin: 20px 0 10px;
    padding: 0;
    background-color: #FFF;
    border-radius: 10px; }
    .top-summary-box li:hover {
      -webkit-transition: border .25s ease-out;
      transition: border .25s ease-out; }
      .top-summary-box li:hover img {
        opacity: 0.8; }
  .top-summary-box .summary-title {
    font-size: 20px;
    padding-bottom: 0px; }
    .top-summary-box .summary-title a {
      color: #e60012;
      font-family: "じゅん 501"; }
  .top-summary-box img {
    max-width: 100%;
    border-radius: 10px 10px 0px 0px / 10px 10px 0px 0px; }
  .top-summary-box p {
    padding-bottom: 10px; }
  .top-summary-box .top-summary-text-box {
    padding: 10px 20px 20px 20px; }
  .top-summary-box .acms-btn {
    background-color: #715746;
    color: #FFF;
    padding: 10px;
    border-radius: 5px; }

@media screen and (min-width: 768px) {
  .top-summary-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 20px 0 10px 0; }
    .top-summary-box li {
      width: calc(33% - 15px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .top-summary-box h2 {
      color: #522E0A;
      margin: 15px; } }

/*サービス紹介  　*/
.top-service-wrappar h2 {
  background-color: #F2DFB4;
  text-align: center;
  padding: 10px;
  font-size: 20px;
  color: #5a341d;
  border-radius: 3px;
  font-family: "じゅん 501"; }

.text-withphoto {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .text-withphoto h3 {
    margin: 10px 0 5px;
    font-size: 18px; }
  .text-withphoto a h3 {
    color: #522E0A; }
  .text-withphoto a:hover {
    color: #522E0A; }
  .text-withphoto .text-withphoto-box {
    width: 100%;
    margin-bottom: 25px; }
    .text-withphoto .text-withphoto-box img {
      max-width: 100%;
      border-radius: 10px; }
    .text-withphoto .text-withphoto-box p {
      margin: 5px 0 15px; }
    .text-withphoto .text-withphoto-box:hover {
      -webkit-transition: background-color 0.25s linear;
      transition: background-color 0.25s linear; }
      .text-withphoto .text-withphoto-box:hover img {
        opacity: 0.8; }
  .text-withphoto .text-withphoto-box2 {
    width: calc(50% - 15px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 20px; }
    .text-withphoto .text-withphoto-box2:hover {
      -webkit-transition: background-color 0.25s linear;
      transition: background-color 0.25s linear; }
      .text-withphoto .text-withphoto-box2:hover img {
        opacity: 0.8; }
    .text-withphoto .text-withphoto-box2 p {
      margin: 5px 0 15px; }

@media screen and (min-width: 768px) {
  .text-withphoto .text-withphoto-box {
    width: calc(50% - 15px); } }

@media screen and (min-width: 1024px) {
  .text-withphoto .text-withphoto-box2 {
    width: calc(25% - 15px); } }

.top-news {
  background-color: #F8F4E5;
  padding: 20px;
  margin: 20px 10px !important;
  border-radius: 10px; }
  .top-news h2 {
    margin: 0 0 10px; }
  .top-news .acms-list-group {
    border-top: none; }
  .top-news .acms-list-group-item {
    border-bottom: 2px solid #E4DBC5; }
  .top-news .module-index-link {
    padding: 10px 0 0 0;
    text-align: right;
    display: block; }

/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
  margin: 0 0 30px 0; }

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333; }
  .module-header + .summary-custom,
  .module-header + .summary-default,
  .module-header + .entry-column,
  .module-header + .pickup-list,
  .module-header + .search-form,
  .module-header + .banner {
    margin-top: 15px; }

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

a.module-index-link {
  color: #333;
  font-size: 16px; }
  a.module-index-link [class*='acms-icon-'] {
    color: #c36767;
    font-size: 14px; }

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

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

.heading-align-center .group-heading {
  text-align: center; }

.heading-align-right .group-heading {
  text-align: right; }

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

.detail-align-center .group-detail {
  text-align: center; }

.detail-align-right .group-detail {
  text-align: right; }

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

.btn-align-center .group-btn-wrap {
  text-align: center; }

.btn-align-right .group-btn-wrap {
  text-align: right; }

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

/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #ece4db;
  border-top: 1px solid #ece4db; }

.summary-default-entry {
  padding: 10px;
  color: #333;
  border-right: 1px solid #ece4db;
  border-bottom: 1px solid #ece4db;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out; }
  .summary-default-entry.bl-hover {
    background: #F1F1F1; }
  .acms-entry .summary-default-entry {
    padding: 20px; }

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

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

@media screen and (max-width: 767px) {
  .summary-default-entry-image-wrap img {
    width: 60px;
    height: auto; } }

@media screen and (min-width: 480px) {
  .summary-default {
    margin: 0 0 20px 0; } }

/*カテゴリーインデックス  */
.summary-custom {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none; }
  .summary-custom .summary-custom-box {
    padding: 20px;
    margin: 0;
    border: none; }
    .summary-custom .summary-custom-box:hover {
      background: #F5F5F5;
      -webkit-transition: background-color 0.25s linear;
      transition: background-color 0.25s linear; }
    .summary-custom .summary-custom-box .photo img {
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px; }
    .summary-custom .summary-custom-box .photo-title a {
      color: #522E0A;
      margin: 0;
      font-weight: bold;
      font-size: 20px; }

@media screen and (min-width: 768px) {
  .summary-custom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    .summary-custom .summary-custom-box {
      width: calc(33% - 5px);
      margin-bottom: 10px;
      padding: 10px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .summary-custom::after {
      content: '';
      width: calc(33% - 5px); } }

.pickup-title {
  color: #333;
  font-size: 16px; }

/*新着情報ブログサマリー一覧 ----------*/
.blog-summary .blogentry {
  padding: 10px 0;
  margin-bottom: 10px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse; }
  .blog-summary .blogentry:hover {
    background: #F5F5F5;
    -webkit-transition: background-color 0.25s linear;
    transition: background-color 0.25s linear; }
  .blog-summary .blogentry .blogentry-photo {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px; }
  .blog-summary .blogentry .blogentrytext {
    padding: 10px 0; }
    .blog-summary .blogentry .blogentrytext time {
      display: block;
      text-align: right;
      font-size: 14px;
      color: #8a7149; }
    .blog-summary .blogentry .blogentrytext h3.blogentry-title {
      margin: 10px 0px;
      padding: 0 10px 0 6px;
      font-size: 18px;
      color: #522E0A;
      border-left: 4px solid #e60012;
      font-family: "じゅん 501"; }
      .blog-summary .blogentry .blogentrytext h3.blogentry-titlea {
        color: #522E0A !important; }

@media screen and (min-width: 768px) {
  .blog-summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
    .blog-summary .blogentry {
      width: calc(50% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 15px; } }

/* ------------------------------
　　ピックアップリスト
------------------------------ */
.pickup-list {
  margin: 0;
  padding: 0;
  list-style: none; }
  .pickup-list img {
    display: block;
    -webkit-transition: opacity 0.25s ease-out;
    transition: opacity 0.25s ease-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
    .pickup-list img:hover {
      opacity: 0.75; }

/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 15px 0;
  padding: 0 !important;
  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 .banner-list-item {
    margin-bottom: 20px; }
  .banner .banner-list-item:before {
    display: none; }

@media screen and (min-width: 768px) {
  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .banner .banner-list-item {
      width: calc(50% - 15px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out; }
  .headline-item.bl-hover {
    background: #F1F1F1; }

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

/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  font-size: 16px;
  -webkit-filter: none;
  filter: none;
  /* IEでのグラデーションを上書き */
  background: #ece4db;
  color: #522E0A;
  border-radius: 0 20px 20px 0;
  border: 1px solid #d0cdca; }
  .search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
    background: #ccaf8f; }

.search-form input[type="search"] {
  padding: 9px 10px;
  height: 40px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

.acms-form input[type=search] {
  border-radius: 20px; }

/* ------------------------------
　　レイアウトモジュール
------------------------------ */
/* 背景色 */
.layout-bg {
  padding: 20px 0;
  background: #F6F6F6; }

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

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

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

/* ------------------------------
　　各モジュール
------------------------------ */
/* フィールドグループ */
.group-heading {
  margin: 0 0 20px 0;
  font-size: 18px;
  line-height: 1.2; }

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

/* ヘッドライン */
.lp-headline {
  font-size: 16px; }

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.lp-suggest-box {
  padding: 50px 0; }

.lp-suggest-text {
  margin: 30px 0 10px 0; }

.lp-suggest-tel {
  margin: 0;
  font-size: 34px;
  font-weight: bold;
  color: #FFB500; }
  .lp-suggest-tel a {
    color: #FFB500; }

.btn-shadow {
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5); }

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 0 0 25px 0;
  border-bottom: 1px solid #ece4db; }

.page-header {
  margin: 0 0 20px 0;
  border: 3px none; }
  .page-header h1 {
    border-bottom: solid 3px #ece4db;
    position: relative;
    color: #522E0A;
    font-family: "じゅん 501"; }
  .page-header h1:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #e60012;
    bottom: -3px;
    width: 30%; }

.entry-info {
  margin-top: 0;
  font-size: 14px; }

/*写真付きテキスト*/
.textwithPhoto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  padding: 10px; }
  .textwithPhoto .textbox {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
    .textwithPhoto .textbox h3 {
      margin: 10px 0px 10px 0px;
      border-bottom: solid 1px #FFF; }
    .textwithPhoto .textbox p {
      margin: 0; }
  .textwithPhoto img {
    max-width: 100%;
    height: auto;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    border-radius: 6px; }

.acms-entry .entry-container {
  margin-left: 20px;
  margin-right: 20px; }

/*写真付きテキスト ３カラム横に並ぶ時*/
@media screen and (min-width: 768px) {
  .flex-col-4 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 20px; }
    .flex-col-4 .textwithPhoto,
    .flex-col-4 .menu-box {
      width: calc(33% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      padding: 20px;
      margin-bottom: 20px; }
    .flex-col-4:after {
      content: '';
      width: calc(33% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .flex-col-4 hr {
      display: none; } }

.entry-column .custom_menuIndexPhoto {
  position: relative;
  border: 1px solid #CCC;
  border-top: 3px solid #FF6464;
  margin: 15px 0px;
  padding: 15px;
  background: url("../../images/menu-manma.svg") no-repeat right top;
  background-size: 110px; }
  .entry-column .custom_menuIndexPhoto:first-of-type {
    background: url("../../images/menu-okan.svg") no-repeat right top;
    background-size: 110px; }
  .entry-column .custom_menuIndexPhoto h3 {
    border: none;
    padding: 0;
    position: absolute;
    top: 40px;
    font-size: 1.5em;
    margin: 0; }
  .entry-column .custom_menuIndexPhoto .menuindex-catch {
    position: absolute;
    top: 5px; }
  .entry-column .custom_menuIndexPhoto .menuindex-photo {
    padding: 80px 10px 0 10px; }
  .entry-column .custom_menuIndexPhoto p {
    margin: 12px 0 0 0; }
  .entry-column .custom_menuIndexPhoto ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .entry-column .custom_menuIndexPhoto ul li {
      width: 80px;
      font-size: 14px;
      text-align: center;
      position: relative;
      color: #522E0A;
      display: inline-block;
      margin: 25px 0;
      text-shadow: 0 0 2px white; }
    .entry-column .custom_menuIndexPhoto ul li:before {
      content: "";
      position: absolute;
      background: #ffd69d;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: -1; }

@media screen and (min-width: 768px) {
  .flex-col-6 {
    margin: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .flex-col-6 .custom_menuIndexPhoto {
      width: calc(50% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
    .flex-col-6 hr {
      display: none; } }

.column-image-left {
  max-width: 50%; }

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

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

/* エントリーのスタイル */
.entry-column {
  word-wrap: break-word; }
  .entry-column h2 {
    font-family: "じゅん 501";
    margin: 0 10px 25px 10px;
    padding: 10px;
    font-size: 20px;
    color: #522E0A;
    text-align: center;
    background-color: #F2DFB4;
    border-radius: 3px;
    text-align: center; }
    .entry-column h2.module-heading {
      margin: 0;
      padding: 10px;
      border: 0; }
    @media screen and (min-width: 768px) {
      .entry-column h2 {
        margin: 20px 20px 40px; } }
  .entry-column h3 {
    margin: 0 10px 20px 10px;
    font-size: 18px;
    color: #522E0A;
    border-bottom: 2px solid #f2dfb4; }
  .entry-column a:link {
    color: #006dd9;
    text-decoration: none; }
  .entry-column a:hover, .entry-column a:focus, .entry-column a:active {
    text-decoration: underline; }
  .entry-column a:visited {
    color: #7f5ad7;
    text-decoration: none; }
  .entry-column .module-section {
    margin: 0 10px 30px 10px; }

@media screen and (min-width: 768px) {
  .acms-entry [class*=column-eximage-],
  .acms-entry [class*=column-image-],
  .acms-entry [class*=column-media-],
  .acms-entry [class*=column-video-],
  .acms-entry [class*=column-yolp-],
  .acms-entry [class*=column-youtube-] {
    padding-left: 20px;
    padding-right: 20px; }
  .acms-entry dl,
  .acms-entry h2,
  .acms-entry h3,
  .acms-entry h4,
  .acms-entry h5,
  .acms-entry h6,
  .acms-entry p {
    margin-left: 20px;
    margin-right: 20px; }
  .acms-grid,
  .acms-grid-r {
    margin-left: -20px;
    margin-right: -20px; } }

.entry-column .acms-col-md-6 {
  padding: 0 10px; }
  .entry-column .acms-col-md-6 h2 {
    margin: 0 10px 25px; }
  .entry-column .acms-col-md-6 h3 {
    margin: 0 10px 20px; }
  .entry-column .acms-col-md-6 p {
    margin-left: 20px;
    margin-right: 20px; }

.entry-column .module-section {
  margin: 0 20px 30px 20px; }

/*価格ユニット用 -----*/
.entry-column .price {
  font-family: "じゅん 501";
  background-color: #F9F2B3;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, #F9F9F9), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, #F9F9F9), color-stop(0.75, #F9F9F9), color-stop(0.75, transparent), to(transparent));
  -webkit-background-size: 7px 7px;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #c70505; }
  .entry-column .price strong {
    font-size: 1.5em; }
  @media screen and (min-width: 768px) {
    .entry-column .price {
      font-size: 20px;
      margin: 20px 20% 40px; } }

@media screen and (min-width: 768px) {
  .entry-column .acms-col-md-6 .price {
    text-align: left;
    margin: 20px;
    font-size: 18px; } }

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7; }
  .entry-column p strong {
    font-weight: bold;
    color: #c70505;
    font-size: 1.2em; }
  .entry-column p em {
    font-weight: bold;
    font-style: normal;
    background-color: #fbf2df;
    color: #522E0A; }

/* エントリー内ボタン */
.entry-column p.entry-btn {
  margin-bottom: 10px; }
  .entry-column p.entry-btn a {
    background: #715746;
    border-radius: 10px;
    font-weight: bold;
    color: #FFF;
    line-height: 1.2;
    border: 0;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px; }
    .entry-column p.entry-btn a:hover, .entry-column p.entry-btn a:visited {
      color: #FFF;
      text-decoration: none; }
    .entry-column p.entry-btn a:focus, .entry-column p.entry-btn a:active {
      color: #FFF;
      -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
      box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
    .entry-column p.entry-btn a:hover {
      background: #503A2C; }
    .entry-column p.entry-btn a:active, .entry-column p.entry-btn a:focus {
      background: #878787; }

/* 色付きボタン */
.entry-column p.entry-btn-attention {
  text-align: center; }
  .entry-column p.entry-btn-attention a {
    background: #B73F3F;
    font-weight: bold;
    color: #FFF;
    line-height: 1.2;
    border: 0;
    display: inline-block;
    padding: 8px 15px;
    border-radius: 3px;
    display: inline-block;
    padding: 15px 20px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px; }
    .entry-column p.entry-btn-attention a:hover, .entry-column p.entry-btn-attention a:visited {
      color: #FFF;
      text-decoration: none; }
    .entry-column p.entry-btn-attention a:focus, .entry-column p.entry-btn-attention a:active {
      color: #FFF;
      -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
      box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
    .entry-column p.entry-btn-attention a:hover {
      background: #801D1D; }
    .entry-column p.entry-btn-attention a:active, .entry-column p.entry-btn-attention a:focus {
      background: #8E1E1E; }

.entry-column p.summary-title {
  margin: 0 0 10px 0; }

.entry-column p.summary-detail {
  margin: 0 0 10px 0;
  font-size: 16px; }

/* エントリー内コンテナー */
.entry-container {
  margin: 0 20px; }

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

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

/* テーブル */
.entry-column table {
  width: 100%;
  margin: 0; }
  .entry-column table.table-history {
    table-layout: fixed; }

.entry-column th,
.entry-column td {
  display: block;
  padding: 5px 10px;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  border-top: 1px solid #dfdfdf;
  vertical-align: top; }

.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 .acms-table-scrollable th,
.entry-column .acms-table-scrollable td {
  display: table-cell;
  white-space: nowrap; }

.entry-column th {
  background: #f5f5f5; }

/* 沿革用テーブル */
.entry-column table.table-history tr {
  background: #fff; }

.entry-column table.table-history th,
.entry-column table.table-history td {
  display: block; }

.entry-column table.table-history th {
  padding: 10px; }

.entry-column table.table-history td {
  padding: 10px 0; }

.entry-column table.table-history .table-history-sssimg {
  display: block;
  padding: 0 10px 10px 10px;
  background: #FFF; }

/* リスト */
.entry-column ul {
  margin: 0 0 25px 0;
  padding: 0 0 0 2.2em; }
  .entry-column ul li {
    list-style: none;
    margin: 0 0 5px 0;
    font-size: 16px;
    line-height: 1.5;
    position: relative; }
    .entry-column ul li:before {
      content: '●';
      color: #CB0101;
      font-size: 2px;
      position: absolute;
      top: 4px;
      left: -12px; }
  .entry-column ul.summary-default {
    padding: 0; }
    .entry-column ul.summary-default li {
      margin: 0; }

/*エントリー記事についたメールフォーム（動的フォーム）------*/
.acms-admin-entry h2 {
  padding: 10px;
  font-size: 1.2em;
  color: #522e0a;
  background-color: #f2dfb4;
  border-radius: 8px;
  text-align: center;
  font-family: "じゅん 501"; }

.acms-admin-entry h3 {
  margin: 0 10px 20px;
  padding: 0 10px 0 6px;
  font-size: 18px;
  color: #522e0a;
  border-left: 4px solid #e60012;
  font-family: "じゅん 501"; }

.acms-admin-entry .acms-admin-table {
  margin: 20px 0px; }

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

/* 番号付きリスト */
.entry-column ol {
  margin: 0 0 25px 0;
  padding: 0 0 0 2.5em; }
  .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-left: 0;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5; }

/* 引用 */
.entry-column blockquote {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 20px 15px 16px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 4px solid #bfbfbf;
  background: #efefef;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* ソースコード */
.entry-column pre {
  width: 100%;
  margin: 0 0 30px 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  .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 #ece4db; }

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

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

@media screen and (min-width: 480px) {
  .entry-column .table-history-img {
    float: right; } }

@media screen and (min-width: 768px) {
  .entry-column table {
    border-bottom: 1px solid #DDD;
    border-right: 1px solid #DDD; }
    .entry-column table th,
    .entry-column table td {
      display: table-cell;
      padding: 15px 20px;
      text-align: left;
      font-size: 16px;
      border-top: 1px solid #DDD;
      border-left: 1px solid #DDD; }
    .entry-column table th {
      background: #f7f6f3;
      white-space: nowrap; } }

/* エントリーフッター */
.entry-footer {
  margin: 0;
  padding: 0px;
  background: #FFF; }

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

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

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

/* SNSシェア */
.share-wrapper {
  float: right; }

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

/* SNSシェアボタン */
.share-list {
  display: inline;
  list-style: none;
  float: right;
  margin: 0;
  padding: 0; }

.share-item {
  display: inline-block;
  margin: 0 0 0 20px;
  vertical-align: top; }
  .share-item a {
    color: #999;
    text-decoration: none; }
  .share-item [class*='acms-icon'] {
    font-size: 16px;
    vertical-align: middle; }
  .share-item .share-item-facebook {
    /* Facebook */
    display: block;
    width: 22px;
    height: 22px;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    background: #3B5999;
    border-radius: 4px; }
    .share-item .share-item-facebook:before {
      vertical-align: middle; }
  .share-item .share-item-twitter {
    /* Twitter */
    display: block;
    width: 22px;
    height: 22px;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    background: #55ACEE;
    border-radius: 4px; }
    .share-item .share-item-twitter:before {
      vertical-align: middle; }
  .share-item .share-item-gplus {
    /* Google + */
    display: block;
    width: 22px;
    height: 22px;
    line-height: 1.2;
    color: #FFF;
    text-align: center;
    font-size: 16px;
    background: #DD4B39;
    border-radius: 4px; }
    .share-item .share-item-gplus:before {
      vertical-align: middle; }

/* 続きを読むボタン */
.continue-link {
  margin: 0;
  font-size: 16px; }

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  line-height: 1.5;
  font-weight: bold;
  border-radius: 3px;
  background: #999; }
  .continue-link a [class*='acms-icon'] {
    margin: 0 10px 0 0; }
  .continue-link a:link, .continue-link a:visited {
    color: #fff; }
  .continue-link a:hover, .continue-link a:focus, .continue-link a:active {
    color: #fff;
    text-decoration: none;
    background: #aaa; }

@media screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0; }
  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal; } }

/*はじめての方へ------　*/
.beginner-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0px 10px 30px 10px;
  padding: 0; }
  @media screen and (min-width: 768px) {
    .beginner-nav ul {
      margin: 0px 20px 30px 20px; } }
  .beginner-nav ul li {
    list-style: none;
    position: relative;
    width: calc(50% - 5px);
    /*box-sizing: border-box;*/
    margin-bottom: 10px;
    position: relative; }
    @media screen and (min-width: 768px) {
      .beginner-nav ul li {
        width: calc(33.3% - 5px); } }
    .beginner-nav ul li:before {
      display: none; }
  .beginner-nav ul li a {
    display: block;
    background-color: #F5F2E9;
    padding: 10px;
    text-align: center;
    border: 2px solid #D3B58D;
    border-radius: 6px; }
    .beginner-nav ul li a:link, .beginner-nav ul li a:hover, .beginner-nav ul li a:focus, .beginner-nav ul li a:active, .beginner-nav ul li a:visited {
      color: #522E0A;
      text-decoration: none; }
    .beginner-nav ul li a:hover {
      background-color: #8c6a49;
      color: #FFF; }
  .beginner-nav ul li a:before {
    position: absolute;
    top: calc(50% - 9px);
    left: 5px;
    font-size: 12px;
    color: #ED9898;
    content: '▲';
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }
    @media screen and (min-width: 768px) {
      .beginner-nav ul li a:before {
        left: 15px; } }

/*　3つの特徴　　*/
.entry-column .manma3feature {
  list-style: none;
  padding: 0;
  margin: 0 20px; }
  .entry-column .manma3feature li {
    position: relative;
    text-align: center;
    padding-bottom: 20px; }
    .entry-column .manma3feature li div {
      margin: 10px; }
    .entry-column .manma3feature li p {
      margin: 0; }
    .entry-column .manma3feature li strong {
      font-size: 1.6em;
      color: #522E0A;
      font-family: "じゅん 501"; }
    .entry-column .manma3feature li img {
      border-radius: 50%;
      max-width: 100%; }
    .entry-column .manma3feature li .feature1:before {
      position: absolute;
      top: calc(30% - 34px);
      left: calc(50% - 85px);
      content: '　';
      background: url("../../images/no1.svg") no-repeat;
      width: 60%;
      height: 26%; }
    .entry-column .manma3feature li .feature2:before {
      position: absolute;
      top: calc(30% - 34px);
      left: calc(50% - 85px);
      content: '　';
      background: url("../../images/no2.svg") no-repeat;
      width: 60%;
      height: 26%; }
    .entry-column .manma3feature li .feature3:before {
      position: absolute;
      top: calc(30% - 34px);
      left: calc(50% - 85px);
      content: '　';
      background: url("../../images/no3.svg") no-repeat;
      width: 60%;
      height: 26%; }

@media screen and (min-width: 768px) {
  .manma3feature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .manma3feature li {
      width: calc(32% - 10px); } }

/*カタログのご紹介　　*/
.catalog-flexbox {
  padding: 15px; }
  .catalog-flexbox .catalog-box {
    padding: 0 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .catalog-flexbox .catalog-box .catalog-box-text {
      width: calc(60% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .catalog-flexbox .catalog-box .catalog-box-text h3 {
        padding: 0;
        border-bottom: 1px solid #FFF; }
    .catalog-flexbox .catalog-box .catalog-box-photo {
      width: calc(40% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .catalog-flexbox .catalog-box .catalog-box-photo img {
        max-width: 100%;
        border-radius: 0; }

@media screen and (min-width: 768px) {
  .catalog-flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 20px; }
    .catalog-flexbox .catalog-box {
      width: calc(50% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }

/* FAQ --------*/
.faq-box div {
  margin: 0; }

.faq-box dt {
  padding: 10px 35px;
  background-color: #675132;
  color: #FFF;
  border-radius: 6px;
  margin: 0;
  position: relative;
  line-height: 1.5;
  font-family: "じゅん 501"; }
  .faq-box dt:before {
    display: inline-block;
    position: absolute;
    content: 'Q';
    color: #FDF7E3;
    left: 10px;
    font-size: 18px; }
  .faq-box dt:after {
    display: inline-block;
    position: absolute;
    content: '+';
    width: 24px;
    height: 24px;
    color: #FFF;
    right: 10px;
    font-size: 18px;
    background: #ED9898;
    border-radius: 50%;
    text-align: center;
    line-height: 1.2; }

.faq-box dd {
  background-color: #FDF7E3;
  padding: 20px 10px 10px 40px;
  border: 1px solid #D3B58D;
  border-radius: 3px;
  position: relative;
  margin: 0 0 20px 0; }
  .faq-box dd:before {
    display: inline-block;
    position: absolute;
    font-family: "じゅん 501";
    content: 'A';
    color: #e60012;
    left: 10px;
    font-size: 18px; }

@media screen and (min-width: 768px) {
  .faq-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .faq-box div {
      width: calc(50% - 10px);
      -webkit-box-sizing: border-box;
      box-sizing: border-box; } }

/* Container */
/* Accordion header */
.fr-accordion--is-ready .fr-accordion__header {
  cursor: pointer; }

/* Accordion panel */
.fr-accordion--is-ready .fr-accordion__panel {
  overflow: hidden; }

.fr-accordion__panel[aria-hidden="true"] {
  visibility: hidden;
  height: 0;
  padding: 0; }

.fr-accordion__panel[aria-hidden="false"] {
  visibility: visible; }

/*--　曜日メニューユニット用　-----------*/
.flex-col-4 hr {
  display: none; }

.menu-box {
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f2ea;
  border-bottom: 2px solid #8a6e1f;
  border-right: 2px solid #8a6e1f; }
  .menu-box p {
    margin: 0;
    color: #522E0A;
    font-size: 14px;
    padding: 10px 0; }
    .menu-box p strong {
      font-size: 1.2em;
      color: #522E0A;
      background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(70%, #ffd8a7));
      background: linear-gradient(transparent 70%, #ffd8a7 70%); }
  .menu-box .mneu-textwithphoto {
    position: relative; }
    .menu-box .mneu-textwithphoto img {
      border-radius: 6px; }
  .menu-box .mneu-text-flexbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0 0 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .menu-box .mneu-text-flexbox .menu-text {
      width: calc(60% - 10px); }
    .menu-box .mneu-text-flexbox .menu-calorie {
      width: calc(40% - 10px);
      margin: 0;
      padding: 10px 0 0 10px; }
      .menu-box .mneu-text-flexbox .menu-calorie li {
        font-size: 14px !important; }

.entry-column .menu-box h3 {
  border-left: none;
  font-size: 24px;
  position: absolute;
  top: 7px;
  background-color: #e60012;
  color: #FFF;
  font-family: "じゅん 501";
  padding: 0.5em;
  line-height: 1;
  border-radius: 50%; }

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

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

/* ------------------------------
　　サブカラム
------------------------------ */
.sub h2 {
  margin-top: 0;
  font-size: 20px;
  color: #522E0A;
  padding-bottom: 6px;
  margin-bottom: 10px;
  border-bottom: 3px solid #ceb599; }

.acms-list-group {
  border: none; }

.acms-list-group-item {
  border-bottom: 2px solid #ece4db;
  font-family: "じゅん 501";
  padding: 10px 10px 10px 30px;
  position: relative; }
  .acms-list-group-item:before {
    position: absolute;
    content: '';
    width: 16px;
    height: 16px;
    background: url("../../images/icon-arrow.svg") no-repeat left top;
    /*background-image: url("../../images/icon-arrow.svg");*/
    top: 14px;
    left: 6px; }

a.acms-list-group-item:active,
a.acms-list-group-item:focus,
a.acms-list-group-item:hover,
a.acms-list-group-item:visited {
  color: #522E0A; }

.acms-list-group-item:hover {
  background-color: #ece4db; }

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.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; } }

/* ------------------------------
　　お問い合わせ
------------------------------ */
@media screen and (min-width: 768px) {
  .contact-index-box {
    width: calc(50% - 10px);
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 10px; }
    .contact-index-box h2 {
      margin: 20px 0px; } }

.contact-tel-box {
  font-size: 40px !important;
  font-family: "じゅん 501";
  color: #e60012;
  padding-left: 20px; }

.contact-box p.message {
  margin: 0 0 35px 0;
  font-weight: bold;
  color: #e60012; }

.contact-box p.contact-no {
  font-family: "じゅん 501";
  margin: 0;
  font-size: 20px;
  color: #e60012; }
  .contact-box p.contact-no strong {
    font-size: 30px; }
  .contact-box p.contact-no a {
    color: inherit; }

.contact-box p.error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #e60012; }

.contact-form {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  background: #f7f7f7; }

.contact-form-group {
  margin: 0;
  padding: 0;
  border: 0; }

.contact-form-label {
  display: block;
  text-align: left;
  margin: 0;
  padding: 10px 10px 0 10px; }

.contact-form-control {
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid #DDD; }

.contact-form-label {
  font-weight: bold; }

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

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

@media screen and (min-width: 768px) {
  .contact-form {
    display: table;
    width: 100%; }
  .contact-form-group {
    display: table-row; }
  .contact-form-label,
  .contact-form-control {
    display: table-cell; }
  .contact-form-label {
    width: 33.33333%;
    padding: 25px 15px 15px 15px;
    vertical-align: top;
    border-bottom: 1px solid #DDD; }
  .contact-form-control {
    width: 66.66667%;
    padding: 15px; }
  .contact-form-col {
    margin: 0; } }

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 35px 0;
  padding: 0 10px;
  background: #ece4db;
  /* カウンターの設定 */
  counter-reset: mailStep; }

.contact-box .mail-step-item {
  float: left;
  list-style: none;
  margin: 0 10px;
  padding: 18px 0 14px;
  color: #999;
  font-size: 16px;
  font-weight: bold;
  border-bottom: 4px solid transparent; }
  .contact-box .mail-step-item:before {
    /* カウンターの設定 */
    counter-increment: mailStep;
    content: counter(mailStep) "."; }

.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid #333; }

@media screen and (min-width: 768px) {
  .contact-box .mail-step {
    height: 60px; } }

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

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

.form-btn-return {
  float: left; }

.form-btn-send {
  float: right; }

@media screen and (min-width: 768px) {
  .form-btn-return {
    float: none; }
  .form-btn-send {
    float: none;
    max-width: 360px;
    width: 100%; } }

/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 2px 8px;
  color: #FFF;
  font-size: 12px;
  border-radius: 3px;
  background: #e60012; }

@media screen and (min-width: 768px) {
  .label-required {
    float: right; } }

/* フォーム要素
------------------------------ */
.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;
  padding: 14px 5px 10px 5px; }

.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px; }

.contact-box select {
  font-size: 16px;
  padding: 11px 30px 11px 10px;
  vertical-align: top; }

/* バリデーター
------------------------------ */
.valid-mark {
  display: none; }

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

.invalid {
  background: #ffebee !important; }

/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.header-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start; }
  .header-stack .header-box {
    margin: 30px 0 20px; }
  .header-box .site-name {
    margin: 0; }
  .header-box .site-logo {
    width: 180px;
    height: auto; }
  .header-box p {
    margin: 0;
    font-size: 14px; }

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

@media (min-width: 768px) {
  .header-box {
    text-align: left; }
  .site-name {
    margin: 0;
    font-size: 24px; }
    .header-stack .site-name {
      text-align: center; }
  .header {
    display: table;
    width: 100%; }
    .header-stack .header {
      display: block; }
    .header p {
      font-size: 14px !important;
      text-align: center; }
  .header-logo {
    display: table-cell;
    vertical-align: middle; }
    .header-stack .header-logo {
      display: block;
      width: calc(50% - 10px); }
  .header-nav {
    /*display: table-cell;*/
    /*width: 50%;*/
    vertical-align: middle; }
    .header-stack .header-nav {
      display: block;
      width: 100%;
      margin: 0; } }

@media (min-width: 1024px) {
  .header p {
    text-align: left; }
  .head-wrapper {
    border-top: 2px solid #e60012; }
  .header-logo {
    margin: 0px !important; }
  .header-stack .site-name {
    text-align: left; }
  .site-name-text {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 50%; }
    .site-name-text .site-name-telbox .telno {
      text-align: right;
      color: #522E0A;
      font-size: 0.8em;
      line-height: 1.2; }
      .site-name-text .site-name-telbox .telno strong {
        font-size: 1.8em;
        font-family: "じゅん 501"; }
    .site-name-text .site-name-info {
      font-size: 0.9em;
      font-family: "じゅん 501";
      margin: 0 0 0 20px; }
      .site-name-text .site-name-info:hover {
        text-decoration: none; }
      .site-name-text .site-name-info .acms-btn-large {
        padding: 20px 15px; }
      .site-name-text .site-name-info .site-name-infobtn {
        background-color: #e60012;
        color: #FFF; }
        .site-name-text .site-name-info .site-name-infobtn:hover {
          text-decoration: none;
          background-color: #f56571; } }

/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  /* 固定したときの高さを保つ */
  padding: 20px 0 0 0;
  margin: 30px auto 10px; }

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0 5px;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
  border-top: 2px solid #e60012;
  border-bottom: 2px solid #e60012;
  background: #FFF;
  z-index: 100;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

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

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

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

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

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

.navbar {
  display: none;
  width: 100%; }
  .navbar.acms-admin-module-edit-wrapper {
    z-index: 1; }
  .navbar ul {
    list-style: none;
    margin: 0;
    padding: 0; }
  .navbar li a {
    display: block;
    padding: 10px 8px;
    color: #522E0A;
    font-weight: bold;
    font-size: 15px; }
    .navbar li a:hover, .navbar li a:focus, .navbar li a:active {
      text-decoration: none;
      color: #FFF;
      background: #e60012; }

@media (min-width: 1024px) {
  .header {
    /*height: 100px;*/ }
  .header-naviline {
    border-top: solid #F5ECDC 2px; }
  .header-naviline {
    border-bottom: solid #F5ECDC 2px; }
  .navbar {
    display: inline-block;
    vertical-align: middle; }
    .navbar > ul {
      float: right;
      list-style: none;
      padding: 0; }
      .header-stack .navbar > ul {
        float: none;
        display: table;
        width: 100%;
        table-layout: fixed; }
    .navbar li {
      float: left;
      position: relative;
      margin: 0 10px;
      vertical-align: middle;
      text-align: center; }
      .header-stack .navbar li.navbar-btn {
        padding: 0 10px; }
      .header-stack .navbar li {
        float: none;
        display: table-cell; }
      .navbar li ul {
        /* 二階層目 */
        display: none;
        position: absolute;
        left: 0;
        min-width: 200px; }
      .navbar li li {
        margin: 0; }
        .header-stack .navbar li li {
          display: block;
          font-weight: normal;
          border: 0; }
      .navbar li a {
        /* 一階層目のリンクのみ */
        padding: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        -webkit-transition: border 0.1s ease-out;
        transition: border 0.1s ease-out; }
        .navbar li a:hover, .navbar li a:focus, .navbar li a:active {
          color: #333;
          background: #F5ECDC; }
        .header-stack .navbar li a {
          display: block;
          padding: 10px 8px;
          font-size: 15px; }
      .navbar li.stay a {
        /* 一階層目のリンクのみ */
        border-bottom: 4px solid #F5ECDC; }
        .navbar li.stay a.btn-attention {
          border: 0; }
      .navbar li:hover ul {
        /* 二階層目 */
        display: block;
        z-index: 10000;
        -webkit-animation: 0.8s fade-in;
        animation: 0.8s fade-in; }
      .navbar li:hover a {
        /* 一階層目のリンクのみ */
        border-bottom: 4px solid #F5ECDC; }
        .navbar li:hover a.btn-attention {
          border: 0; }
      .navbar li:hover li a {
        border: 0; }
      .navbar li li {
        /* 二階層目以降 */
        display: block;
        float: none;
        text-align: left;
        background: #e60012;
        border: 0;
        /*border-top: 1px solid $primary-color-hover;*/ }
        .navbar li li:first-child {
          /*border: 0;*/ }
        .navbar li li a {
          margin: 0;
          padding: 10px 15px;
          color: #FFF;
          background: #655846;
          /*border: 0;*/ }
          .navbar li li a:hover {
            color: #FFF;
            border: 0;
            background: #3B3329; }
    .navbar a.btn-attention {
      /* ボタン（色付き） */
      background: #E60012;
      font-weight: bold;
      color: #FFF;
      line-height: 1.2;
      border: 0;
      display: inline-block;
      padding: 8px 15px;
      border-radius: 3px;
      border: 0; }
      .navbar a.btn-attention:hover, .navbar a.btn-attention:visited {
        color: #FFF;
        text-decoration: none; }
      .navbar a.btn-attention:focus, .navbar a.btn-attention:active {
        color: #FFF;
        -webkit-box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
        box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5); }
      .navbar a.btn-attention:hover {
        background-color: #E60012;
        background-image: -webkit-gradient(linear, left top, left bottom, from(#E60012), to(#E60012));
        background-image: linear-gradient(to bottom, #E60012, #E60012);
        color: #FFF;
        border: 0; }
      .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
        background: #8E1E1E; } }

@media (min-width: 1024px) {
  .header-logo {
    padding: 0; }
  .navbar ul li a {
    font-size: 14px; } }

@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px; } }

/* オフキャンバス */
.close-btn {
  display: none;
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  opacity: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.js-acms-offcanvas-open #offcanvas .close-btn {
  display: block;
  opacity: 0.7; }

.js-acms-offcanvas-open #offcanvas .close-btn:focus {
  color: #FFF;
  overflow: initial;
  white-space: initial;
  text-indent: initial; }

@media (max-width: 1023px) {
  #nav {
    padding: 10px 15px 100px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  .offcanvas-nav {
    /* グローバルナビゲーション */
    margin: 0 0 20px 0; }
    .offcanvas-nav ul {
      list-style: none;
      margin: 0;
      padding: 0; }
    .offcanvas-nav li {
      display: block;
      padding: 10px;
      font-size: 16px;
      border-top: 1px solid #CCC; }
      .offcanvas-nav li.navbarBtn {
        border: 0; }
      .offcanvas-nav li.stay {
        background: #555; }
        .no-js .offcanvas-nav li.stay {
          background: #ece4db; }
      .offcanvas-nav li:first-child {
        border: 0; }
      .offcanvas-nav li ul {
        /*display: none;*/ }
    .offcanvas-nav a {
      display: block;
      margin: -10px;
      padding: 10px;
      color: #E8EDE3; }
      .offcanvas-nav a:hover {
        text-decoration: none; }
      .offcanvas-nav a.btn-attention {
        border-top: 0;
        border-radius: 0;
        font-weight: normal; }
        .offcanvas-nav a.btn-attention:hover {
          background: #E60012; }
      .no-js .offcanvas-nav a {
        color: #333; }
  /* オフキャンバス内のパーツ */
  .offcanvas-bar {
    display: none;
    padding: 10px 15px 100px 15px; }
    .js-acms-offcanvas-active .offcanvas-bar {
      background: #333; }
    .offcanvas-bar .module-header {
      color: #FFF;
      border-bottom: 2px solid #FFF; }
      .no-js .offcanvas-bar .module-header {
        /* IE8対応 */
        color: #333;
        border-bottom: 2px solid #333; }
    .offcanvas-bar .side-list-link {
      color: #FFF; }
      .no-js .offcanvas-bar .side-list-link {
        /* IE8対応 */
        color: #333; }
      .offcanvas-bar .side-list-link:hover, .offcanvas-bar .side-list-link:visited, .offcanvas-bar .side-list-link:focus, .offcanvas-bar .side-list-link:active {
        color: #FFF;
        background: 0; }
        .no-js .offcanvas-bar .side-list-link:hover, .no-js .offcanvas-bar .side-list-link:visited, .no-js .offcanvas-bar .side-list-link:focus, .no-js .offcanvas-bar .side-list-link:active {
          /* IE8対応 */
          color: #333; }
    .offcanvas-bar .pickup-title {
      margin: 0;
      color: #FFF;
      font-size: 16px; }
      .offcanvas-bar .pickup-title a {
        color: inherit; }
    .offcanvas-bar .btn-search {
      background: #999;
      border: 1px solid #666; }
    .offcanvas-bar .sns-list {
      margin: 0 -5px; }
  .js-acms-offcanvas-sidebar-left {
    padding-left: calc(15px + constant(safe-area-inset-left)); }
  .js-acms-offcanvas-sidebar-right {
    padding-right: calc(15px + constant(safe-area-inset-right)); } }

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.suggest-box ul {
  margin: 15px 10px;
  padding: 0; }

.suggest-box ul li {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3)); }

@media screen and (min-width: 768px) {
  .suggest-box ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .suggest-box li {
    width: calc(33% - 10px);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 30px 0px; } }

.suggest-inner {
  display: table;
  width: 100%;
  padding: 15px 0; }

.suggest-item {
  width: 100%;
  margin: 0 auto;
  padding: 0; }

.suggest-text {
  margin: 0 0 10px 0;
  line-height: 1.5;
  font-size: 14px; }

.suggest-tel {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: bold;
  color: #666; }
  .suggest-tel a {
    color: inherit; }

.suggest-btn {
  margin: 0; }

@media screen and (min-width: 768px) {
  .suggest-inner {
    padding: 0; }
  .suggest-item {
    padding: 30px 10px; }
  .suggest-tel {
    margin: 0; }
  .suggest-half {
    display: table-cell;
    width: 50%;
    vertical-align: middle; } }

.foot-wrapper {
  background: url("../../images/town.png") top center repeat-x #5E451B;
  padding: 250px 0 0 0; }
  @media screen and (min-width: 768px) {
    .foot-wrapper {
      padding: 250px 0 0 0; } }

/* フッター内会社情報 */
.footer {
  background: #CB0101;
  padding: 15px; }

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

.company-name {
  margin: 0 0 15px 0;
  color: #FFF;
  font-size: 20px;
  font-style: normal; }

.company-detail {
  margin: 0 0 5px 0;
  padding: 0;
  color: #FFF;
  font-size: 14px;
  font-style: normal; }
  .company-detail a {
    color: #FFF; }
    .company-detail a:hover {
      text-decoration: underline; }

/* フッターナビゲーション */
.footer-nav {
  max-width: 100%;
  margin: 0 -10px;
  padding: 15px; }
  .footer-nav ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .footer-nav ul:after {
      width: 30%;
      content: "";
      display: inline-block; }
      @media screen and (min-width: 1024px) {
        .footer-nav ul:after {
          width: 20%; } }
    .footer-nav ul li {
      list-style: none;
      color: #FFF;
      padding: 5px 5px 5px 12px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      width: 30%;
      font-weight: bold; }
      @media screen and (min-width: 1024px) {
        .footer-nav ul li {
          width: 20%; } }
    .footer-nav ul > li > a {
      margin: 10px 0px;
      display: inline-block; }
    .footer-nav ul > li ul {
      display: block; }
      .footer-nav ul > li ul li {
        width: 100%;
        font-size: 14px;
        font-weight: normal; }
        .footer-nav ul > li ul li:before {
          content: "▲";
          margin-right: 3px;
          font-size: 10px;
          -webkit-transform: rotate(90deg);
          -ms-transform: rotate(90deg);
          transform: rotate(90deg);
          display: inline-block;
          color: #ffffff47; }
        .footer-nav ul > li ul li a {
          margin: 0; }
  .footer-nav a:link,
  .footer-nav a:visited,
  .footer-nav a:hover,
  .footer-nav a:active,
  .footer-nav a:focus {
    color: #FFF; }

/* ページの上に戻るボタン */
.page-top-btn {
  display: block;
  position: fixed;
  right: 20px;
  right: calc(20px + constant(safe-area-inset-right));
  bottom: 20px;
  width: 86px;
  height: 80px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../../images/marker/btn_pageTop.png") no-repeat center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out; }
  .no-js .page-top-btn {
    /* jsが無効の環境のとき */
    opacity: 0.6; }

.page-top-btn-appear {
  opacity: 1; }

@media screen and (max-width: 767px) {
  .page-top-btn {
    display: none; } }

@media screen and (min-width: 768px) {
  .page-top-btn:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear; } }

/* フッター内各SNSアカウントのリンク集 */
.sns-list {
  list-style: none;
  margin: 0 -5px 30px 15px;
  padding: 0; }

.sns-list-item {
  float: left;
  margin: 0 5px; }
  .sns-list-item a:hover, .sns-list-item a:visited, .sns-list-item a:active, .sns-list-item a:focus {
    text-decoration: none; }

/* 各種SNSボタン */
.sns-list-item .sns-list-facebook {
  /* Facebook */
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 19px;
  color: #FFF;
  border-radius: 4px;
  background: #3B5999; }
  .sns-list-item .sns-list-facebook:before {
    vertical-align: middle; }

.sns-list-item .sns-list-twitter {
  /* Twitter */
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 19px;
  color: #FFF;
  border-radius: 4px;
  background: #55ACEE; }
  .sns-list-item .sns-list-twitter:before {
    vertical-align: middle; }

.sns-list-item .sns-list-gplus {
  /* Google + */
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 19px;
  color: #FFF;
  border-radius: 4px;
  background: #DD4B39; }
  .sns-list-item .sns-list-gplus:before {
    vertical-align: middle; }

.sns-list-item .sns-list-youtube {
  /* YouTube */
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.5;
  font-size: 19px;
  color: #FFF;
  border-radius: 4px;
  background: #CD201F; }
  .sns-list-item .sns-list-youtube:before {
    vertical-align: middle; }

@media screen and (min-width: 768px) {
  .sns-list {
    float: right;
    margin: 0 -10px; }
  .sns-list-item {
    margin: 10px; }
    .sns-list-item a:hover {
      opacity: 0.8;
      -webkit-transition: opacity 0.25s linear;
      transition: opacity 0.25s linear; } }

/* 著作権表示 */
.copyright {
  margin: 0;
  color: #FFF; }

.copyright-text {
  margin: 0 auto; }

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

/*# sourceMappingURL=maps/site.css.map */
