@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
body {
  color: #333;
  font-family: Verdana, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Hiragino Kaku Gothic Pro, Meiryo, sans-serif;
  background: #fff;
  font-size: 18px;
}

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

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

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

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

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

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

@media (min-width: 1024px) {
  .column2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .column2 .main {
    width: calc(100% - 230px);
  }
  .column2 .side {
    width: 190px;
  }
}
/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* ------------------------------
　　バナー
------------------------------ */
.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 .banner-list-item {
  position: relative;
  margin: 0 0 20px 0;
}
.banner .banner-list-item:after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  width: 6px;
  height: 9px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  top: auto;
  bottom: 15px;
  width: 10px;
  height: 15px;
}
.banner .banner-list-item a {
  display: block;
  min-height: 160px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding: 30px;
}
.banner .banner-list-item .banner-text {
  line-height: 1.35;
  font-weight: normal;
}

.banner-list-item a:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .banner-list-item {
    width: calc(50% - 10px);
  }
}
/* ------------------------------
　　ボタン
------------------------------ */
.btn-wrapper {
  margin: 20px 0 0;
  text-align: center;
}
.btn-wrapper .btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
}
.entry-column .btn-wrapper {
  margin: 0 15px 60px;
  text-align: left;
}

@media (min-width: 768px) {
  .btn-wrapper .btn {
    width: auto;
  }
  .btn-wrapper.right {
    text-align: right;
  }
}
.btn {
  background: #333;
  border: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  border-radius: 3px;
}
.btn:hover, .btn:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}
.btn:focus, .btn:active {
  color: #fff;
}
@media (min-width: 768px) {
  .btn {
    padding: 10px 50px;
  }
}
.btn:after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  width: 6px;
  height: 9px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.btn:hover {
  color: #fff;
  background-color: #707070;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#707070), to(#707070));
  background-image: linear-gradient(to bottom, #707070, #707070);
}
.btn:active, .btn:focus {
  background: #878787;
}
.btn.top-products {
  background-color: #285198;
  font-size: 20px;
  padding: 27px 20px;
  width: 490px;
}
.btn.top-products:after {
  top: calc(50% - 6px);
  width: 10px;
  height: 15px;
}

/* ボタン　色付き */
.btn-attention {
  background: #285198;
  border: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  border-radius: 3px;
}
.btn-attention:hover, .btn-attention:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}
.btn-attention:focus, .btn-attention:active {
  color: #fff;
}
@media (min-width: 768px) {
  .btn-attention {
    padding: 10px 50px;
  }
}
.btn-attention:hover {
  color: #fff;
  background-color: #FFA700;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA700));
  background-image: linear-gradient(to bottom, #FDD87D, #FFA700);
}
.btn-attention:active, .btn-attention:focus {
  background: #EDA800;
}

/* ボタンサイズ大 */
.btn-large {
  background: #333;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-large:hover, .btn-large:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}
.btn-large:focus, .btn-large:active {
  color: #fff;
}
.btn-large:after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  width: 6px;
  height: 9px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.btn-large.return {
  background-color: #CCC;
  color: #555;
}
.btn-large.return:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23727272%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
@media (max-width: 767px) {
  .btn-large.return {
    margin-bottom: 20px;
  }
}
.btn-large.return:after {
  right: auto;
  left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.btn-large:hover {
  background: #707070;
}
.btn-large:active, .btn-large:focus {
  background: #878787;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #285198;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-attention-large:hover, .btn-attention-large:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}
.btn-attention-large:focus, .btn-attention-large:active {
  color: #fff;
}
.btn-attention-large:hover {
  background: #FFC85F;
}
.btn-attention-large:active, .btn-attention-large:focus {
  background: #EDA800;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  width: 100%;
  background: #333;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}
.btn-block-large:hover, .btn-block-large:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  text-decoration: none;
}
.btn-block-large:focus, .btn-block-large:active {
  color: #fff;
}
.btn-block-large:hover {
  background: #707070;
}
.btn-block-large:active, .btn-block-large:focus {
  background: #878787;
}

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

@media (min-width: 768px) {
  .btn-block-large {
    max-width: 360px;
  }
  .btn-attention-block-large {
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 15px 50px;
    font-size: 20px;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .btn-search-block {
    padding: 10px 50px;
  }
}
/* ボーダーボタン */
.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 #C2C2C2;
}

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

.card-link {
  display: block;
  margin: 0 -15px;
  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 {
  padding: 25px;
  background-color: #F8F9FA;
}
.headline ul {
  margin: 0;
  padding: 0;
}
.headline ul li {
  margin: 0;
  border-bottom: 1px solid #C2C2C2;
}

.headline-item {
  line-height: 1.5;
  list-style-type: none;
}

.headline-link {
  display: block;
  padding: 15px 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  text-decoration: none;
}
.headline-link time, .headline-link .label {
  color: #333;
}

.headline-title {
  margin-top: 6px;
  display: block;
  text-decoration: underline;
  font-size: 18px;
}

@media (min-width: 768px) {
  .headline {
    padding: 30px;
  }
}
/* ------------------------------
　　リスト
------------------------------ */
.list-group {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.list-group .list-group-item {
  position: relative;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #E4E4E4;
  font-size: 18px;
  color: #333;
}
.list-group .list-group-item:after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  width: 6px;
  height: 9px;
  display: inline-block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23727272%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.list-group .list-group-item:hover {
  text-decoration: none;
}
.list-group .list-group-item:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23068EC5%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

@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;
}
.module-header + .thumbnail, .module-header + .summary-default, .module-header + .entry-column, .module-header + .card, .module-header + .search-form, .module-header + .banner {
  margin-top: 20px;
}
.module-header:before {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent -webkit-gradient(linear, left top, right top, from(#13398a), to(rgba(19, 57, 138, 0))) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #13398a 0%, rgba(19, 57, 138, 0) 100%) 0% 0% no-repeat padding-box;
}

.module-heading {
  margin: 0;
  padding-bottom: 5px;
  font-size: 32px;
  color: #13398a;
}
.module-heading [class*=acms-icon-] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

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

.side .module-header {
  border-bottom: 1px solid #162E69;
}
.side .module-header:before {
  content: none;
}
.side .module-header .module-heading {
  font-size: 20px;
}

/* カスタムフィールドグループ */
.group-list {
  padding: 0 15px;
  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%;
  height: 180px;
  color: #FFF;
  background: url("../../images/bg_other.jpg") #333 no-repeat center;
  background-size: cover;
  z-index: -1;
}

.page-title-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}

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

.page-title {
  margin: 0;
  font-size: 44px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}
.page-title a {
  color: #FFF;
}

.page-description {
  margin: 10px 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 240px;
  }
  .page-title {
    text-align: left;
    padding-left: 60px;
  }
}
/* 製品 */
.page-title-wrapper.products.entry {
  background-image: none;
}
@media (min-width: 768px) {
  .page-title-wrapper.products.entry {
    height: 172px;
  }
}
.page-title-wrapper.products.entry .page-title {
  text-align: center;
  font-weight: normal;
}

/* ------------------------------
　　ページャー
------------------------------ */
.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: #C2C2C2;
  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 {
  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 .serial-nav-item {
  display: block;
  float: none;
}
.serial-nav .serial-nav-item .btn {
  width: 102px;
  padding-right: 10px;
  padding-left: 10px;
}
.serial-nav .serial-nav-item-prev a:after {
  left: 15px;
  right: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.serial-nav a {
  display: block;
  color: #fff;
  border-bottom: 1px solid #C2C2C2;
}
.serial-nav a:hover, .serial-nav a:visited, .serial-nav a:focus, .serial-nav a:active {
  color: inherit;
  text-decoration: none;
  color: #fff;
}
.serial-nav a:hover {
  background: #C2C2C2;
  color: #333;
}
.serial-nav a:hover:after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23727272%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

@media screen and (min-width: 768px) {
  .serial-nav {
    margin: 0 0 60px 0;
    border: 0;
  }
  .serial-nav .serial-nav-item .btn {
    width: 160px;
  }
  .serial-nav .serial-nav-item-prev {
    float: left;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    border: 0;
    width: 160px;
  }
}
/* ------------------------------
　　検索フォーム
------------------------------ */
.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;
}

/* ------------------------------
　　スライダー
------------------------------ */
.top-carousel {
  margin: 30px 20px 40px;
}
.top-carousel .top-carousel-item {
  margin: 0 10px;
}
.top-carousel .img-wrapper {
  min-height: 160px;
  margin-bottom: 20px;
}
.top-carousel .img-wrapper img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.top-carousel h3, .top-carousel p {
  margin: 0;
  font-size: 16px;
  color: #235AAA;
  line-height: 1.75;
}

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

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

.slick-prev {
  left: -30px;
  background-image: url("../../images/marker/icon_slide.svg");
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slick-next {
  right: -30px;
  background-image: url("../../images/marker/icon_slide.svg");
}

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

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

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

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

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

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

.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-prev {
    left: -30px;
  }
  .slick-next {
    right: -30px;
  }
  .fix-height {
    height: 360px;
    /* はじめのちらつき防止 */
  }
  .main-slider-image {
    height: 400px;
  }
  .main-slider-main-copy {
    font-size: 40px;
  }
  .main-slider-side-copy {
    font-size: 24px;
  }
}
/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px 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: #C2C2C2;
}
.summary-default .slick-dots .slick-active button {
  background: #235AAA;
}

.summary-default-item {
  display: block;
  padding: 20px;
  color: #333;
  border-bottom: 1px solid #C2C2C2;
  -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: 15px;
}
.summary-default-item p {
  margin-top: 0;
}
.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 -15px;
  padding: 10px;
  color: #333;
  -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-date {
  margin-bottom: 4px;
}

.summary-title {
  margin: 0 0 6px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
}

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

@media screen and (min-width: 768px) {
  .summary-default {
    margin: 0 0 20px 0;
  }
  .summary-default-item {
    position: relative;
    padding-right: 40px;
  }
  .summary-default-item:after {
    position: absolute;
    right: 15px;
    top: calc(50% - 4px);
    width: 6px;
    height: 9px;
    display: inline-block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.828%22%20height%3D%2230.828%22%20viewBox%3D%220%200%2016.828%2030.828%22%3E%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_3300%22%20data-name%3D%22%E3%83%91%E3%82%B9%203300%22%20d%3D%22M-17.189%2C563.571l14%2C14-14%2C14%22%20transform%3D%22translate(18.603%20-562.157)%22%20fill%3D%22none%22%20stroke%3D%22%23235aaa%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E%0A");
    right: 0;
    width: 15px;
    height: 28px;
    top: calc(50% - 14px);
  }
}
.top-products-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.75;
}
.top-products-wrapper .top-products-item a {
  color: #333;
  padding-right: 40px;
}
.top-products-wrapper .top-products-item a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-left: 15px;
}
.top-products-wrapper .top-products-item a:hover img {
  -webkit-filter: brightness(0.95) saturate(1.1);
          filter: brightness(0.95) saturate(1.1);
}
.top-products-wrapper .top-products-item img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .top-products-wrapper .top-products-item {
    width: calc(50% - 20px);
  }
}
.top-products-wrapper .top-products-heading {
  font-size: 20px;
}
.top-products-wrapper .products-description {
  padding: 0 20px;
}
.top-products-wrapper ul {
  margin: 0;
}
.top-products-wrapper ul li {
  position: relative;
  margin-bottom: 10px;
}
.top-products-wrapper ul li::marker {
  color: #235AAA;
  content: "・";
}
.top-products-wrapper ul li::after {
  margin-left: -20px;
  position: relative;
  display: inline-block;
  content: "";
  width: 12px;
  height: 6px;
  -webkit-transform: rotate(-90deg) translateX(3px);
          transform: rotate(-90deg) translateX(3px);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.414%22%20height%3D%2210.121%22%20viewBox%3D%220%200%2017.414%2010.121%22%3E%0A%20%20%3Cpath%20id%3D%22arrow%22%20data-name%3D%22arrow%22%20d%3D%22M791.89-139.422l8%2C8-8%2C8%22%20transform%3D%22translate(-122.715%20-791.183)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%233689d3%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}

.summary-products {
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .summary-products {
    margin-bottom: 140px;
  }
}
.summary-products .summary-products-item {
  padding: 30px 20px;
  border-bottom: 1px solid #727272;
}
.summary-products .products-category-heading {
  margin: 0;
  padding: 30px 0 15px;
  font-size: 28px;
  border-bottom: 1px solid #727272;
}
.summary-products .summary-title {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 10px;
  line-height: 1.5;
}
.summary-products .products-description {
  font-size: 14px;
  margin: 0 0 20px;
}
.summary-products .catalog-no {
  color: #707070;
}
.summary-products .catalog-no h4 {
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 4px;
}
.summary-products .catalog-no ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}
.summary-products .catalog-no ul li {
  font-size: 18px;
  display: inline-block;
}
.summary-products .catalog-no ul li:after {
  content: ",";
  margin: 0 4px;
}
.summary-products .catalog-no ul li:last-child:after {
  content: "";
}
.summary-products .btn {
  padding: 9px 50px;
  max-width: 160px;
}

.entry-column .summary-products {
  margin-bottom: 0;
}
.entry-column .summary-products .summary-products-item {
  margin: -1px 15px 0;
  border-top: 1px solid #727272;
}
.entry-column .summary-products .summary-title,
.entry-column .summary-products .catalog-no h4 {
  margin-left: 0;
  color: #333;
}
.entry-column .summary-products .summary-title a {
  color: #333;
}

/* ------------------------------
　　サムネイル
------------------------------ */
.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: 80px 0 10px;
}
@media (min-width: 768px) {
  .topicpath {
    padding: 10px 0;
  }
}

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

