@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #FFF;
  font-size: 16px;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
}

p + p {
  margin-top: 1em;
}

nav ul {
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  margin: 0;
}

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

/* リンクの設定 */
a {
  color: #333;
  text-decoration: none;
  border: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  outline: none;
}

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

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

a:hover {
  color: #333;
  text-decoration: none;
}

.sp {
  display: none;
}
@media (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}

.pc {
  display: inline-block;
}
@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

.se {
  display: none;
}
@media (max-width: 320px) {
  .se {
    display: inline-block;
  }
}

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

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

/* タイトル */
.bar-ttl-center {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #281D36;
  text-align: center;
}
.bar-ttl-center .en-ttl {
  font-size: 36px;
  color: #0B0B0B;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.bar-ttl-center .en-ttl::after {
  content: "";
  width: 0%;
  height: 1px;
  background: #AC305D;
  position: absolute;
  bottom: 3px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.bar-ttl-center .en-ttl.isActive::after {
  width: 276px;
}

.bar-ttl-left {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #281D36;
  margin: 0;
  position: relative;
  z-index: 1;
}
.bar-ttl-left::after {
  content: "";
  width: 0%;
  height: 1px;
  background: #C1A0B2;
  position: absolute;
  left: 0;
  bottom: 1px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.bar-ttl-left.isActive::after {
  width: 100%;
}
.bar-ttl-left span {
  font-size: 24px;
  text-transform: uppercase;
  color: #0B0B0B;
  padding-right: 41px;
  margin-left: -2px;
  position: relative;
}
.bar-ttl-left span::after {
  content: "";
  width: 2px;
  height: 18px;
  background: #AC305D;
  position: absolute;
  right: 22px;
  bottom: 6px;
}

.red-ttl-center {
  font-size: 24px;
  color: #AC305D;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

@media (max-width: 767px) {
  .acms-container {
    padding: 0 5%;
  }

  .narrow-container {
    padding: 0 5%;
  }
}
@media (max-width: 320px) {
  .bar-ttl-left span {
    padding-right: 24px;
  }
  .bar-ttl-left span::after {
    right: 13px;
  }
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }

  .bar-ttl-center {
    font-size: 18px;
  }
  .bar-ttl-center .en-ttl {
    font-size: 40px;
  }
  .bar-ttl-center .en-ttl.isActive::after {
    width: 300px;
  }

  .bar-ttl-left {
    font-size: 18px;
  }
  .bar-ttl-left::after {
    bottom: 3px;
  }
  .bar-ttl-left span {
    font-size: 36px;
    padding-right: 73px;
  }
  .bar-ttl-left span::after {
    width: 4px;
    height: 22px;
    right: 38px;
    bottom: 8px;
  }

  .red-ttl-center {
    font-size: 28px;
  }
}
/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0;
  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-list-item {
  margin: 0 0 20px 0;
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #281D36;
  border: 0;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 15px 13px;
  text-align: center;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  width: 185px;
  margin: 0 auto;
  position: relative;
}
.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::after {
  content: "";
  width: 8px;
  height: 16px;
  background: url(../../assets/images/btn_arrow_icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 52%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn:hover {
  background: #AC305D;
}
.btn:active, .btn:focus {
  background: #281D36;
}

/* ボタン　色付き */
.btn-attention {
  background: #FF9A00;
  border: 0;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 15px 13px;
  text-align: center;
  border-radius: 30px;
}
.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 {
  color: #FFF;
  background-color: #FF9A00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FF9A00));
  background-image: linear-gradient(to bottom, #FDD87D, #FF9A00);
}
.btn-attention:active, .btn-attention:focus {
  background: #EDA800;
}

/* ボタンツートーン(input) */
.btn-2tone {
  width: 250px;
  margin: 0 auto;
  background: linear-gradient(-12deg, #6B1E3A 50%, #AC305D 50%);
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 13px 20px 14px;
  text-align: center;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
  position: relative;
}
.btn-2tone:hover, .btn-2tone:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-2tone:focus, .btn-2tone: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-2tone::after {
  content: "";
  width: 5px;
  height: 10px;
  background: url(../../assets/images/btn_arrow_icon.png) no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn-2tone:hover {
  background: linear-gradient(-12deg, #281D36 50%, #4C4555 50%);
}

/* ボタンサイズ大 */
.btn-large {
  background: #281D36;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 20px 13px;
  text-align: center;
  border-radius: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
  font-size: 18px;
  font-weight: bold;
  width: 255px;
  margin: 0 auto;
  position: relative;
}
.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::after {
  content: "";
  width: 8px;
  height: 16px;
  background: url(../../assets/images/btn_arrow_icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 52%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn-large:hover {
  background: #AC305D;
}
.btn-large:active, .btn-large:focus {
  background: #281D36;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #FF9A00;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 20px 13px;
  text-align: center;
  border-radius: 30px;
  -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: #FF7E00;
}
.btn-attention-large:active, .btn-attention-large:focus {
  background: #EDA800;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #281D36;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 20px 13px;
  text-align: center;
  border-radius: 30px;
  -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: #AC305D;
}
.btn-block-large:active, .btn-block-large:focus {
  background: #281D36;
}

/* デスクトップ：最大360pxボタン 色付き input仕様*/
.btn-attention-block-large {
  width: 100%;
  background: #FF9A00;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 20px 13px;
  text-align: center;
  border-radius: 30px;
  -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: #FF7E00;
}
.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: #EDA800;
}

@media (min-width: 768px) {
  .btn {
    font-weight: 500;
    width: 194px;
    padding: 10px 15px 11px;
  }
  .btn::after {
    top: 54%;
  }

  .btn-large {
    font-weight: 500;
    width: 324px;
    padding: 10px 20px 11px;
  }
  .btn-large::after {
    top: 54%;
  }

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

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

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

.card-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
}
.card-link:hover {
  text-decoration: none;
  background: #EEE;
  -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: 0;
  font-size: 16px;
  font-weight: bold;
}

.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;
}
.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: #333;
}
.headline-link:hover {
  padding: 10px;
  background: #F1F1F1;
}

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

@media screen and (max-width: 479px) {
  /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-title {
    display: block;
    margin: 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;
}

/* ------------------------------
　　各モジュール
------------------------------ */
.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;
}

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

/* 行揃えの設定 */
/* 見出し */
.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;
}

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

.page-title-inner {
  position: relative;
  display: table-cell;
  padding: 15px 0;
  vertical-align: middle;
  text-align: center;
}

.page-title {
  margin: 0 0 10px 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.2em;
  color: #281D36;
}
.page-title a {
  color: #281D36;
}

.page-description {
  margin: 10px 0 5px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: #0B0B0B;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: inline-block;
  position: relative;
}
.page-description::after {
  content: "";
  width: 220px;
  height: 1px;
  background: #AC305D;
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 200px;
    background: url("../../assets/images/category_bg.jpg") no-repeat center;
    background-size: cover;
  }

  .page-description {
    margin: 10px 0;
    font-size: 40px;
  }
  .page-description::after {
    width: 300px;
    bottom: 11px;
  }

  .page-title {
    margin: 0;
    font-size: 18px;
  }
}
/* ------------------------------
　　ページャー
------------------------------ */
.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: #F1F1F1;
  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: 20px 0 60px 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.serial-nav::after {
  display: none;
}
.serial-nav .serial-nav-item {
  display: block;
  float: none;
  font-size: 12px;
  color: #43495D;
  letter-spacing: 0.05em;
}
.serial-nav .serial-nav-item a {
  border: 1px solid #BBBBBB;
}
.serial-nav .serial-nav-item-prev {
  text-align: center;
}
.serial-nav .serial-nav-item-next {
  text-align: right;
}
.serial-nav a {
  display: block;
  padding: 8px 10px;
  color: #333;
  border-bottom: 1px solid #F1F1F1;
}
.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: #F1F1F1;
}

@media screen and (min-width: 768px) {
  .serial-nav {
    margin: 50px 0 150px 0;
    border: 0;
  }
  .serial-nav .serial-nav-item-prev {
    font-size: 20px;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    padding: 13px 19px;
  }
  .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;
  -webkit-filter: none;
          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;
  -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;
}

/* ------------------------------
　　スライダー
------------------------------ */
.kv__slider__pc {
  display: none;
}

.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:focus {
  position: relative;
}
.slick-list:focus:focus:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border: 2px dotted #00c2ff;
  content: "";
}

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

.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 {
  display: none !important;
}

/* ドットのナビゲーション */
.slick-dots {
  position: relative;
  clear: both;
  margin: 4px 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: 10px;
  height: 10px;
  margin: 0 4px;
  font-size: 0;
  background: #B2B2B2;
  border: 1px solid transparent;
  border-radius: 7px;
  content: "";
}

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

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

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

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

#autoplay-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 50px;
  height: 50px;
  color: #FFF;
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  border-radius: 50%;
  outline: 0;
  right: calc(10px + constant(safe-area-inset-right));
}
#autoplay-btn:hover {
  background: rgba(0, 0, 0, 0.9);
}
#autoplay-btn:active:before, #autoplay-btn:focus:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dotted #FFF;
  content: "";
}
#autoplay-btn:after {
  position: absolute;
  top: 15px;
  left: 17px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16px;
  height: 20px;
  margin-left: 0;
  border-top: none;
  border-right: 5px solid #FFF;
  border-bottom: none;
  border-left: 5px solid #FFF;
  content: "";
}
#autoplay-btn.active:after {
  left: 15px;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-color: transparent transparent transparent #FFF;
  border-style: solid;
  border-width: 10px 0 10px 15px;
}