.topicpath-item {
  float: left;
  padding: 0 10px 0 15px;
  background: url("../../images/marker/icon_arrow.png") no-repeat left center;
  font-size: 12px;
  line-height: 1.5;
}
.topicpath-item:first-child {
  padding: 0 10px 0 0;
  background: 0;
}

.topicpath-link {
  color: #666;
}
.topicpath-link:visited, .topicpath-link:focus, .topicpath-link:active {
  color: #666;
}

.top-image {
  margin-bottom: 60px;
  padding-top: 80px;
}
.top-image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-image {
    padding-top: 0;
  }
  .top-image img {
    width: auto;
    height: 360px;
    margin: auto;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.entry-column [class*=column-module] {
  padding-left: 15px;
  padding-right: 15px;
  -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-media] a[href*=media-download] {
  display: inline-block;
  width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  [class*=acms-col-][class*=-right] {
    float: left;
  }
  [class*=acms-col-][class*=-right] + * {
    clear: both;
  }
}
/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: 15px;
  margin-left: 15px;
}

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

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

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

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

.highlight2 {
  background-color: #a0FFFF;
}

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

.highlight4 {
  background-color: #FF9999;
}

.highlight5 {
  background-color: #FF66FF;
}

.highlight6 {
  background-color: #880000;
}

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

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

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

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

/* タイトル */
.entry-title {
  margin: 10px 0 40px;
  padding-bottom: 30px;
  color: #13398a;
  font-size: 32px;
  line-height: 1.5;
  border-bottom: 2px solid #d0d0d0;
}
.entry-title a {
  color: #13398a;
}
.acms-entry h2 .entry-title {
  padding: 0;
}

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

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
  line-height: 1.75;
}
.entry-column h2 {
  position: relative;
  margin: 70px 15px 20px 15px;
  padding-bottom: 5px;
  font-size: 32px;
  color: #13398a;
}
.entry-column h2:first-of-type {
  margin-top: 0;
}
.entry-column h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}
.entry-column h2:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(0, #13398a), to(rgba(19, 57, 138, 0))) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(90deg, #13398a 0, rgba(19, 57, 138, 0) 100%) 0 0 no-repeat padding-box;
}
.entry-column h3 {
  margin: 0 15px 20px 15px;
  font-size: 28px;
  color: #333;
}
.entry-column h4 {
  margin: 0 15px 20px 15px;
  font-size: 18px;
  color: #333;
}
.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 a.btn {
  color: #fff;
}
.entry-column a.btn:hover {
  text-decoration: none;
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  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 15px;
}

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

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

/* テーブル */
.entry-column table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #d8d8d8;
}
.entry-column th,
.entry-column td {
  font-weight: normal;
  display: block;
  padding: 10px 15px;
  color: #333;
  line-height: 1.5;
  text-align: center;
  vertical-align: top;
  border-top: 1px solid #d8d8d8;
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  font-size: 18px;
}
.entry-column th {
  background-color: #f0f0f0;
}
.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: #f0f0f0;
}
.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;
    text-align: left;
  }
}
/* リスト */
.entry-column ul {
  margin: 0 0 20px 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 20px 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 ol.note {
  counter-reset: note;
  margin: 20px 15px 60px;
  padding: 0;
}
.entry-column ol.note li {
  position: relative;
  list-style-type: none;
  font-size: 14px;
  padding-left: 2em;
  line-height: 1.7;
}
.entry-column ol.note li:before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: note;
  content: "*" counter(note) ")";
}

/* 定義リスト */
.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: #F6F6F6;
  border-left: none;
  font-size: 16px;
}
.entry-column blockquote.ref {
  position: relative;
  padding: 25px 25px 25px 60px;
}
.entry-column blockquote.ref:before {
  content: "Ref)";
  position: absolute;
  top: 25px;
  left: 25px;
}
.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: 768px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-column blockquote.ref {
    padding: 30px 30px 30px 70px;
  }
  .entry-column blockquote.ref:before {
    top: 30px;
    left: 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 #C2C2C2;
}

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

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

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

[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 15px 25px 15px;
  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 15px 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #eee;
}
.entry-column .staff-item {
  width: 50%;
  margin: 0;
}
.entry-column .staff-inner {
  display: -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 {
  float: right;
}

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

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

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

/* 続きを読むボタン */
.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 screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }
  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }
}
/* ダウンロードボタン */
.entry-column .outline {
  background-color: #F8F9FA;
  padding: 15px;
}
.entry-column .outline .outline-heading {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}
.entry-column .outline .outline-heading:before {
  display: inline-block;
  content: "";
  width: 28px;
  height: 28px;
  background: url(../../images/outline.svg) center no-repeat;
  background-size: cover;
  margin-right: 14px;
}
.entry-column .outline ol li {
  font-size: 18px;
  line-height: 1.5;
}
.entry-column .outline ol li a {
  text-decoration: underline;
}
.entry-column .outline ol li a:hover {
  text-decoration: none;
}
.entry-column .outline ol.level-2 {
  margin-left: -6px;
  padding-left: 0;
}
.entry-column .outline ol.level-2:after {
  display: block;
  content: "";
  border-bottom: 1px solid #e4e4e4;
  margin: 15px 0 0 -24px;
}
.entry-column .outline ol.level-2 li {
  list-style-type: none;
}
.entry-column .outline ol.level-2 li a {
  position: relative;
  padding-left: 22px;
}
.entry-column .outline ol.level-2 li a:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  margin-right: 15px;
  top: 50%;
  left: 0;
  background-color: #333;
}