@media screen and (min-width: 768px) {
  .slick-slide img {
    width: 100%;
    max-height: 640px;
  }

  .kv__slider__pc {
    display: block;
    max-width: 1440px;
    margin: 0 auto;
  }

  .kv__slider__sp {
    display: none;
  }

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

  .slick-prev {
    left: 10px;
    background: url("../../assets/images/icon_slider_arrow_left.png") no-repeat;
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .slick-prev:hover {
    opacity: 0.7;
  }

  .slick-next {
    right: 10px;
    background: url("../../assets/images/icon_slider_arrow_right.png") no-repeat;
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .slick-next:hover {
    opacity: 0.7;
  }

  .slick-prev {
    left: 0;
  }

  .slick-next {
    right: 0;
  }

  .slick-dots {
    margin: 10px 0 0 0;
  }

  .slick-dots li button {
    width: 15px;
    height: 15px;
    margin: 0 8px;
  }

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

  .main-slider-image {
    height: 640px;
  }

  .main-slider-main-copy {
    font-size: 40px;
  }

  .main-slider-side-copy {
    font-size: 24px;
  }
}
/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}
.summary-default:before, .summary-default:after {
  display: table;
  content: " ";
}
.summary-default:after {
  clear: both;
}
.summary-default.slick-initialized {
  margin-right: -20px;
  margin-left: -20px;
  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: #F1F1F1;
}
.summary-default .slick-dots .slick-active button {
  background: #AC305D;
}

.summary-default-item {
  display: block;
  padding: 0 10px;
  color: #333;
  -webkit-box-sizing: border-box;
          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: 10px;
}
.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
          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 -10px;
  padding: 20px 0 16px;
  color: #333;
  border-bottom: 1px solid #BBBBBB;
  -webkit-transition: background 0.2s;
  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-day {
  color: #999999;
  font-size: 12px;
}

.summary-category {
  display: inline-block;
  font-size: 12px;
  padding: 6px 10px 6px 20px;
  margin: 0 0 0 10px;
  background: #fff;
  border: 1px solid #DDD;
  position: relative;
}
.summary-category::before {
  content: "";
  position: absolute;
  background: url(../../assets/images/summary_icon.png) no-repeat;
  background-size: cover;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 6px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.summary-title {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: underline;
}

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

.page-btn-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 60px;
}
.page-btn-area li {
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #BBB;
  margin: 0 0 0 5%;
  line-height: 40px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.page-btn-area li:first-child {
  margin-left: 0;
}
.page-btn-area li.cur, .page-btn-area li:hover {
  background-color: #AC305D;
  border: 1px solid #AC305D;
}
.page-btn-area li.cur span, .page-btn-area li.cur a, .page-btn-area li:hover span, .page-btn-area li:hover a {
  color: #FFF;
}
.page-btn-area li a {
  display: block;
}
.page-btn-area .right-arrow {
  display: inline-block;
}

@media screen and (min-width: 480px) {
  .summary-default {
    margin: 0 0 80px 0;
  }
}
@media (max-width: 767px) {
  ._news .main-inner {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .summary-default {
    margin-top: -40px;
  }

  .summary-default-link {
    padding: 40px 0;
  }

  .summary-day {
    font-size: 16px;
    color: #333333;
  }

  .summary-category {
    font-size: 14px;
    padding: 6px 18px 6px 28px;
  }
  .summary-category::before {
    left: 10px;
  }

  .summary-title {
    margin-top: 24px;
    font-size: 18px;
  }

  .page-btn-area {
    margin-bottom: 150px;
  }
  .page-btn-area li {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 0 0 20px;
    line-height: 50px;
  }
}
/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumbnail-item {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.thumbnail-item:hover {
  opacity: 0.75;
}

.thumbnail-link {
  display: block;
  color: #333;
}
.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
}
.thumbnail-link:visited {
  color: #333;
}

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

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

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  padding: 20px 0;
}

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

.topicpath-item {
  font-size: 12px;
  line-height: 1.7;
  float: left;
  padding: 0 0 0 18px;
  background: url("../../assets/images/topicpath_arrow.png") no-repeat left 7px top 7px;
  background-size: 7px 7px;
}
.topicpath-item:first-child {
  padding: 0;
  background: 0;
}

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

@media (min-width: 768px) {
  .topicpath {
    padding: 11px 0;
    margin-bottom: 30px;
  }

  .topicpath-item {
    font-size: 14px;
    padding: 0 0 0 24px;
    background: url("../../images/marker/icon_arrow.png") no-repeat left 10px top 8px;
    background-size: 5px 8px;
  }
  .topicpath-item a:hover {
    color: #0654AF;
    text-decoration: underline;
  }

  .topicpath-link {
    font-size: 14px;
  }
}
/* ------------------------------
 ユニットグループ
------------------------------- */
/* ------------------------------
 フロート解除
------------------------------ */
.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: 10px;
  margin-left: 10px;
}
.entry-column h3 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column h4 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column h5 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column h6 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column dl {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column p {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-column blockquote {
  margin: 0 0 20px 0;
  padding: 10px 20px;
  border-left: solid 5px #ccc;
}

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

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

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

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

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

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

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

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

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

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

.entry-column [class*=column-module] {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-box-sizing: border-box;
          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: 10px;
  margin-left: 10px;
}

/* 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__body__wrap {
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  padding: 20px 5.9% 25px;
}

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

.entryInfo {
  margin-top: 0;
  font-size: 14px;
}
.entryInfo time {
  padding-right: 10px;
}

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

/* タイトル */
.acms-page-header {
  border-bottom: none !important;
}

.entry-title {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.66;
  margin: 10px 0;
}
.entry-title a {
  color: #333;
}
.acms-entry h2 .entry-title {
  padding: 0;
}

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

.topic-category {
  font-size: 13px;
  text-align: right;
  margin: 0;
}

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}
.entry-column h2 {
  margin: 0 10px 25px 10px;
  padding: 3px 10px 5px;
  font-size: 20px;
  font-weight: 500;
  color: #43495D;
  border-left: 4px solid #AC305D;
}
.entry-column h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}
.entry-column h3 {
  margin: 0 10px 25px 10px;
  padding: 3px 10px 5px;
  font-size: 19px;
  font-weight: 500;
  color: #43495D;
  border-left: 2px solid #AC305D;
}
.entry-column h4 {
  margin: 0 10px 25px 10px;
  padding: 3px 10px 5px;
  font-size: 17px;
  font-weight: 500;
  color: #43495D;
  border-left: 1px solid #AC305D;
}
.entry-column h5 {
  margin: 0 10px 20px;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #43495D;
  border-bottom: 3px solid #A9A397;
}
.entry-column h6 {
  margin: 0 10px 20px;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #43495D;
  border-bottom: 1px solid #A9A397;
}
.entry-column h7 {
  display: block;
  margin: 0 10px 20px;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #43495D;
  border-bottom: 1px dashed #A9A397;
}
.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 {
  color: #7f5ad7;
  text-decoration: none;
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.7;
}
.entry-column p.entry-danger-text {
  color: #c41134;
  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-container {
  margin: 0 10px;
}

[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: #f5f5f5;
}
.entry-column .entry-custom-table {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .entry-column th,
.entry-column td {
    display: table-cell;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    border-top: 1px solid #dfdfdf;
  }
  .entry-column th {
    background: inherit;
  }
  .entry-column tr:nth-child(odd) {
    background: #f5f5f5;
  }
}
/* リスト */
.entry-column ul {
  margin: 0 0 25px 0;
  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 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-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

/* 引用 */
.entry-column blockquote {
  -webkit-box-sizing: border-box;
          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 {
  width: 100%;
  margin: 0 0 30px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
  -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 #F1F1F1;
}

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

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

.column-module {
  margin: 0 10px;
}

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

/* ユニットグループ */
.ug-bg-color {
  margin: 0 10px 25px 10px;
  padding: 20px 10px;
  background: #F5F5F5;
}
.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: -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;
  margin: 0 10px 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #EEE;
}
.entry-column .staff-item {
  width: 50%;
  margin: 0;
}
.entry-column .staff-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10px;
  border-bottom: 1px solid #EEE;
}
.entry-column .staff-body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          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 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          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-footer {
  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;
}

/* SNSシェア */
.share-wrapper {
  margin: 20px 0;
}

.share-text {
  font-size: 14px;
  text-align: center;
  padding-bottom: 10px;
  margin: 0;
}

/* SNSシェアボタン */
.share-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-item {
  width: 31%;
  height: 30px;
  color: #fff;
  white-space: nowrap;
  border-radius: 2px;
}
.share-item.-twitter a {
  background-color: #1DA1F2;
}
.share-item.-facebook a {
  background-color: #1877f2;
}
.share-item.-facebook img {
  height: 22px;
  margin-bottom: 3px;
}
.share-item.-line a {
  background-color: #00B900;
}
.share-item.-line img {
  height: 24px;
}
.share-item a {
  color: #fff;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
.share-item img {
  width: auto;
  height: 30px;
  margin: 0 auto;
}
.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: "";
}

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

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  background: #767676;
  border-radius: 3px;
}
.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 (max-width: 767px) {
  .share-item span {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }

  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }

  .entry__body__wrap {
    padding: 26px 30px 78px;
  }

  .entryInfo {
    font-size: 18px;
    color: #909090;
    margin: 0;
  }

  .entry-title {
    font-size: 32px;
    line-height: 1.37;
  }

  .entry-column p {
    font-size: 16px;
  }
  .entry-column h2 {
    font-size: 28px;
    font-weight: normal;
  }
  .entry-column h3 {
    font-size: 24px;
    font-weight: normal;
    border-left: 3px solid #AC305D;
  }
  .entry-column h4 {
    font-size: 20px;
    font-weight: normal;
    border-left: 2px solid #AC305D;
    margin-bottom: 20px;
  }
  .entry-column h5, .entry-column h6, .entry-column h7 {
    font-size: 18px;
    font-weight: normal;
  }

  .share-text {
    font-size: 24px;
    padding-bottom: 20px;
  }

  .share-wrapper {
    margin: 37px 0 20px;
  }

  .share-item {
    width: 31.5%;
    height: 50px;
  }
  .share-item a {
    height: 50px;
    font-size: 14px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4px;
  }
  .share-item a:hover {
    opacity: 0.7;
  }
  .share-item img {
    height: 40px;
    margin: 0 5px 0 0;
  }
  .share-item.-facebook img {
    height: 40px;
    margin-bottom: 5px;
    margin-left: -10px;
  }
  .share-item.-line img {
    height: 40px;
  }

  .topic-category {
    font-size: 14px;
  }
}
/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
}
.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #281D36;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 15px 13px;
  text-align: center;
  border-radius: 30px;
}
.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;
  -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 .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
  background-image: linear-gradient(to bottom, #C1C1C1, #999);
}
.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #281D36;
}
.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #FF9A00;
  color: #FFF;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 0;
  display: block;
  padding: 12px 15px 13px;
  text-align: center;
  border-radius: 30px;
}
.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;
  -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 .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #FF9A00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FF9A00));
  background-image: linear-gradient(to bottom, #FDD87D, #FF9A00);
}
.entry-column .entry-btn-attention:active, .entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #EDA800;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.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;
}

/* ------------------------------
　　レイアウトモジュール
------------------------------ */
/* 背景色 */
.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;
  color: #C38A00;
  font-weight: bold;
  font-size: 34px;
}
.lp-suggest-tel a {
  color: #C38A00;
}

.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);
}

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

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

@media (min-width: 768px) {
  .main-inner {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
    padding-right: calc(10px + constant(safe-area-inset-right));
    padding-left: calc(10px + constant(safe-area-inset-left));
  }
}
/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
  margin-top: 0;
  font-size: 18px;
}

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.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 input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .realestate-search th, .realestate-search td {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .realestate-search input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 50px 0;
}
.contact-box .message-text {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding: 24px 0 50px;
}
.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 35px;
  border: 1px solid #DDD;
  background: #FFF;
}
.contact-box .contact-no a {
  display: block;
  color: inherit;
  text-align: center;
  padding: 10px 15px 11px 0;
  position: relative;
}
.contact-box .contact-no a::before {
  content: "";
  width: 6px;
  height: 10px;
  background: url(../../assets/images/contact_arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 17px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.contact-box .contact-no img {
  width: 28px;
  height: auto;
  margin-right: 5px;
}
.contact-box .contact-time {
  font-size: 14px;
  text-align: center;
  margin: 12px 0 38px;
}
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #AC305D;
}
.contact-box .red-ttl-center {
  letter-spacing: 0.05em;
  padding-bottom: 16px;
  line-height: 1.5;
}
.contact-box p {
  line-height: 1.7;
  margin: 0;
}

.contact__info__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-bottom: 40px;
}

.form-bgc {
  background: #F7F7F7;
  width: 100vw;
  max-width: 1440px;
  margin: 0 auto;
  padding: 51px 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.form-wrap {
  width: 90%;
  margin: 0 auto;
  padding: 39px 5% 30px;
  background: #FFF;
}

.form-title {
  font-size: 24px;
  margin-bottom: 29px;
}

.form-txt {
  font-size: 14px;
  padding-bottom: 18px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  background: #E5E5E5;
}

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

.contact-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background: #F1F1F1;
  border-bottom: 10px solid #FFF;
}

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

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

.contact-form-control {
  display: block;
  width: 100%;
  padding: 12px 5% 15px;
  line-height: 1.7;
  -webkit-box-sizing: border-box;
          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__info {
  background: #F7F7F7;
  padding: 30px 5%;
  margin-bottom: 60px;
}
.contact__info h3 {
  font-size: 16px;
  text-align: center;
  padding-bottom: 20px;
  margin: 0;
}
.contact__info p {
  font-size: 14px;
}

form .chkbox {
  text-align: center;
  margin: 20px auto 35px;
  font-size: 14px;
}
form .chkbox .acms-admin-form-checkbox {
  margin-right: 0;
}
form .chkbox a {
  color: #A9295D;
  text-decoration: underline;
}

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 18px 0;
  padding: 6px 5% 10px;
  background: #F1F1F1;
  /* カウンターの設定 */
  counter-reset: mailStep;
}
.contact-box .mail-step-item {
  float: left;
  margin: 0 5px;
  padding: 14px 0 10px;
  color: #333;
  font-weight: nomal;
  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;
  font-weight: bold;
  border-bottom: 4px solid #AC305D;
}

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