@media screen and (min-width: 768px) {
  .entry-column .outline {
    padding: 40px;
  }
  .entry-column .outline .outline-heading {
    font-size: 34px;
  }
  .entry-column .outline ol li {
    font-size: 20px;
  }
}
/* ダウンロードボタン */
.entry-column .download {
  margin: 0 15px 60px;
}
.entry-column .download p {
  margin: 0 0 10px;
}
.entry-column .download .btn-download {
  display: inline-block;
  text-align: center;
  width: 295px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #ddd;
  font-weight: bold;
  border-radius: 4px;
  padding: 9px 20px;
  color: #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.entry-column .download .btn-download:hover {
  text-decoration: none;
  background-color: #f7f7f7;
}
.entry-column .download .btn-download:before {
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 16px;
  height: 18px;
  margin-right: 10px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218%22%20height%3D%2220%22%3E%3Cg%20data-name%3D%22Download%22%20fill%3D%22none%22%20stroke%3D%22%233b8bd0%22%20stroke-linecap%3D%22square%22%20stroke-width%3D%222%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%203%22%20d%3D%22M9%201v13%22%2F%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%204%22%20d%3D%22M4%2010l5%205%205-5%22%2F%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%205%22%20d%3D%22M17%2019H1%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  vertical-align: middle;
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
}
.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #333;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  border-radius: 3px;
}
.entry-column .entry-btn-default:hover, .entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
}
@media (min-width: 768px) {
  .entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
    padding: 10px 50px;
  }
}
.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #707070;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#707070), to(#707070));
  background-image: linear-gradient(to bottom, #707070, #707070);
}
.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #878787;
}
.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #285198;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  max-width: 100%;
  width: 280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 50px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  border-radius: 3px;
}
.entry-column .entry-btn-attention:hover, .entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  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;
}
@media (min-width: 768px) {
  .entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
    padding: 10px 50px;
  }
}
.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #FFA700;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA700));
  background-image: linear-gradient(to bottom, #FDD87D, #FFA700);
}
.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: 100%;
  max-width: 820px;
}
.main-inner.is-space-left {
  float: right;
}
.main-inner.is-space-right {
  float: left;
}
.main-inner.is-space-center {
  margin: 0 auto;
}

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

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.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;
  }
}
/* ------------------------------
　　お問い合わせ
------------------------------ */
@media (max-width: 767px) {
  .acms-form input[type=text],
.acms-form input[type=tel],
.acms-form input[type=email],
.acms-form .acms-form textarea {
    width: 100%;
  }
}
.contact-box .message-group {
  margin: 0 0 35px 0;
}
.contact-box .message-text {
  color: #235AAA;
  font-weight: bold;
}
.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 30px;
}
.contact-box .contact-no a {
  color: inherit;
}
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #235AAA;
}
.contact-box p {
  line-height: 1.6;
}

.contact-box-inner {
  background-color: #f6f6f6;
  margin: 0 10px;
  padding: 30px 25px 40px;
}

.contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.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: #F6F6F6;
}

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

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

.contact-form-control {
  display: block;
  width: 100%;
  padding: 10px;
  -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;
}

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

/* プライバシー埋め込み
------------------------------ */
.contact-box iframe {
  width: 100%;
}
.contact-box iframe header,
.contact-box iframe footer {
  display: none;
}

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

.form-btn {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .form-btn-send {
    width: 100%;
    max-width: 360px;
  }
}
/* ラベル
------------------------------ */
.required {
  color: #D50000;
  border-radius: 3px;
  font-size: 14px;
  margin-left: 4px;
}

/* フォーム要素
------------------------------ */
.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: 0 5px;
}
.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px;
}
.contact-box select {
  background-color: #f7f7f7;
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  vertical-align: top;
}

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

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

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

/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.site-name {
  font-size: 24px;
  color: #235AAA;
  font-weight: bold;
  height: 80px;
}
.header-stack .site-name {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site-name a {
  color: #235AAA;
}
.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #235AAA;
}

.site-logo {
  display: inline-block;
  width: 150px;
  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;
}

@media (min-width: 768px) {
  .site-name {
    font-size: 24px;
  }
  .site-logo {
    width: 194px;
  }
  .header {
    display: table;
    width: 100%;
  }
  .header-stack .header {
    display: block;
  }
  .header-logo {
    width: 100%;
    vertical-align: middle;
  }
  .header-stack .header-logo {
    display: block;
  }
  .header-nav {
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}
@media (min-width: 1024px) {
  .header-stack .header-logo {
    display: block;
    width: 100%;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}
/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  /* 固定したときの高さを保つ */
}
@media (min-width: 768px) {
  .header-logo {
    padding: 48px 0 0 0;
  }
}

.site-header {
  width: 100%;
  height: 80px;
  padding: 0 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  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;
}
@media (max-width: 767px) {
  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
  }
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  position: fixed;
  top: 20px;
  right: 15px;
  display: inline-block;
  padding: 7px 0;
  font-size: 20px;
  color: #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10000;
}
@media (min-width: 768px) {
  .nav-menu-btn {
    display: none;
  }
}
a .nav-menu-btn {
  color: #285198;
}
.nav-menu-btn:hover {
  color: #285198;
  text-decoration: none;
}
.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}
.nav-menu-btn[aria-expanded=true] {
  right: 32px;
}

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

/* モバイル時ヘッダー アイコン */
.nav-menu-action {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 30px 0 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
}
@media (max-width: 1030px) {
  .nav-menu-action {
    margin: 0 15px 0 0;
  }
}
@media (max-width: 767px) {
  .nav-menu-action {
    display: none;
  }
}

.nav-menu-action-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #333;
  text-align: center;
  font-weight: bold;
}
.nav-menu-action-item .head-contact {
  border: 2px solid #d8d8d8;
  background-color: #f6f6f6;
  border-radius: 3px;
  font-size: 20px;
  color: #333;
  line-height: 54px;
  padding: 0 36px;
  margin-right: 20px;
}
.nav-menu-action-item .head-contact:before {
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 14px;
  margin-right: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222.866%22%20height%3D%2216.405%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%203349%22%20d%3D%22M21.866%205.713v9.692H1.404v-14h20.462L11.635%209.482%201.404%201.405%22%20fill%3D%22none%22%20stroke%3D%22%233e7acb%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  margin-right: 6px;
}
.nav-menu-action-item .head-contact:hover {
  text-decoration: none;
}
.nav-menu-action-item .head-order {
  position: relative;
  background-color: #FFA700;
  border: 2px solid #FFA700;
  color: #fff;
  border-radius: 3px;
  font-size: 20px;
  line-height: 54px;
  padding: 0 36px;
}
.nav-menu-action-item .head-order .icon-order {
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 14px;
  margin-right: 6px;
  width: 28px;
  height: 28px;
  margin-top: -4px;
  margin-right: 6px;
}
.nav-menu-action-item .head-order:hover {
  text-decoration: none;
  background-color: #FFC85F;
}
/* .nav-menu-action-item .head-order:after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20id%3D%22External_Link_icon-icons.com_55915%22%20d%3D%22M12.091%2C5V6.091h3.034l-6.7%2C6.7.784.784%2C6.7-6.7V9.909H17V5H12.091ZM5%2C7.182V17h9.818V9.909L13.727%2C11v4.909H6.091V8.273H11l1.091-1.091Z%22%20transform%3D%22translate(-5%20-5)%22%20fill%3D%22%23d08508%22%2F%3E%3C%2Fsvg%3E%0A");
} */