.form-btn-input, .form-btn-back, .message-back-link {
  width: 250px;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

.form-btn-return {
  margin-bottom: 30px;
}

.message-back-link {
  margin: 0 auto !important;
}

@media screen and (min-width: 768px) {
  .form-btn-box {
    margin: 80px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
  }
  .form-btn-box .confirm {
    display: inline-block;
    background: url(../../assets/images/confirm-btn-hover.png) no-repeat;
    background-size: contain;
  }
  .form-btn-box .send {
    display: inline-block;
    background: url(../../assets/images/send-btn-hover.png) no-repeat;
    background-size: contain;
  }

  .form-btn-send {
    width: 100%;
    max-width: 370px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
  }

  .form-btn-input, .message-back-link {
    width: 370px;
    height: auto;
  }

  .form-btn-input:hover {
    opacity: 0;
  }

  .message-back-link a {
    position: relative;
    display: block;
  }
  .message-back-link:hover .message-backlink__hover {
    opacity: 0;
  }
  .message-back-link .message-backlink__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .form-btn-return {
    margin-bottom: 0;
    margin-right: 40px;
  }

  .form-btn-back {
    width: 278px;
    height: auto;
  }
  .form-btn-back:hover {
    opacity: 0.7;
  }
}
/* ラベル
------------------------------ */
.label-required {
  margin: 0 0 0 18px;
  padding: 2px 9px 4px;
  color: #FFF;
  background: #AC305D;
  border-radius: 20px;
  font-size: 12px;
  font-weight: normal;
  vertical-align: 2px;
}

@media screen and (min-width: 768px) {
  .label-required {
    margin: 0 10px;
    padding: 1px 9px;
    position: absolute;
    right: 22px;
  }
}
/* フォーム要素
------------------------------ */
.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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 5%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-box textarea {
  font-size: 16px;
  padding: 5px 5%;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-box select {
  background-color: #FBFBFB;
  min-height: 30px;
  padding-top: 9px;
  padding-bottom: 9px;
  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: 3px 8px;
    min-height: 36px;
  }
  .contact-box textarea {
    padding: 3px 8px;
  }
  .contact-box select {
    padding: 3px 45px 3px 8px;
    min-height: 36px;
  }
}
/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

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

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

@media (max-width: 320px) {
  .contact-box .contact-no {
    font-size: 28px;
  }

  .contact-box .red-ttl-center {
    font-size: 22px;
  }

  .contact-box .mail-step {
    padding: 6px 2% 10px;
  }
  .contact-box .mail-step-item {
    font-size: 13px;
  }

  .form-title {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .contact-form-col.sp-full {
    width: 100%;
  }

  .form-select.sp-block {
    display: block;
    width: 140px;
    margin-top: 10px;
  }

  .form-title {
    letter-spacing: 0.05em;
    text-align: center;
  }
  .form-title span {
    display: none;
  }
  .form-title::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .contact-box {
    padding: 35px 0 150px;
  }

  .contact__info__txt {
    font-size: 20px;
    text-align: center;
    padding-bottom: 70px;
  }

  .form-bgc {
    width: auto;
    padding: 0;
    background: #FFF;
  }

  .form-wrap {
    width: 100%;
    padding: 97px 0 0;
  }

  .form-title {
    margin-bottom: 55px;
  }

  .contact-box .contact-no {
    border: none;
    font-size: 30px;
  }
  .contact-box .contact-no img {
    width: 23px;
  }
  .contact-box .contact-no a {
    padding: 0;
  }
  .contact-box .contact-no a::before {
    display: none;
  }
  .contact-box .contact-time {
    margin: 5px 0 0;
  }
  .contact-box .mail-step {
    max-width: 880px;
    margin: 0 auto 35px;
    padding: 0 11px;
  }
  .contact-box .mail-step-item {
    margin: 0 10px;
    padding: 19px 0 19px;
    font-size: 16px;
  }
  .contact-box .message-text {
    font-size: 16px;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 0 110px;
  }

  .contact-form {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
  }
  .contact-form tbody {
    width: 100%;
    display: block;
  }

  .contact-form-group {
    border-bottom: 2px solid #FFF;
  }

  .form-txt {
    max-width: 880px;
    margin: 0 auto !important;
    padding-bottom: 24px;
  }

  .contact-form-label {
    display: inline-block;
    font-weight: bold;
    width: 309px;
    font-size: 14px;
    padding: 18px 33px 19px 16px;
    vertical-align: top;
    position: relative;
  }

  .contact-form-control {
    padding: 12px 17px 12px 0;
    display: inline-block;
    width: calc(100% - 309px);
  }

  .contact-form-col {
    margin: 0;
  }

  .contact__info {
    max-width: 880px;
    margin: 110px auto 0;
    padding: 30px;
  }
  .contact__info h3 {
    text-align: left;
  }

  form .chkbox {
    margin: 30px auto 0;
    font-size: 16px;
  }
}
/* ------------------------------
　　ヘッダー
------------------------------ */
.header__inner {
  margin-left: 50px;
}

/* サイト名 */
.site-name {
  font-size: 24px;
  color: #AC305D;
  font-weight: bold;
}
.header-stack .site-name {
  margin: 40px 0 0;
}
.site-name a {
  color: #AC305D;
  display: block;
}
.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #AC305D;
}
.site-name .siteNameText {
  display: none;
}

.site-logo {
  display: inline-block;
  width: 133px;
  height: auto;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

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

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

  .site-logo {
    width: 170px;
  }

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

  .header-logo {
    width: 100%;
    vertical-align: middle;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-stack .header-logo {
    width: auto;
  }

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

  .header__contact__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .header__contact__time {
    font-size: 12px;
    line-height: 1.3;
    margin-left: 7px;
    white-space: nowrap;
  }

  .header__contact__mail {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: 240px;
    height: 60px;
    text-align: center;
    line-height: 58px;
    color: #fff;
    margin-left: 16px;
    background: url(../../assets/images/header_mail_bg.png) no-repeat;
    background-size: cover;
    position: relative;
  }
  .header__contact__mail::after {
    content: "";
    background: url(../../assets/images/header_mail_bg_hover.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
  .header__contact__mail:hover {
    color: #fff;
  }
  .header__contact__mail:hover::after {
    opacity: 1;
  }
  .header__contact__mail:visited, .header__contact__mail:active {
    color: #fff;
  }
  .header__contact__mail > span {
    position: relative;
    z-index: 2;
  }
  .header__contact__mail img {
    margin-right: 10px;
  }

  .header-nav {
    display: none;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: -10px 0 15px 0;
  }
}
@media (min-width: 1024px) {
  .header-logo {
    display: table-cell;
    width: 40%;
  }
  .header-stack .header-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
  }

  .header-nav {
    display: table-cell;
    width: 60%;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: -10px 0 15px 0;
  }
}
@media (max-width: 767px) {
  .head-wrapper {
    height: 75px;
  }
}
/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  /* 固定したときの高さを保つ */
  padding: 75px 0 0 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 75px;
  padding: 0 15px;
  background: #FFF;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-header .site-name {
  margin-top: 0;
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  display: inline-block;
  height: 45px;
  padding: 0 0 0 5px;
  font-size: 20px;
  text-align: center;
  color: #333;
  -webkit-box-sizing: border-box;
          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: block;
  margin: 4px 0 0 0;
  color: #333;
  font-weight: bold;
  font-size: 10px;
}

/* モバイル時ヘッダー アイコン */
.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;
  height: 56px;
}
.navbar li a {
  display: block;
  padding: 10px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}
.navbar li a:hover, .navbar li a:focus, .navbar li a:active {
  color: #FFF;
  text-decoration: none;
  background: #AC305D;
}

@media (min-width: 768px) {
  .header {
    margin: 0 auto;
    height: 130px;
  }

  .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    float: right;
    padding: 0;
    list-style: none;
  }
  .header-stack .navbar > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    float: none;
    width: 100%;
    table-layout: fixed;
  }
  .navbar li {
    float: left;
    margin: 0 10px;
    text-align: center;
    vertical-align: middle;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    display: table-cell;
    float: none;
  }
  .header-stack .navbar li.sp {
    display: none;
  }
  .navbar li:last-child {
    margin-right: 26px;
  }
  .navbar li ul {
    /* 二階層目 */
    position: absolute;
    left: 0;
    bottom: -45px;
    display: none;
    min-width: 200px;
    background: #6B1E3A;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li li:last-child {
    margin-right: 26px;
  }
}
@media screen and (min-width: 768px) and (max-width: 950px) {
  .navbar li li:last-child {
    margin-right: 4px;
  }
}
@media (min-width: 768px) {
  .navbar li a {
    /* 一階層目のリンクのみ */
    padding: 0;
    border-top: 2px solid transparent;
    border-bottom: 2px 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 {
    color: #333;
    background: transparent;
  }
  .header-stack .navbar li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .navbar li.stay a {
    /* 一階層目のリンクのみ */
    border-bottom: 2px solid #AC305D;
  }
  .navbar li.stay a.btn-attention {
    border: 0;
  }
}
@media (min-width: 768px) {
  .navbar li:hover ul {
    /* 二階層目 */
    z-index: 10000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
  }
  .navbar li:hover a {
    /* 一階層目のリンクのみ */
    border-bottom: 2px solid #AC305D;
  }
  .navbar li:hover a.btn-attention {
    border: 0;
  }
  .navbar li:hover li a {
    border: 0;
    position: relative;
    padding: 10px 24px;
  }
  .navbar li:hover li a::before {
    content: "";
    width: 1px;
    height: 20px;
    background: #FFF;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .navbar li:hover li:last-child a::before {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #6B1E3A;
    border: 0;
    border-top: 1px solid #6B1E3A;
  }
  .navbar li li.sp {
    display: none;
  }
  .navbar li li a {
    margin: 0;
    padding: 10px 15px;
    color: #FFF;
    border: 0;
  }
  .navbar li li a:hover {
    color: #FFF;
    background: #6B1E3A;
    border: 0;
    text-decoration: underline;
  }
}
@media (min-width: 768px) {
  .navbar a.btn-attention {
    /* ボタン（色付き） */
    background: #FF9A00;
    color: #FFF;
    line-height: 1.3;
    letter-spacing: 0.05em;
    border: 0;
    display: block;
    padding: 12px 15px 13px;
    text-align: center;
    border-radius: 30px;
    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 {
    color: #FFF;
    background-color: #FF9A00;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FF9A00));
    background-image: linear-gradient(to bottom, #FDD87D, #FF9A00);
    border: 0;
  }
  .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
    background: #EDA800;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .header-stack .navbar li a {
    padding: 11px 10px;
  }
}
@media screen and (max-width: 950px) {
  .header__contact__tel img {
    width: 70%;
  }

  .navbar li:last-child {
    margin-right: 10px;
  }
}
@media screen and (max-width: 830px) and (min-width: 768px) {
  .header-stack .site-name {
    margin: 30px 0 10px;
  }
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }

  .navbar ul li a {
    font-size: 14px;
  }

  .mobile-nav-wrap {
    display: none;
  }
}
@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px;
  }
}
/* ------------------------------
　　サイドメニュー
------------------------------ */
.navbar-side {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  text-align: right;
}

.navbar-side-list {
  display: inline-block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: #333;
  border-radius: 0 0 4px 4px;
}

.navbar-side-item {
  position: relative;
  display: inline-block;
  color: #FFF;
}
.navbar-side-item:before {
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  display: block;
  height: 1em;
  border-left: 1px dotted #FFF;
  content: "";
}
.navbar-side-item:first-child:before {
  content: none;
}

.navbar-side-link {
  display: inline-block;
  padding: 4px 14px 4px 10px;
  color: #FFF;
}
.navbar-side-link [class*=acms-icon] {
  margin: -2px 5px 0 0;
}
.navbar-side-link:hover, .navbar-side-link:visited, .navbar-side-link:active, .navbar-side-link:focus {
  color: #FFF;
}
.navbar-side-link:hover [class*=acms-icon] {
  text-decoration: none;
}

/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 3px;
  margin: 6px 0;
  vertical-align: middle;
  background-color: #555;
  border-radius: 1px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.icon-toggle-menu:before, .icon-toggle-menu:after {
  position: absolute;
  display: block;
  width: 31px;
  height: 3px;
  background-color: #555;
  border-radius: 1px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  content: "";
}
.icon-toggle-menu:before {
  top: -8px;
}
.icon-toggle-menu:after {
  bottom: -8px;
}
[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
}
[aria-expanded=true] .icon-toggle-menu:before {
  width: 31px;
  -webkit-transform: translate(-1px, 8px) rotate(45deg);
          transform: translate(-1px, 8px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
  width: 31px;
  -webkit-transform: translate(-1px, -8px) rotate(-45deg);
          transform: translate(-1px, -8px) rotate(-45deg);
}

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

  .mobile-nav-wrap {
    display: block;
  }

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

  .mobile-navbar {
    width: 100%;
  }

  .mobile-nav-inner {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-navbar-list {
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none;
    font-size: 16px;
  }
  .mobile-navbar-list li.sp {
    display: block;
  }
  .mobile-navbar-list li.dropdown__btn__h {
    cursor: pointer;
  }
  .mobile-navbar-list li.dropdown__btn__h.active a.sp__locked::after {
    top: 50%;
    right: 22px;
    -webkit-transform: translate(0, -50%) rotate(-135deg);
            transform: translate(0, -50%) rotate(-135deg);
  }
  .mobile-navbar-list li.dropdown__btn__h .sp__locked {
    pointer-events: none;
  }
  .mobile-navbar-list li.dropdown__btn__h a::after {
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    right: 26px;
    top: 45%;
  }
  .mobile-navbar-list li.dropdown__btn__h ul li a {
    background: #F1F1F1;
    color: #333;
  }
  .mobile-navbar-list li.dropdown__btn__h ul li a::after {
    border-color: #A9A397;
    -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
    right: 20px;
  }
  .mobile-navbar-list a {
    display: block;
    background: #281D36;
    color: #FFF;
    text-align: center;
    padding: 19px 5% 18px;
    border-top: 1px solid #7C7A80;
    position: relative;
  }
  .mobile-navbar-list a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    border-radius: 2px;
    -webkit-transform: rotate(-45deg) translateY(-50%);
    transform: rotate(-45deg) translate(0, -50%);
    position: absolute;
    right: 20px;
    top: 50%;
  }
  .mobile-navbar-list .mobile-navbar-list {
    display: none;
  }

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

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

  .nav-menu-btn-text::after {
    content: "MENU";
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    padding-top: 4px;
  }

  [aria-expanded=true] .nav-menu-btn-text::after {
    content: "閉じる";
  }

  .sideNav_pop {
    display: none;
  }

  .mobile__nav__suggest {
    background: url(../../assets/images/mobileNav_suggest_sp.jpg) no-repeat;
    background-size: cover;
    padding: 35px 10%;
  }
  .mobile__nav__suggest .suggest-inner {
    padding-top: 0;
  }
  .mobile__nav__suggest .suggest-box__title {
    letter-spacing: 0;
    margin-bottom: 28px;
  }
}
/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.suggest-box {
  margin: 0 auto;
  background: url(../../assets/images/suggest-box_bg.jpg) no-repeat;
  background-size: cover;
  padding: 100px 0 55px;
}

.suggest-box__title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 25px;
}

.suggest-box__txt {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #AC305D;
  margin: 0;
}

.suggest-inner {
  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;
  color: #666;
  font-weight: bold;
  font-size: 24px;
}
.suggest-tel a {
  color: inherit;
}

.suggest-mail {
  margin: 0;
}

.suggest-item__txt {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0;
}

.suggest-btn {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .suggest-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }

  .suggest-item {
    padding: 60px 10px 30px;
  }

  .suggest-tel {
    margin: 0;
  }
  .suggest-tel a:hover {
    opacity: 0.7;
  }

  .suggest-mail a {
    position: relative;
    display: block;
  }
  .suggest-mail a:hover .suggest-mail__hover {
    opacity: 0;
  }
  .suggest-mail .suggest-mail__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .suggest-half {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .suggest-mail .suggest-mail__hover {
    height: 100%;
    top: -1px;
  }
}
@media (max-width: 767px) {
  .suggest-box {
    background: url(../../assets/images/suggest-box_bg_sp.jpg) no-repeat;
    background-size: cover;
    padding: 45px 0;
  }

  .suggest-inner {
    padding-top: 40px;
  }

  .suggest-item + .suggest-item {
    margin-top: 27px;
  }

  .suggest-box__title {
    font-size: 28px;
    letter-spacing: 0.09em;
    margin-bottom: 11px;
    line-height: 1.43;
  }

  .suggest-item__txt {
    font-size: 14px;
    margin-top: 0;
  }

  .suggest-box__txt {
    font-size: 16px;
    line-height: 1.5;
  }
}
/* フッター内会社情報 */
.foot-wrapper {
  margin: 0 auto;
  background: url(../../assets/images/footer_bg.png) no-repeat left bottom 40px;
  background-size: cover;
}

.footer {
  max-width: 1260px;
  margin: 0 auto;
  padding: 42px 10px 0;
}
.footer a {
  color: #FFF;
}
.footer a:hover {
  color: #FFF;
  text-decoration: underline;
}

.company-about {
  margin: 0 0 36px 0;
  color: #FFF;
  min-width: 300px;
}

.company-name {
  margin: 0 0 22px 0;
  color: #FFF;
  font-size: 20px;
  font-style: normal;
}
.company-name img {
  max-width: 127px;
  width: 100%;
}

.company-detail {
  margin: 0 0 5px 0;
  padding: 0;
  color: #FFF;
  font-style: normal;
  display: inline-block;
}
.company-detail:nth-of-type(2) {
  margin-left: 5px;
}
.company-detail:nth-of-type(3) {
  margin-left: 0;
  display: block;
}
.company-detail:nth-of-type(3) a {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
  text-decoration: underline;
}
.company-detail:nth-of-type(3) img {
  width: 20px;
  height: auto;
  margin-left: 5px;
}
.company-detail:last-child {
  margin-left: 15px;
}
.company-detail a {
  color: #FFF;
}
.company-detail a:hover {
  text-decoration: underline;
}

/* フッターナビゲーション */
.footer__menu.pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer__menu.pc a {
  display: block;
}
@media (max-width: 767px) {
  .footer__menu.pc {
    display: none;
  }
}

.footer__menu__list:not(:last-child) {
  margin-right: 11.7%;
}
@media screen and (max-width: 815px) {
  .footer__menu__list:not(:last-child) {
    margin-right: 20px;
  }
}
.footer__menu__list:first-child, .footer__menu__list:last-child {
  white-space: nowrap;
}
.footer__menu__list li {
  margin-bottom: 12px;
}
.footer__menu__list li ul {
  font-size: 14px;
  margin-top: 6px;
  margin-left: 1.1rem;
}
.footer__menu__list li ul li {
  margin-bottom: 10px;
}

.footer-nav {
  float: right;
  width: 650px;
  max-width: 100%;
  margin: 0 -10px;
}

.footer-nav-item {
  display: block;
  float: left;
  width: 25%;
  margin: 0 0 10px 0;
  padding: 0 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.footer-nav-title {
  margin: 0 0 5px 0;
  color: #FFF;
  font-size: 16px;
}

.footer-nav-list {
  margin: 0;
  padding: 0;
  color: #999;
  list-style: none;
}
.footer-nav-list li {
  line-height: 1.7;
}
.footer-nav-list a {
  color: #999;
}

@media screen and (max-width: 767px) {
  .foot-wrapper {
    background: none;
  }

  .footer {
    padding: 40px 10px 0;
    background: url(../../assets/images/footer_bg_sp.png) no-repeat;
    background-size: cover;
  }

  .footer-nav {
    display: none;
  }

  .company-about {
    text-align: center;
  }

  .company-name img {
    max-width: 174px;
  }

  .company-detail {
    display: block;
    margin-bottom: 12px;
  }
  .company-detail:nth-of-type(2) {
    margin-left: 0;
  }
  .company-detail:nth-of-type(3) {
    margin-bottom: 12px;
    margin-left: 10px;
  }
  .company-detail:nth-of-type(3) a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .company-detail:nth-of-type(3) a img {
    width: 16px;
    margin-left: 2px;
  }

  .footer__menu.sp {
    display: block;
  }
  .footer__menu.sp .footer__menu__nav li a {
    display: block;
    background: #281D36;
    color: #FFF;
    text-align: center;
    padding: 19px 5% 18px;
    border-top: 1px solid #7C7A80;
    position: relative;
  }
  .footer__menu.sp .footer__menu__nav li a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #FFF;
    border-right: 2px solid #FFF;
    border-radius: 2px;
    -webkit-transform: rotate(-45deg) translate(0, -50%);
            transform: rotate(-45deg) translate(0, -50%);
    position: absolute;
    right: 20px;
    top: 50%;
  }
  .footer__menu.sp .footer__menu__nav li:nth-child(2) a::after {
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
    right: 26px;
    top: 45%;
  }
  .footer__menu.sp .footer__menu__nav li:nth-child(2) .dropdown__btn.active::after {
    top: 50%;
    right: 22px;
    -webkit-transform: translate(0, -50%) rotate(-135deg);
            transform: translate(0, -50%) rotate(-135deg);
  }
  .footer__menu.sp .footer__menu__nav li:nth-child(2) ul li a {
    background: #F1F1F1;
    color: #333;
  }
  .footer__menu.sp .footer__menu__nav li:nth-child(2) ul li a::after {
    border-color: #A9A397;
    -webkit-transform: rotate(-45deg) translateY(-50%);
            transform: rotate(-45deg) translateY(-50%);
    right: 20px;
  }
}
/* ページの上に戻るボタン */
.page-top a:focus {
  display: block;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../../images/marker/btn_pageTop.png") no-repeat center;
  background-size: cover;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  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 (max-width: 320px) {
  .suggest-box__title {
    font-size: 24px;
  }
}
@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 {
  margin: 0 -5px 30px 15px;
  padding: 0;
  list-style: none;
}

.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;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  background: #1877f2;
  border-radius: 4px;
  font-size: 19px;
}
.sns-list-item .sns-list-facebook:before {
  vertical-align: middle;
}
.sns-list-item .sns-list-twitter {
  /* Twitter */
  display: block;
  width: 30px;
  height: 30px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  background: #55ACEE;
  border-radius: 4px;
  font-size: 19px;
}
.sns-list-item .sns-list-twitter:before {
  vertical-align: middle;
}
.sns-list-item .sns-list-youtube {
  /* YouTube */
  display: block;
  width: 30px;
  height: 30px;
  color: #FFF;
  line-height: 1.5;
  text-align: center;
  background: #CD201F;
  border-radius: 4px;
  font-size: 19px;
}
.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;
  padding: 13px 0 14px;
  color: #FFF;
  background: #6B1E3A;
}
@media screen and (max-width: 767px) {
  .copyright {
    padding: 16px 0 15px;
  }
}

.copyright-text {
  margin: 0 auto;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .copyright-text {
    font-size: 10px;
  }
}

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

/* ------------------------------
　　top
------------------------------ */
.top__intro {
  margin: 4px auto 38px;
  text-align: center;
}

.top__intro__txt {
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 14px;
  position: relative;
}
.top__intro__txt .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F7EAF1));
  background: linear-gradient(transparent 60%, #F7EAF1 60%);
  text-decoration: none;
  font-size: 16px;
}
.top__intro__txt::before, .top__intro__txt::after {
  content: "";
  width: 9px;
  height: 19px;
  position: absolute;
}
.top__intro__txt::before {
  background: url(../../assets/images/top_intro_before.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 5%;
}
.top__intro__txt::after {
  background: url(../../assets/images/top_intro_after.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 5%;
}

.top__service h2, .top__company h2, .top__news h2 {
  margin: 0 0 40px;
}

.top__service__content + .top__service__content {
  border-top: 1px solid #707070;
  padding: 42px 0 0;
}

.top__service__contentTtl {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0 0 30px;
}
.top__service__contentTtl img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.top__software__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top__software__list li img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top__software__list li h3 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 20px;
  margin: 15px auto;
  text-align: center;
  letter-spacing: 0.1em;
}
.top__software__list li h3 .sub-ttl {
  font-size: 18px;
  line-height: 1.66;
  color: #AC305D;
  display: block;
  margin-top: 6px;
}
.top__software__list li p {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  display: block;
  padding: 0 0 20px;
  margin: 0;
}
.top__software__list li .btn {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.top__service__contentTxt p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  display: block;
  padding: 15px 0 20px;
  margin: 0;
}

@media (max-width: 767px) {
  .top__software__list li {
    margin-bottom: 40px;
  }
}
.top__company {
  margin: 88px auto;
}

.top__company__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-bottom: 50px;
  margin: 0;
}