.nav-menu-action-link {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.navbar {
  display: none;
  width: 100%;
}
.navbar.acms-admin-module-edit-wrapper {
  z-index: 1;
}
.navbar ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.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;
}

@media (min-width: 768px) {
  .header {
    height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar {
    display: inline-block;
    vertical-align: middle;
    background-color: #285198;
  }
  .navbar .acms-container > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0;
    list-style: none;
    border-right: 1px solid #3266c1;
  }
  .header-stack .navbar .acms-container > ul {
    float: none;
    width: 100%;
    table-layout: fixed;
    border-right: 1px solid #eee;
  }
  .navbar li {
    position: relative;
    color: #fff;
    border-left: 1px solid #3266c1;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    text-align: center;
    vertical-align: middle;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .navbar li span {
    display: inline-block;
    padding: 20px 10px;
    font-weight: bold;
    font-size: 18px;
  }
  .header-stack .navbar li {
    float: none;
    border-left: 1px solid #eee;
  }
  .navbar li ul {
    /* 二階層目 */
    position: absolute;
    width: auto;
    left: 5px;
    display: none;
    border-radius: 8px;
    background-color: #fff;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .navbar li li {
    margin: 0;
    width: 100%;
    white-space: nowrap;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li a {
    /* 一階層目のリンクのみ */
    padding: 0;
    color: #fff;
    -webkit-transition: border 0.3s ease-out;
    transition: border 0.3s ease-out;
    font-size: 18px;
  }
  .navbar li a:focus, .navbar li a:active {
    color: #fff;
    background: transparent;
  }
  .header-stack .navbar li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }
  .navbar li.stay a {
    /* 一階層目のリンクのみ */
  }
  .navbar li.stay a.btn-attention {
    border: 0;
  }
  .navbar li:hover {
    background-color: #183972;
  }
  .navbar li:hover ul {
    /* 二階層目 */
    z-index: 10000;
    display: block;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
    padding: 20px 30px;
  }
  .navbar li:hover a {
    /* 一階層目のリンクのみ */
  }
  .navbar li:hover a.btn-attention {
    border: 0;
  }
  .navbar li:hover li a {
    border: 0;
  }
  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    border: 0;
  }
  .navbar li li:first-child {
    border: 0;
  }
  .navbar li li:hover {
    background-color: transparent;
  }
  .navbar li li span {
    padding: 0;
    font-weight: normal;
  }
  .navbar li li a {
    margin: 0;
    padding: 10px 0;
    color: #333;
    border: 0;
  }
  .navbar li li a:before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    content: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%3Ccircle%20id%3D%22circle_1%22%20data-name%3D%22circle%201%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23285198%22%2F%3E%3Cpath%20id%3D%22path_3356%22%20data-name%3D%22path%203356%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-302.176%20-184.972)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E%0A");
  }
  .navbar li li a:hover {
    color: #333;
    border: 0;
  }
  .navbar li li a:hover span {
    text-decoration: underline;
  }
  .navbar a.btn-attention {
    /* ボタン（色付き） */
    background: #285198;
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    border: 0;
    max-width: 100%;
    width: 280px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 50px;
    text-align: center;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    border-radius: 3px;
    border: 0;
  }
  .navbar a.btn-attention:hover, .navbar a.btn-attention:visited {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    text-decoration: none;
  }
  .navbar a.btn-attention:focus, .navbar a.btn-attention:active {
    color: #fff;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .navbar a.btn-attention {
    padding: 10px 50px;
  }
}
@media (min-width: 768px) {
  .navbar a.btn-attention:hover {
    color: #fff;
    background-color: #FFA700;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA700));
    background-image: linear-gradient(to bottom, #FDD87D, #FFA700);
    border: 0;
  }
}
@media (min-width: 768px) {
  .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
    background: #EDA800;
  }
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }
  .navbar ul li a {
    font-size: 18px;
    width: 100%;
  }
}
@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: 40px;
  height: 4px;
  margin: 10px 0;
  vertical-align: middle;
  background-color: #285198;
  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: 40px;
  height: 4px;
  background-color: #285198;
  border-radius: 1px;
  -webkit-transition: 0.15s all;
  transition: 0.15s all;
  content: "";
}
.icon-toggle-menu:before {
  top: -15px;
}
.icon-toggle-menu:after {
  bottom: -15px;
}
[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
}
[aria-expanded=true] .icon-toggle-menu:before {
  width: 40px;
  -webkit-transform: translate(0, 15px) rotate(45deg);
          transform: translate(0, 15px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
  width: 40px;
  -webkit-transform: translate(0, -15px) rotate(-45deg);
          transform: translate(0, -15px) rotate(-45deg);
}

/* ナビゲーションバー */
.mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .is-locked {
    overflow: hidden;
  }
  .mobile-nav {
    background-color: rgba(0, 0, 0, 0.6);
    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: 48px;
    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-nav-inner {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    padding: 30px 0 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-navbar-list {
    margin: 0;
    padding: 0;
    line-height: 2.4;
    text-align: center;
    list-style: none;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 1px solid #D0D0D0;
  }
  .mobile-navbar-list a {
    display: block;
    color: #fff;
  }
  .mobile-navbar-list a:hover {
    background: #4170c1;
    color: #fff;
  }
  .mobile-navbar-list > li {
    background-color: #285198;
    color: #fff;
    border-top: 1px solid #D0D0D0;
  }
  .mobile-navbar-list > li > span {
    position: relative;
  }
  .mobile-navbar-list > li > span:after {
    position: absolute;
    right: 15px;
    top: calc(50% - 4px);
    width: 6px;
    height: 9px;
    display: inline-block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    width: 8px;
    height: 12px;
  }
  .mobile-navbar-list > li a {
    position: relative;
    color: #fff;
    font-size: 18px;
  }
  .mobile-navbar-list > li a:after {
    position: absolute;
    right: 15px;
    top: calc(50% - 4px);
    width: 6px;
    height: 9px;
    display: inline-block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    width: 8px;
    height: 12px;
  }
  .mobile-navbar-list > li span {
    display: block;
    padding: 13px 15px;
  }
  .mobile-navbar-list > li li {
    border-bottom: none;
    background-color: #f7f7f7;
  }
  .mobile-navbar-list > li li a {
    color: #183972;
    font-weight: normal;
  }
  .mobile-navbar-list > li li a:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23183972%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .mobile-navbar-list > li li a:hover:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
  .mobile-navbar-list a:not(.btn-attention),
.mobile-navbar-list a:not(.btn-attention):hover,
.mobile-navbar-list a:not(.btn-attention):visited,
.mobile-navbar-list a:not(.btn-attention):active,
.mobile-navbar-list a:not(.btn-attention):focus {
    text-decoration: 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-nav-footer {
    margin: 20px 0 0 0;
    padding: 0;
    list-style-type: none;
  }
  .mobile-nav-footer li {
    margin-bottom: 20px;
    text-align: center;
  }
  .mobile-nav-footer li .head-contact:after {
    width: 11px;
    height: 16px;
    top: calc(50% - 8px);
  }
  .mobile-nav-footer .head-contact {
    font-size: 24px;
    padding: 16px 50px;
  }
  .mobile-nav-footer .head-contact:before {
    display: inline-block;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    width: 26px;
    height: 18px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2222.866%22%20height%3D%2216.405%22%3E%3Cpath%20data-name%3D%22%E3%83%91%E3%82%B9%203349%22%20d%3D%22M21.866%205.713v9.692H1.404v-14h20.462L11.635%209.482%201.404%201.405%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    margin-right: 6px;
  }
  .mobile-nav-footer .head-order {
    color: #fff;
    font-weight: bold;
    line-height: 1.3;
    border: 0;
    max-width: 100%;
    width: 280px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 15px 50px;
    text-align: center;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
    border-radius: 3px;
    background-color: #ffa700;
    color: #fff;
    padding: 13px 70px;
    font-size: 28px;
  }
  .mobile-nav-footer .head-order:hover, .mobile-nav-footer .head-order:visited {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
    text-decoration: none;
  }
  .mobile-nav-footer .head-order:focus, .mobile-nav-footer .head-order:active {
    color: #fff;
  }
}
@media (max-width: 767px) and (min-width: 768px) {
  .mobile-nav-footer .head-order {
    padding: 10px 50px;
  }
}
@media (max-width: 767px) {
  .mobile-nav-footer .head-order:before {
    display: inline-block;
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    margin-right: 8px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2231.014%22%20height%3D%2231.025%22%20viewBox%3D%220%200%2031.014%2031.025%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-path%22%3E%3Crect%20width%3D%2231.014%22%20height%3D%2231.025%22%20fill%3D%22none%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22icon_108%22%20data-name%3D%22icon%20108%22%20clip-path%3D%22url(%23clip-path)%22%3E%3Cg%20id%3D%22group_3184%22%20data-name%3D%22group%203184%22%20transform%3D%22translate(3014.514%20142.509)%22%3E%3Cpath%20id%3D%22path_3350%22%20data-name%3D%22path%203350%22%20d%3D%22M39.381%2C21.894A13.615%2C13.615%2C0%2C0%2C1%2C40%2C26a14%2C14%2C0%2C1%2C1-6.253-11.666%22%20transform%3D%22translate(-3025%20-153)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20id%3D%22path_3351%22%20data-name%3D%22path%203351%22%20d%3D%22M19.75%2C24.551l4.2%2C4.2L36.631%2C16.07%22%20transform%3D%22translate(-3023.708%20-152.321)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22square%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
    margin-bottom: -3px;
  }
}
@media (max-width: 767px) {
  .mobile-nav-footer .head-order:after {
    position: absolute;
    right: 15px;
    top: calc(50% - 4px);
    width: 6px;
    height: 9px;
    display: inline-block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%225.792%22%20height%3D%228.688%22%20viewBox%3D%220%200%205.792%208.688%22%3E%0A%20%20%3Cpath%20id%3D%22link-arrow%22%20data-name%3D%22link-arrow%22%20d%3D%22M315.468%2C195.316l-3.613-4.344h-2.178l3.613%2C4.344-3.613%2C4.344h2.178Z%22%20transform%3D%22translate(-309.676%20-190.972)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  }
}
@media (max-width: 767px) {
  .mobile-nav-footer .head-order:hover {
    text-decoration: none;
    background-color: #ffc85f;
  }
}
/* ------------------------------
　　フッター
------------------------------ */
/* フッターお問い合わせ */
.contact-banner {
  background: transparent -webkit-gradient(linear, left top, right top, from(#c9e6ff), to(#89a2ce)) 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(90deg, #c9e6ff 0%, #89a2ce 100%) 0% 0% no-repeat padding-box;
  padding: 40px 0 20px;
}
.contact-banner .banner-list-item {
  display: table;
  height: 180px;
}
@media screen and (max-width: 767px) {
  .contact-banner .banner-list-item {
    width: 100%;
  }
}
.contact-banner .banner-list-item a {
  display: table-cell;
  width: 100%;
  vertical-align: middle;
  padding: 10px 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.contact-banner .banner-list-item a:hover {
  text-decoration: none;
}
.contact-banner .banner-list-item:after {
  top: calc(50% - 10px);
}
.contact-banner p {
  margin: 0;
  color: #fff;
  font-size: 16px;
}
.contact-banner .banner-title {
  font-size: 32px;
  font-weight: bold;
}
.contact-banner .banner-text {
  margin-top: 12px;
}

/* フッターナビゲーション */
.footer-navi {
  padding: 40px 0 180px;
  background-color: #285198;
}
.footer-navi .footer-navi-inner {
  font-size: 14px;
  color: #fff;
}
.footer-navi .footer-navi-inner .footer-nav-title {
  font-size: 14px;
}
.footer-navi .footer-list-group {
  margin-bottom: 30px;
  padding: 0;
}
.footer-navi .footer-list-group li {
  list-style-type: none;
  margin-bottom: 1em;
}
.footer-navi .footer-list-group a {
  position: relative;
  display: block;
  margin: 0 0 10px 0;
  padding-left: 20px;
  vertical-align: top;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  font-size: 14px;
}
.footer-navi .footer-list-group a:before {
  position: absolute;
  left: 10px;
  top: 7px;
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 3px;
  height: 5px;
  margin-right: 8px;
  display: inline-block;
  font-size: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%223%22%20height%3D%225%22%3E%3Cpath%20data-name%3D%22%E5%A4%9A%E8%A7%92%E5%BD%A2%201%22%20d%3D%22M3%202.5L0%205V0z%22%20fill%3D%22%23ddd%22%2F%3E%3C%2Fsvg%3E");
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}
/* ページの上に戻るボタン */
.page-top a:focus {
  display: block;
  border: 1px dotted #fff;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: block;
  width: 70px;
  height: 70px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../../images/marker/btn_pageTop.svg") 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 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;
  }
}
@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: 18px;
  color: #fff;
  background-color: #0c0f14;
}

.copyright-text {
  margin: 0 auto;
  font-size: 10px;
}

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

/* 共通部品 */
.large-heading {
  position: relative;
  margin: 70px 0 20px;
  padding-bottom: 5px;
  font-size: 32px;
  color: #13398a;
}
.large-heading:first-of-type {
  margin-top: 0;
}
.large-heading:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(0, #13398a), to(rgba(19, 57, 138, 0))) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(90deg, #13398a 0, rgba(19, 57, 138, 0) 100%) 0 0 no-repeat padding-box;
}

/* トップページ */
.top-technology .entry-column {
  margin-bottom: 40px;
}
.top-technology .entry-column h3 {
  margin: 0 15px 30px;
  font-size: 18px;
}
.top-technology .entry-column img {
  width: 100%;
}
@media screen and (max-width: 479px) {
  .top-technology .entry-column video {
    margin: 0 0 15px !important;
    padding: 0 15px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.top-technology .entry-column .btn-wrapper .btn {
  width: 100%;
  padding: 28px 50px;
  font-size: 20px;
}
.top-technology .entry-column [class*=acms-col] [class*=acms-col-md-4] img {
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .top-technology .entry-column .btn-wrapper {
    width: 100%;
  }
}

.top-products {
  max-width: 920px;
  margin: 40px auto;
  background-size: cover;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top-products a {
  display: block;
  color: #fff;
  padding: 30px 25px;
  background: url(../../images/bg_products_sp.jpg) center no-repeat;
  background-size: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-products a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.top-products h2,
.top-products p {
  margin: 0;
  line-height: 1.7;
}
.top-products .top-products-heading {
  margin-bottom: 30px;
  position: relative;
}
.top-products .top-products-heading:after {
  display: inline-block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent -webkit-gradient(linear, left top, right top, color-stop(0, #ffffff), to(rgba(19, 57, 138, 0))) 0 0 no-repeat padding-box;
  background: transparent linear-gradient(90deg, #ffffff 0, rgba(19, 57, 138, 0) 100%) 0 0 no-repeat padding-box;
}
.top-products .top-products-text {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 16px;
}
.top-products .btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.top-products .btn {
  width: 280px;
  background-color: #3689d3;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .top-products a {
    background: url(../../images/bg_products.jpg) center no-repeat;
    text-decoration: none;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-products a .top-products-heading {
    margin-bottom: 20px;
  }
  .top-products a .top-products-text {
    margin-bottom: 0;
    font-size: 18px;
  }
  .top-products .btn {
    width: 300px;
  }
}
/* サマリー */
.category-label {
  display: inline-block;
  padding: 2px 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f9f9f9));
  background: linear-gradient(#fff, #f9f9f9);
  color: #333;
  border: 1px solid #dddddd;
  border-radius: 2px;
  font-size: 14px;
  margin-left: 8px;
  color: #333;
}
.category-label:link, .category-label:visited, .category-label:hover {
  color: #333;
  text-decoration: none;
}

/* 製品一覧 */
.custom-kits {
  line-height: 1.7;
  margin-bottom: 110px;
}
@media screen and (min-width: 768px) {
  .custom-kits {
    margin-bottom: 140px;
  }
}

/* 製品アウトライン */
.products-outline .module-header {
  margin-bottom: 30px;
}
.products-outline .products-outline-inner {
  margin-bottom: 40px;
}
.products-outline .products-outline-image img {
  width: 100%;
  height: auto;
}
.products-outline .products-outline-text .product-name {
  margin: 0 0 30px;
  font-size: 28px;
}
.products-outline .products-outline-text .catalog-no {
  margin: 0 0 10px;
  font-weight: normal;
  font-size: 24px;
  color: #285198;
}
.products-outline .products-outline-text table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}
.products-outline .products-outline-text table th,
.products-outline .products-outline-text table td {
  text-align: center;
  padding: 10px;
  border: 1px solid #d8d8d8;
}
.products-outline .products-outline-text table th {
  font-weight: normal;
  background-color: #f0f0f0;
}
.products-outline .products-outline-text table th:nth-child(2) {
  width: 8em;
}
.products-outline .contact-banner {
  margin-bottom: 90px;
  padding: 30px 25px;
  background: #d8e4ef;
}

@media screen and (min-width: 768px) {
  .products-outline .products-outline-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .products-outline .products-outline-image {
    width: 52%;
  }
  .products-outline .products-outline-text {
    width: calc(48% - 30px);
  }
  .products-outline .contact-banner {
    padding: 40px 40px 20px;
  }
}
/* 記事（News・Resource) */
.entry-column.with-date h2 {
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-size: 28px;
  line-height: 1.7;
  color: #333;
}
.entry-column.with-date h2:after {
  content: none;
}
.entry-column.with-date .contact-banner {
  margin: 40px 0;
  padding: 0;
  background-image: none;
  background-color: #d8e4ef;
}
.entry-column.with-date .contact-banner ul {
  margin: 0;
  padding: 25px 25px 5px;
}
.entry-column.with-date .contact-banner ul:before, .entry-column.with-date .contact-banner ul:after {
  content: none;
}

@media screen and (min-width: 768px) {
  .entry-column.with-date .contact-banner {
    margin: 60px 0;
  }
  .entry-column.with-date .contact-banner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 30px 20px;
  }
  .entry-column.with-date .contact-banner ul li {
    width: calc(50% - 10px);
  }
}
/* テーブル（線がないもの） */
table.noline-table {
  width: auto;
  border-bottom: none;
  margin-left: 1.25em;
}
table.noline-table tr:last-child {
  border-top: 1px solid #333;
}
table.noline-table th,
table.noline-table td {
  border: none;
  padding: 10px 20px;
  background: none;
  display: table-cell;
  text-align: left;
}

/* テーブル（3列以上） */
/*
 * jQuery Basic Table
 * Author: Jerry Low
 */
table.bt {
  border-bottom: none;
}

table.bt thead,
table.bt tbody th {
  display: none;
}

table.bt tr {
  display: block;
  margin-bottom: 30px;
  border-bottom: 1px solid #d8d8d8;
}
table.bt tr:first-child {
  display: none;
}

table.bt tfoot th,
table.bt tfoot td,
table.bt tbody td {
  display: block;
  vertical-align: top;
  font-weight: normal;
  padding: 0;
}

table.bt tfoot th::before,
table.bt tfoot td::before,
table.bt tbody td::before {
  padding: 10px;
  content: attr(data-th) "";
  display: inline-block;
  -ms-flex-shrink: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-weight: bold;
  width: 100%;
  background-color: #f0f0f0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table.bt tfoot th.bt-hide,
table.bt tfoot td.bt-hide,
table.bt tbody td.bt-hide {
  display: none;
}

table.bt tfoot th .bt-content,
table.bt tfoot td .bt-content,
table.bt tbody td .bt-content {
  vertical-align: top;
  display: block;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bt-wrapper.active {
  max-height: 310px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

table.bt.bt--no-header tfoot td::before,
table.bt.bt--no-header tbody td::before {
  display: none;
}

/* よくある質問 */
.faq {
  margin-top: 110px;
  margin-bottom: 30px;
}
.faq dl {
  margin-top: 0;
  border-bottom: 1px solid #C2C2C2;
}
.faq dt {
  position: relative;
  margin-bottom: 0;
  border-top: 1px solid #C2C2C2;
}
.faq dt:first-child {
  margin-top: 0;
  border-top: none;
}
.faq dt a {
  padding-top: 25px;
  display: block;
  position: relative;
  text-decoration: none;
  padding: 25px 30px;
  padding-bottom: 25px;
}
.faq dt a:before, .faq dt a:after {
  position: absolute;
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
}
.faq dt a:before {
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h20v20H0z%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20data-name%3D%22grid%20109%22%20clip-path%3D%22url(%23a)%22%3E%3Cg%20data-name%3D%22group%203269%22%20transform%3D%22translate(-15.5%20-10548)%22%3E%3Ccircle%20data-name%3D%22rect%206%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(15.5%2010548)%22%20fill%3D%22%23707070%22%2F%3E%3Cpath%20data-name%3D%22path%203360%22%20d%3D%22M30.691%2010566.673a6.568%206.568%200%200%201-.868.157%207.921%207.921%200%200%201-.875.048%202.934%202.934%200%200%201-2.047-.7%202.764%202.764%200%200%201-.839-2q-.176.029-.341.04t-.321.009a5.527%205.527%200%200%201-2.088-.381%204.321%204.321%200%200%201-1.6-1.106%204.959%204.959%200%200%201-1.012-1.78%207.536%207.536%200%200%201-.355-2.41%207.566%207.566%200%200%201%20.352-2.391%205.092%205.092%200%200%201%201.022-1.812%204.206%204.206%200%200%201%201.6-1.1%205.579%205.579%200%200%201%202.081-.38%205.486%205.486%200%200%201%202.106.385%204.387%204.387%200%200%201%201.589%201.095%204.966%204.966%200%200%201%201.022%201.794%207.579%207.579%200%200%201%20.355%202.41%206.474%206.474%200%200%201-.817%203.369%204.428%204.428%200%200%201-2.194%201.919%202.165%202.165%200%200%200%20.4%201.3%201.621%201.621%200%200%200%201.329.461%203.378%203.378%200%200%200%20.714-.092%203.894%203.894%200%200%200%20.59-.165h.2zm-1.728-8.122a5.019%205.019%200%200%200-.952-3.278%203.191%203.191%200%200%200-2.6-1.154%203.2%203.2%200%200%200-2.611%201.154%205.033%205.033%200%200%200-.948%203.278%204.943%204.943%200%200%200%20.967%203.285%203.228%203.228%200%200%200%202.592%201.139%203.217%203.217%200%200%200%202.589-1.139%204.956%204.956%200%200%200%20.963-3.285z%22%20fill%3D%22%23f8f9fa%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.faq dt a:after {
  right: 15px;
  top: calc(50% - 4px);
  width: 16px;
  height: 9px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217.414%22%20height%3D%2210.121%22%20viewBox%3D%220%200%2017.414%2010.121%22%3E%0A%20%20%3Cpath%20id%3D%22arrow%22%20data-name%3D%22arrow%22%20d%3D%22M791.89-139.422l8%2C8-8%2C8%22%20transform%3D%22translate(-122.715%20-791.183)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%233689d3%22%20stroke-width%3D%222%22%2F%3E%0A%3C%2Fsvg%3E%0A");
}
.faq dt a:hover {
  text-decoration: none;
}
.faq dt[aria-expanded=true] a:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.faq dd {
  position: relative;
  margin: 0;
  padding-left: 30px;
  padding-bottom: 40px;
  line-height: 1.3;
}
.faq dd:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cg%20data-name%3D%22group%203270%22%20transform%3D%22translate(-15.5%20-10588)%22%3E%3Ccircle%20data-name%3D%22rect%206%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20transform%3D%22translate(15.5%2010588)%22%20fill%3D%22%23285198%22%2F%3E%3Ctext%20transform%3D%22translate(25.5%2010604)%22%20fill%3D%22%23f8f9fa%22%20font-size%3D%2215%22%20font-family%3D%22Verdana%22%3E%3Ctspan%20x%3D%22-5.127%22%20y%3D%220%22%3EA%3C%2Ftspan%3E%3C%2Ftext%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* パートナーリンク */
.partners {
  margin-top: 60px;
}

.partners-inner {
  position: relative;
  border: 1px solid #d0d0d0;
  margin-bottom: 20px;
  padding: 20px 50px 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.partners-inner.bl-hover {
  background-color: #f6f6f6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.partners-inner:after {
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin-right: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22M11.818%200v1.818h5.057L5.71%2012.983l1.307%201.307L18.182%203.125v5.057H20V0h-8.182zM0%203.636V20h16.364V8.182L14.545%2010v8.182H1.818V5.455H10l1.818-1.818z%22%20fill%3D%22%233689d3%22%2F%3E%3C%2Fsvg%3E");
  position: absolute;
  top: 20px;
  right: 20px;
}
.partners-inner a {
  text-decoration: none;
}
.partners-inner .partner-name {
  font-size: 24px;
  margin: 0 0 10px;
}
.partners-inner .partner-description {
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .partners {
    margin-top: 100px;
  }
  .partners-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .partners-inner {
    width: calc(50% - 10px);
  }
}
i.icon-order {
  display: inline-block;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  vertical-align: middle;
  width: 28px;
  height: 28px;
  margin-top: -4px;
  margin-right: 6px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2231.014%22%20height%3D%2231.025%22%20viewBox%3D%220%200%2031.014%2031.025%22%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip-path%22%3E%3Crect%20width%3D%2231.014%22%20height%3D%2231.025%22%20fill%3D%22none%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3Cg%20id%3D%22icon_108%22%20data-name%3D%22icon%20108%22%20clip-path%3D%22url(%23clip-path)%22%3E%3Cg%20id%3D%22group_3184%22%20data-name%3D%22group%203184%22%20transform%3D%22translate(3014.514%20142.509)%22%3E%3Cpath%20id%3D%22path_3350%22%20data-name%3D%22path%203350%22%20d%3D%22M39.381%2C21.894A13.615%2C13.615%2C0%2C0%2C1%2C40%2C26a14%2C14%2C0%2C1%2C1-6.253-11.666%22%20transform%3D%22translate(-3025%20-153)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20id%3D%22path_3351%22%20data-name%3D%22path%203351%22%20d%3D%22M19.75%2C24.551l4.2%2C4.2L36.631%2C16.07%22%20transform%3D%22translate(-3023.708%20-152.321)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22square%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E%0A");
}

/* 管理画面 */
#adminBox {
  margin-top: 20px;
}