.top__news {
  margin: 88px auto 60px;
}
.top__news .btn-large {
  margin-top: 7px;
}

@media (max-width: 320px) {
  .top__intro__txt {
    display: block;
  }
  .top__intro__txt::before {
    left: 0;
  }
  .top__intro__txt::after {
    right: 0;
  }
}
@media (min-width: 768px) {
  .top__intro {
    margin: 66px auto 105px;
  }

  .top__intro__txt {
    font-size: 24px;
    display: inline-block;
  }
  .top__intro__txt .f-small {
    font-size: 20px;
  }
  .top__intro__txt .marker {
    font-size: 24px;
  }
  .top__intro__txt .marker.pc-bigger {
    font-size: 28px;
  }

  .top__intro__txt::before, .top__intro__txt::after {
    width: 18px;
    height: 38px;
  }

  .top__intro__txt::before {
    left: -10%;
  }

  .top__intro__txt::after {
    right: -10%;
  }

  .top__service h2, .top__company h2, .top__news h2 {
    margin-bottom: 80px;
  }

  .top__service__content + .top__service__content {
    padding: 47px 0 0;
  }

  .top__service__contentTtl {
    font-size: 25px;
    text-align: left;
  }
  .top__service__contentTtl img {
    width: 40px;
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }

  .top__software__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 41px;
  }
  .top__software__list li {
    width: 31%;
    position: relative;
  }
  .top__software__list li h3 {
    margin: 19px auto;
  }
  .top__software__list li h3 .sub-ttl {
    margin-top: 15px;
  }
  .top__software__list li p {
    font-size: 16px;
    padding: 5px 0 84px;
  }
  .top__software__list li .btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }

  .top__service__contentInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top__service__contentInner figure {
    width: 46%;
  }
  .top__service__contentInner .top__service__contentTxt {
    width: 50%;
    position: relative;
  }
  .top__service__contentInner .top__service__contentTxt p {
    font-size: 16px;
    padding: 0;
    margin-top: -7px;
  }
  .top__service__contentInner .top__service__contentTxt .btn {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .top__company {
    margin: 167px auto;
  }

  .top__company__txt {
    font-size: 18px;
    text-align: center;
    line-height: 2;
    padding-bottom: 75px;
  }

  .top__news {
    margin: 167px auto 110px;
  }
  .top__news .btn-large {
    margin-top: 75px;
  }
}
/* ------------------------------
　　company
------------------------------ */
.company__greeting {
  margin-bottom: 90px;
}
.company__greeting h3 {
  margin: 0 0 26px;
}

.company__greeting__txt .catch {
  margin: 0;
  padding: 15px 0;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.48;
}
.company__greeting__txt .main-txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.64;
  margin: 0;
}
.company__greeting__txt .signature {
  font-size: 12px;
  font-weight: 500;
  text-align: right;
  margin: 40px 0 0;
}
.company__greeting__txt .signature span {
  font-size: 16px;
}

.company__philosophy {
  margin-bottom: 90px;
}
.company__philosophy h3 {
  margin: 0 0 20px;
}
.company__philosophy p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 0;
}
.company__philosophy p + p {
  margin-top: 20px;
}

.company__philosophy__subTtl {
  font-size: 21px !important;
  font-weight: bold;
  text-transform: uppercase;
}

.company__info h3 {
  margin: 0 0 60px;
}

.company__info__table {
  width: 100%;
  margin-bottom: 60px;
}
.company__info__table tr {
  border-bottom: 1px solid #707070;
}
.company__info__table th, .company__info__table td {
  padding: 14px 0;
  font-size: 14px;
  text-align: left;
  line-height: 1.7;
}
.company__info__table th {
  color: #AC305D;
  vertical-align: text-top;
  width: 31%;
}
.company__info__table a {
  color: #0654AF;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .company__greeting {
    margin: 40px 0 166px;
  }
  .company__greeting h3 {
    margin-bottom: 55px;
  }

  .company__greeting__wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .company__greeting__wrap figure {
    width: 36%;
  }

  .company__greeting__txt {
    width: 59%;
  }
  .company__greeting__txt .catch {
    font-size: 28px;
    padding: 0 0 22px;
    line-height: 1.7;
  }
  .company__greeting__txt .main-txt {
    font-size: 18px;
    line-height: 2;
  }
  .company__greeting__txt .signature {
    font-size: 16px;
  }
  .company__greeting__txt .signature span {
    font-size: 24px;
  }

  .company__philosophy {
    margin-bottom: 166px;
  }
  .company__philosophy h3 {
    margin-bottom: 65px;
  }
  .company__philosophy p {
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }

  .company__philosophy__subTtl {
    font-size: 28px !important;
  }

  .company__info {
    margin-bottom: 110px;
  }
  .company__info h3 {
    margin-bottom: 95px;
  }

  .company__info__table {
    width: 88%;
    margin: 0 auto;
  }
  .company__info__table th, .company__info__table td {
    font-size: 18px;
    padding: 25px 0;
  }
  .company__info__table th {
    width: 26.9%;
  }
  .company__info__table a:hover {
    opacity: 0.7;
  }
}
/* ------------------------------
　　recruit
------------------------------ */
.recruit__content {
  margin-bottom: 60px;
}

.recruit__table {
  margin: 40px 0 25px;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-collapse: collapse;
}
.recruit__table tr {
  border-bottom: 1px solid #ccc;
}
.recruit__table th, .recruit__table td {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: left;
  vertical-align: text-top;
  padding: 12px 10px;
}
.recruit__table th {
  background: #F7F7F7;
  width: 90px;
  border-right: 1px solid #ccc;
}

.recruit__content__txt {
  font-size: 14px;
  text-align: center;
  padding-bottom: 25px;
  margin: 0;
}

@media (max-width: 767px) {
  .recruit__content .bar-ttl-left span {
    padding-right: 35px;
  }
  .recruit__content .bar-ttl-left span::after {
    right: 18px;
  }
}
@media (min-width: 768px) {
  .recruit__content {
    margin: 57px 0 120px;
  }

  .recruit__table {
    margin: 80px 0 50px;
  }
  .recruit__table th, .recruit__table td {
    padding: 24px 30px;
    line-height: 2;
  }
  .recruit__table th {
    font-size: 20px;
    width: 31%;
  }
  .recruit__table td {
    font-size: 18px;
  }

  .recruit__content__txt {
    font-size: 18px;
    padding-bottom: 50px;
  }

  .recruit__entry__link {
    width: 470px;
    margin: 0 auto;
  }
  .recruit__entry__link a {
    position: relative;
    display: block;
  }
  .recruit__entry__link:hover .recruit__entry__hover {
    opacity: 0;
  }

  .recruit__entry__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
/* ------------------------------
　　news
------------------------------ */
._news {
  max-width: 1000px;
  margin: 0 auto;
}
._news .side .module-section {
  border: 1px solid #CCC;
  border-radius: 4px;
}
._news .side .module-heading {
  font-size: 15px;
  font-weight: 500;
}
._news .side .module-header {
  background: #F7EAF1;
  border-bottom: none;
  padding: 16px 20px;
}
._news .side .acms-list-group {
  border-top: none;
}
._news .side .acms-list-group li {
  border-top: 1px solid #CCC;
}
._news .side .acms-list-group li:first-child {
  border: none;
}
._news .side .acms-list-group-item:last-of-type {
  border-bottom: none;
}
._news .side a.list-link.acms-list-group-label-parent {
  padding: 19px 20px;
  font-size: 14px;
  position: relative;
}
._news .side a.list-link.acms-list-group-label-parent::after {
  content: "";
  width: 6px;
  height: 10px;
  background: url(../../assets/images/category-list-arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media (max-width: 767px) {
  ._news .side .module-section:last-child {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  ._news {
    margin-top: 63px;
  }
  ._news .main {
    float: left;
    width: calc(100% - 260px - 4%);
  }
  ._news .main-inner {
    padding: 0;
  }
  ._news .side {
    width: 260px;
    float: right;
  }
  ._news .side .module-heading {
    font-size: 16px;
  }
  ._news .side a.list-link.acms-list-group-label-parent {
    padding: 23px 20px;
  }
}
/* ------------------------------
　　service
------------------------------ */
.serviceIndex__txt {
  font-size: 21px;
  color: #0C0B0B;
  letter-spacing: 0.05em;
  line-height: 1.47;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.serviceIndex__content {
  padding: 40px 0;
}
.serviceIndex__content:last-child {
  padding-bottom: 60px;
}

.serviceIndex__content + .serviceIndex__content {
  border-top: 1px solid #707070;
}

.serviceIndex__contentTtl {
  font-size: 25px;
  color: #0B0B0B;
  line-height: 1.55;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0 0 25px;
}
.serviceIndex__contentTtl img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}
.serviceIndex__contentTtl .sub-ttl {
  display: block;
  font-size: 18px;
  font-weight: bold;
  color: #AC305D;
}

.serviceIndex__contentTxt p {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  display: block;
  padding: 15px 0 20px;
  margin: 0;
}

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

.serviceDetail__intro__txt {
  line-height: 1.8;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 14px;
  margin: 0;
  position: relative;
}
.serviceDetail__intro__txt .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F7EAF1));
  background: linear-gradient(transparent 60%, #F7EAF1 60%);
  text-decoration: none;
  font-size: 16px;
}
.serviceDetail__intro__txt::before, .serviceDetail__intro__txt::after {
  content: "";
  width: 9px;
  height: 19px;
  position: absolute;
}
.serviceDetail__intro__txt::before {
  background: url(../../assets/images/top_intro_before.png) no-repeat;
  background-size: cover;
  top: 0;
  left: 3%;
}
.serviceDetail__intro__txt::after {
  background: url(../../assets/images/top_intro_after.png) no-repeat;
  background-size: cover;
  bottom: 0;
  right: 3%;
}

.s-features__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin: 22px 0 -10px;
}

.s-features__list li {
  background: #F7F7F7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 140px;
  padding: 121px 5% 20px;
  border-radius: 4px;
  position: relative;
}
.s-features__list li img {
  width: 250px;
  height: auto;
  position: absolute;
  top: -140px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.s-features__list li img.simple-action {
  left: 54%;
}
.s-features__list li img.follow-up {
  top: -130px;
}
.s-features__list li img.cost-cut {
  width: 231px;
  top: -128px;
}
.s-features__list li img.original-item {
  top: -115px;
}
.s-features__list li img.cost-down {
  width: 205px;
  top: -113px;
}
.s-features__list li img.se-support {
  width: 198px;
  top: -106px;
}
.s-features__list li img.se-operation {
  left: 43%;
}
.s-features__list li img.disposal {
  top: -157px;
}

.s-features__list__ttl {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: bold;
  color: #AC305D;
  text-align: center;
  margin: 0 0 15px;
}

.s-features__list__note {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}

.s-features__list__txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 14px;
  margin: 0;
  line-height: 1.71;
  letter-spacing: 0.05em;
}

.s-features__finding {
  font-size: 21px;
  font-weight: bold;
  text-align: center;
  line-height: 1.47;
  letter-spacing: 0.05em;
  margin: 25px 0 60px;
  padding-top: 45px;
  position: relative;
}
.s-features__finding::before {
  content: "";
  width: 150px;
  height: 25px;
  background: url(../../assets/images/features_arrow_sp.jpg) no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.s-features__item {
  margin: 0 0 40px;
}
.s-features__item:last-child {
  margin-bottom: 60px;
}

.s-features__item.__hrd, .s-features__item.__se {
  margin-top: 60px;
}
.s-features__item.__hrd .s-features__itemTxt, .s-features__item.__se .s-features__itemTxt {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.47;
  text-align: center;
  padding-bottom: 10px;
}
.s-features__item.__hrd .s-features__list__ttl, .s-features__item.__se .s-features__list__ttl {
  margin-bottom: 10px;
  line-height: 1.28;
}
.s-features__item.__hrd .s-features__list__note, .s-features__item.__se .s-features__list__note {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 12px;
}
.s-features__item.__hrd .s-features__list__txt, .s-features__item.__se .s-features__list__txt {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.s-features__itemTtl, .s-price__itemTtl {
  font-size: 25px;
  color: #0B0B0B;
  line-height: 1.55;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  margin: 0 0 15px;
}
.s-features__itemTtl img, .s-price__itemTtl img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.s-features__itemTxt {
  font-size: 14px;
  line-height: 1.71;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
}

.s-features__itemTable, .s-price__itemTable {
  border-collapse: collapse;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
  width: 100%;
}
.s-features__itemTable thead, .s-price__itemTable thead {
  background: #6F6F6F;
  color: #FFF;
  font-weight: 500;
}
.s-features__itemTable tbody tr, .s-price__itemTable tbody tr {
  border-top: 1px solid #CCC;
}
.s-features__itemTable tbody th, .s-price__itemTable tbody th {
  background: #F7EAF1;
  letter-spacing: 0.1em;
  font-weight: bold;
}
.s-features__itemTable th, .s-features__itemTable td, .s-price__itemTable th, .s-price__itemTable td {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  border-right: 1px solid #CCC;
  text-align: left;
  padding: 8px 10px;
}
.s-features__itemTable th, .s-price__itemTable th {
  font-weight: 500;
}

.s-price__item {
  margin: 0 0 50px;
}
.s-price__item:first-of-type {
  margin-top: 21px;
}

.s-price__itemTable thead th {
  text-align: center;
  font-size: 16px;
}
.s-price__itemTable tbody th {
  width: 49%;
}
.s-price__itemTable.__blue tbody th {
  background: #DCEEFA;
}
.s-price__itemTable.__green tbody th {
  background: #EFFAD8;
}
.s-price__itemTable.__yellow tbody th {
  background: #FDF5C6;
}

.s-price__itemTxt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  padding-left: 1em;
  text-indent: -1em;
  margin: 15px 0 0;
}
.s-price__itemTxt + .s-price__itemTxt {
  margin-top: 5px;
}
.s-price__itemTxt strong {
  color: red;
}

.s-possible-wrap {
  padding: 30px 0;
  margin: 0;
}
.s-possible-wrap:first-of-type {
  padding-top: 0;
}
.s-possible-wrap:last-of-type {
  padding-bottom: 0;
}
.s-possible-wrap dt, .s-possible-wrap dd {
  letter-spacing: 0.05em;
}
.s-possible-wrap dt {
  font-size: 21px;
  color: #6B1E3A;
  font-weight: bold;
  margin-bottom: 15px;
}
.s-possible-wrap dd {
  font-size: 14px;
  line-height: 1.71;
  margin: 0;
}
.s-possible-wrap + .s-possible-wrap {
  border-top: 1px solid #707070;
}

.serviceDetail__function {
  margin: 0 auto;
  width: 100vw;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F7F2F5;
  padding: 32px 5% 10px;
}

.s-function__point {
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.47;
  text-align: center;
  margin: 22px 0 30px;
}

.bar-ttl-left + .s-function__inner {
  margin-top: 26px;
}

.s-function__item {
  padding: 0 0 30px;
}
.s-function__item + .s-function__item {
  padding: 30px 0 30px;
  border-top: 1px solid #707070;
}

.s-function__ttl__wrap {
  width: 214px;
  height: 214px;
  background: #FFF;
  border-radius: 4px;
  padding: 0 15px;
  text-align: center;
  margin: 0 auto;
}
.s-function__ttl__wrap._fullImg {
  background: none;
  height: auto;
  padding: 0;
}
.s-function__ttl__wrap._fullImg img {
  width: 214px;
  height: auto;
}
.s-function__ttl__wrap._fullImg h4 {
  margin: 15px 0 35px;
}
.s-function__ttl__wrap h4 {
  font-size: 19px;
  letter-spacing: 0.05em;
  color: #0C0B0B;
  margin: -10px 0 0;
  text-align: center;
}
.s-function__ttl__wrap img {
  width: 181px;
  height: auto;
}

.s-function__image p {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.94;
  text-align: center;
  margin: 6px 0 17px;
}
.s-function__image + .s-function__txt__wrap {
  margin-top: 32px;
}

.s-function__summary {
  font-size: 21px;
  font-weight: bold;
  color: #6B1E3A;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.47;
  margin: 20px 0 15px;
}
.s-function__summary.-left {
  text-align: left;
}

.s-function_point {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin: 0 0 17px;
}

.s-function__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  margin: 0;
}
.s-function__txt li {
  text-indent: -1em;
  padding-left: 1em;
}

.serviceDetail__flow {
  padding: 52px 0 60px;
}

.s-flow__list li {
  padding: 35px 12px;
  position: relative;
}
.s-flow__list li p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #6B1E3A;
  letter-spacing: 0.05em;
  line-height: 1.55;
  text-align: center;
}
.s-flow__list li:not(:last-child)::after {
  content: "";
  width: 36px;
  height: 20px;
  background: url(../../assets/images/flow_arrow_sp.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.s-flow__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  margin: 5px 0 50px;
}

.s-flow__btn {
  margin: 0 auto;
}
.s-flow__btn a {
  display: block;
  text-align: center;
}
.s-flow__btn img {
  width: 280px;
}

.serviceDetail__case {
  padding-bottom: 30px;
}

.s-case__item {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.s-case__item + .s-case__item {
  border-top: 1px solid #707070;
}

.s-case__ttl {
  font-size: 21px;
  font-weight: bold;
  color: #6B1E3A;
  letter-spacing: 0.05em;
  line-height: 1.47;
  margin: 20px 0 15px;
}

.s-case__name {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.55;
  margin: 0 0 15px;
}

.s-case__txt {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.71;
  margin: 0;
}

@media (max-width: 767px) {
  .s-features__list li + li {
    margin-top: 152px;
  }
  .s-features__list li.mt-short {
    margin-top: 108px;
  }
  .s-features__list li.mt-medium {
    margin-top: 120px;
  }

  .s-features__itemTable thead {
    display: none;
  }
  .s-features__itemTable th, .s-features__itemTable td {
    display: block;
  }
  .s-features__itemTable th {
    border-bottom: 1px solid #CCC;
  }

  .s-price__item.__possible .narrow-container {
    padding: 0;
  }

  .serviceDetail__function .narrow-container {
    padding: 0;
  }

  .s-flow__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .s-flow__list li span {
    width: 48%;
    height: auto;
  }
  .s-flow__list li p {
    width: calc(100% - 48% - 12px);
  }

  .s-flow__btn + .s-flow__btn {
    margin-top: 30px;
  }

  .s-case__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .s-case__item img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .s-case__txt__wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 320px) {
  .serviceDetail__intro__txt {
    display: block;
  }
  .serviceDetail__intro__txt::before {
    left: 0;
  }
  .serviceDetail__intro__txt::after {
    right: 0;
  }
}
@media (min-width: 768px) {
  ._serviceIndex {
    padding: 70px 0 60px;
  }

  .serviceIndex__txt {
    font-size: 28px;
    line-height: 1.71;
    padding-bottom: 70px;
  }

  .serviceIndex__content {
    padding: 40px 0;
  }
  .serviceIndex__content:nth-of-type(odd) .serviceIndex__contentInner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse;
            flex-flow: row-reverse;
  }

  .serviceIndex__contentTtl {
    font-size: 24px;
    text-align: left;
  }
  .serviceIndex__contentTtl img {
    width: 40px;
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }
  .serviceIndex__contentTtl .sub-ttl {
    font-size: 20px;
    padding-left: 55px;
  }

  .serviceIndex__contentInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .serviceIndex__contentInner figure {
    width: 55%;
  }

  .serviceIndex__contentTxt {
    width: 42%;
  }
  .serviceIndex__contentTxt p {
    font-size: 18px;
    line-height: 2;
    padding: 0;
    margin-top: -7px;
  }
  .serviceIndex__contentTxt .btn {
    margin: 30px 0 0 auto;
  }

  ._serviceDetail {
    padding: 70px 0 60px;
    overflow-x: hidden;
  }

  .serviceDetail__intro {
    margin: 51px auto 108px;
  }

  .serviceDetail__intro__txt {
    font-size: 20px;
    display: inline-block;
  }
  .serviceDetail__intro__txt .marker {
    font-size: 24px;
  }
  .serviceDetail__intro__txt .marker.pc-bigger {
    font-size: 28px;
  }

  .serviceDetail__intro__txt::before, .serviceDetail__intro__txt::after {
    width: 18px;
    height: 38px;
  }

  .serviceDetail__intro__txt::before {
    left: -10%;
  }

  .serviceDetail__intro__txt::after {
    right: -10%;
  }

  .s-features__txt {
    font-size: 18px;
    margin: 56px 0 60px;
    line-height: 2;
  }

  .s-features__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .s-features__list li {
    width: 30%;
    padding: 142px 20px 30px;
    margin-top: 42px;
  }
  .s-features__list li img {
    max-width: 180px;
    top: -42px;
  }
  .s-features__list li img.simple-action {
    left: 53%;
  }
  .s-features__list li img.follow-up {
    top: -50px;
  }
  .s-features__list li img.cost-cut {
    width: 150px;
    top: -25px;
  }
  .s-features__list li img.original-item {
    top: -42px;
  }
  .s-features__list li img.cost-down {
    width: 150px;
    top: -42px;
  }
  .s-features__list li img.se-support {
    width: 170px;
    top: -48px;
  }
  .s-features__list li img.disposal {
    width: 170px;
    top: -56px;
  }

  .s-features__item {
    margin: 0 0 80px;
  }
  .s-features__item:last-child {
    margin-bottom: 120px;
  }

  .s-features__item.__hrd {
    margin: 120px 0 76px !important;
  }
  .s-features__item.__hrd .s-features__list__ttl {
    line-height: 1.5;
  }
  .s-features__item.__hrd .s-features__list__note {
    line-height: 1.66;
    margin-bottom: 20px;
  }
  .s-features__item.__hrd .s-features__itemTxt {
    font-size: 28px;
    line-height: 1.71;
    margin: 54px 0 30px;
  }

  .s-features__list__ttl {
    font-size: 20px;
  }

  .s-features__list__txt {
    font-size: 16px;
    line-height: 1.5;
  }

  .s-features__finding {
    font-size: 28px;
    line-height: 1.71;
    padding-top: 75px;
    margin: 40px 0 120px;
  }
  .s-features__finding::before {
    width: 200px;
    height: 40px;
    background: url(../../assets/images/features_arrow.jpg) no-repeat;
    background-size: cover;
  }

  .s-features__itemTtl, .s-price__itemTtl {
    font-size: 25px;
    text-align: left;
    margin-bottom: 30px;
  }
  .s-features__itemTtl img, .s-price__itemTtl img {
    width: 40px;
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: middle;
  }

  .s-features__itemTxt {
    font-size: 18px;
    margin: 20px 0 25px;
  }

  .s-features__itemTable thead th, .s-price__itemTable thead th {
    font-size: 24px;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 9px 10px;
  }
  .s-features__itemTable tbody th, .s-features__itemTable tbody td, .s-price__itemTable tbody th, .s-price__itemTable tbody td {
    padding: 21px 30px;
  }
  .s-features__itemTable tbody th, .s-price__itemTable tbody th {
    font-size: 20px;
    width: 31%;
    vertical-align: text-top;
    line-height: 1.5;
  }
  .s-features__itemTable tbody td, .s-price__itemTable tbody td {
    font-size: 18px;
    line-height: 2;
  }

  .s-price__item {
    margin: 0 0 80px;
  }
  .s-price__item:first-of-type {
    margin-top: 46px;
  }
  .s-price__item:last-child {
    margin-bottom: 120px;
  }
  .s-price__item.__possible {
    margin: 0 auto 110px;
    width: 100vw;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #F7F2F5;
    padding: 80px 0;
  }
  .s-price__item tbody th {
    width: 40%;
  }

  .s-price__itemTxt {
    font-size: 18px;
    line-height: 2;
  }

  .s-possible-wrap {
    padding: 48px 0;
  }
  .s-possible-wrap dt {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .s-possible-wrap dd {
    font-size: 18px;
    line-height: 2;
  }

  .serviceDetail__function {
    padding: 69px 0 30px;
  }

  .bar-ttl-left + .s-function__inner {
    margin-top: 45px;
  }

  .s-function__point {
    font-size: 28px;
    margin: 87px 0 60px;
  }

  .s-function__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 50px;
  }
  .s-function__item + .s-function__item {
    padding: 50px 0;
  }

  .s-function__ttl__wrap {
    width: 250px;
    height: 250px;
    margin: 0;
  }
  .s-function__ttl__wrap._fullImg img {
    width: 250px;
  }
  .s-function__ttl__wrap._fullImg h4 {
    margin: 15px 0;
  }
  .s-function__ttl__wrap h4 {
    margin-top: 0;
  }
  .s-function__ttl__wrap img {
    width: 199px;
  }
  .s-function__ttl__wrap + .s-function__txt__wrap {
    width: calc(100% - 250px - 5%);
  }

  .s-function__image__wrap {
    width: 310px;
  }
  .s-function__image__wrap + .s-function__txt__wrap {
    width: calc(100% - 310px - 5%);
  }

  .s-function__image p {
    font-size: 20px;
    margin: 12px 0 40px;
  }
  .s-function__image p span {
    font-size: 18px;
  }
  .s-function__image:last-child p {
    margin-bottom: 0;
  }

  .s-function__txt__wrap {
    width: calc(100% - 250px - 5%);
  }

  .s-function__summary {
    font-size: 24px;
    text-align: left;
    margin: -5px 0 30px;
  }

  .s-function_point {
    font-size: 20px;
    line-height: 1.6;
    margin: -20px 0 25px;
  }

  .s-function__txt {
    font-size: 18px;
    line-height: 2;
  }

  .serviceDetail__flow {
    padding: 108px 0 120px;
  }

  .s-flow__list {
    padding: 40px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .s-flow__list li {
    padding: 0;
    width: 15%;
    position: unset;
  }
  .s-flow__list li p {
    margin: 15px 0 0;
  }
  .s-flow__list li:not(:last-child)::after {
    display: none;
  }
  .s-flow__list li span {
    display: inline-block;
    position: relative;
  }
  .s-flow__list li img {
    width: 100%;
  }
  .s-flow__list li:not(:last-child) span::after {
    content: "";
    width: 24px;
    height: 23px;
    background: url(../../assets/images/flow_arrow.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: -33%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }

  .s-flow__txt {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin: 0 0 80px;
  }

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

  .s-flow__btn {
    width: 48.6%;
    margin: 0;
  }
  .s-flow__btn a {
    position: relative;
  }
  .s-flow__btn a:hover .__hover {
    opacity: 0;
  }
  .s-flow__btn img {
    width: 100%;
  }
  .s-flow__btn .__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .serviceDetail__case {
    padding-bottom: 14px;
  }

  .s-case__item {
    padding: 46px 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .s-case__item img {
    max-width: 310px;
    width: 31%;
  }
  .s-case__item + .s-case__item {
    padding-top: 51px;
  }

  .s-case__txt__wrap {
    width: 64%;
  }

  .s-case__ttl {
    font-size: 24px;
    line-height: 2;
    margin: -13px 0 10px;
  }

  .s-case__name {
    font-size: 20px;
    margin: 0 0 20px;
  }

  .s-case__txt {
    font-size: 18px;
    line-height: 2;
  }
}
@media screen and (min-width: 1000px) {
  .s-flow__list li p {
    white-space: nowrap;
  }
}
/* ------------------------------
　　privacy
------------------------------ */
._privacy section {
  margin: 0 auto 60px;
}
._privacy h3 {
  margin-bottom: 32px;
}
._privacy p {
  line-height: 1.68;
}

.privacy__content {
  margin: 40px 0;
}
.privacy__content + .privacy__content {
  border-top: 1px solid #DDDDDD;
}
.privacy__content h4 {
  font-size: 22px;
  line-height: 1.36;
  text-align: center;
  margin: 30px 0 20px;
}
.privacy__content h5 {
  font-size: 20px;
  margin: 20px 0;
}
.privacy__content ul li {
  line-height: 1.68;
  position: relative;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.privacy__content ul li::before {
  content: "・";
  margin-right: 5px;
}

@media (min-width: 768px) {
  ._privacy section {
    margin-bottom: 120px;
  }
  ._privacy h3 {
    max-width: 880px;
    margin: 40px auto 55px;
    padding: 0 4%;
    font-size: 36px;
  }
  ._privacy p {
    font-size: 18px;
  }

  .privacy__intro__txt {
    max-width: 880px;
    margin: 0 auto 80px;
    padding: 0 4%;
  }

  .privacy__content {
    margin: 50px 0;
    padding: 0 4%;
  }
  .privacy__content h4 {
    font-size: 28px;
    margin: 50px 0 30px;
  }
  .privacy__content h5 {
    margin: 25px 0;
  }
}
/*# sourceMappingURL=site.min.css.map */