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

p {
  margin: 0;
  line-height: 1.4;
  font-size: 16px;
}

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

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

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

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

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

.acms-container .acms-container {
  padding: 0;
}

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

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

.max-container .acms-container {
  padding: 0;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

.js .js-animation .section-heading,
.js .js-animation .entry-heading-center {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity .2s ease-out, transform .4s ease-out;
}

.js .js-animation .module-group-list,
.js .js-animation .entry-column,
.js .js-animation .module-section,
.js .js-animation .suggest-center-box {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity .2s ease-out .4s, transform .4s ease-out .4s;
}

.js .js-animation .main-slider-text-wrap {
  opacity: 0;
  transform: translate(0, 20px);
  transition: opacity .2s ease-out .6s, transform .4s ease-out .6s;
}

.js-animation.is-show .section-heading,
.js-animation.is-show .entry-heading-center {
  opacity: 1;
  transform: translate(0);
}

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

.js-animation.is-show .main-slider-text-wrap {
  opacity: 1;
  transform: translate(0);
}

/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0 -10px 10px;
  padding: 0;
  list-style: none;
}

.banner a {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}

.banner a:hover {
  opacity: 0.75;
}

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

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

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #666;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 8px 0;
}

.btn:hover, .btn:visited {
  color: #FFF;
  text-decoration: none;
}

.btn:focus, .btn:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}

.btn:active, .btn:focus {
  background: #444;
}

/* ボタン　色付き */
.btn-attention {
  background: #00225E;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 8px 0;
}

.btn-attention:hover, .btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention:focus, .btn-attention:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention:hover {
  color: #FFF;
  background-color: rgba(0, 68, 188, 0.78);
  background-image: linear-gradient(to bottom, #00225E, rgba(0, 68, 188, 0.78));
}

.btn-attention:active, .btn-attention:focus {
  background: #00225E;
}

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

.btn-large:hover, .btn-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-large:focus, .btn-large:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-large:hover {
  background: #444;
}

.btn-large:active, .btn-large:focus {
  background: #444;
}

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

.btn-attention-large:hover, .btn-attention-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention-large:focus, .btn-attention-large:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-large:hover {
  background: rgba(0, 68, 188, 0.78);
}

.btn-attention-large:active, .btn-attention-large:focus {
  background: #00225E;
}

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

.btn-block-large:hover, .btn-block-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-block-large:focus, .btn-block-large:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-block-large:hover {
  background: #444;
}

.btn-block-large:active, .btn-block-large:focus {
  background: #444;
}

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

.btn-attention-block-large:hover, .btn-attention-block-large:visited {
  color: #FFF;
  text-decoration: none;
}

.btn-attention-block-large:focus, .btn-attention-block-large:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.btn-attention-block-large:hover {
  background: rgba(0, 68, 188, 0.78);
}

.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: #00225E;
}

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

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

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

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

.btn-border {
  display: inline-block;
  padding: 7px 10px;
  color: #333;
  border: 1px solid #CCC;
  border-radius: 4px;
  font-size: 16px;
}

.btn-border [class*='acms-icon-'] {
  color: #CCC;
  font-size: 14px;
}

.btn-border:hover {
  text-decoration: none;
}

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

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

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

.card-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
}

.card-link:hover {
  text-decoration: none;
  background: #EEE;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.card-link:hover, .card-link:visited, .card-link:active, .card-link:focus {
  color: #333;
}

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

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

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

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

.headline-link {
  color: #333;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: #333;
}

.headline-link:hover {
  padding: 10px;
  background: #F1F1F1;
}

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

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

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

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

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

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

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

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

.info-bar-link {
  color: #FFF;
  padding: 5px 0;
}

.info-bar-link:link, .info-bar-link:visited, .info-bar-link:hover, .info-bar-link:active, .info-bar-link:focus {
  color: #FFF;
}

.info-bar-link:hover {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

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

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 10px 20px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-item:hover {
    padding: 10px 10px 10px 20px;
    -webkit-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }
  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 10px 30px 10px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-label-parent:hover {
    padding: 10px 30px 10px 20px;
  }
}

/* 検索結果 */
.list-results-wrap {
  margin: 15px 0 15px 0;
  padding: 10px;
  border: 1px solid #CCC;
}

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .main-visual {
    height: 420px;
    padding: 50px 0;
  }
  .main-visual-title {
    margin: 0 0 30px 0;
    font-size: 30px;
  }
  .main-visual-text {
    margin: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .main-visual-center-btn .btn-attention-block-large {
    padding: 15px 15px;
    font-size: 16px;
  }
}

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

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}

.module-header + .thumbnail,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .card,
.module-header + .search-form,
.module-header + .banner {
  margin-top: 10px;
}

.module-heading {
  margin: 0;
  font-size: 18px;
}

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

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.page-title {
  margin: 0 0 10px 0;
  font-size: 56px;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}

.page-title a {
  color: #FFF;
}

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

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

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  margin: 0 -5px 50px -5px;
  padding: 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline-block;
  margin: 0 5px;
}

.pager li.cur {
  /* 現在いる位置 */
  padding: 5px 20px;
  color: #FFF;
  background: #767676;
  border-radius: 3px;
}

.pager-link {
  display: block;
  padding: 5px 20px;
  color: #333;
  background: #E5E5E5;
  border-radius: 3px;
}

.pager-link:visited, .pager-link:focus, .pager-link:active {
  color: #333;
}

.pager-link:hover {
  color: #FFF;
  text-decoration: none;
  background: #333;
}

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

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

@media screen and (min-width: 768px) {
  .pager-link {
    padding: 5px 10px;
  }
  .pager li.cur {
    /* 現在いる位置 */
    padding: 5px 10px;
  }
}

/* 前後リンク */
.serial-nav {
  margin: -25px 0 60px 0;
  padding: 0;
  list-style: none;
}

.serial-nav .serial-nav-item {
  display: block;
  float: none;
}

.serial-nav .serial-nav-item-prev {
  text-align: left;
}

.serial-nav .serial-nav-item-next {
  text-align: right;
}

.serial-nav a {
  display: block;
  padding: 25px 0;
  color: #333;
}

.serial-nav a:hover, .serial-nav a:visited, .serial-nav a:focus, .serial-nav a:active {
  color: inherit;
  text-decoration: none;
}

.serial-nav a:hover {
  background: #E5E5E5;
}

@media screen and (min-width: 768px) {
  .serial-nav {
    margin: 0 0 60px 0;
    border: 0;
  }
  .serial-nav .serial-nav-item-prev {
    float: left;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    display: inline;
    border: 0;
  }
  .serial-nav a:hover {
    text-decoration: underline;
    background: 0;
  }
}

/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #FFF;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  filter: none;
  /* IEでのグラデーションを上書き */
  font-size: 16px;
}

.search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
  background: #666;
}

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

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

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

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

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

/* 見出し */
.section-heading {
  font-size: 24px;
}

.section-heading a {
  color: #333;
}

@media screen and (min-width: 768px) {
  /* 背景色 */
  .section-bg {
    padding: 80px 0;
  }
  .section-space {
    padding: 80px 0;
  }
  /* 見出し */
  .section-heading {
    font-size: 28px;
  }
}

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

.slick-slider img {
  margin: 0 auto;
}

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

.slide {
  position: relative;
}

.top_img {
  position: relative;
  width: 100%;
  min-height: 300px;
  max-height: 800px;
  overflow: hidden;
}

.top_img .top_imgtitle {
  position: absolute;
  top: 30%;
  bottom: auto;
  right: 15%;
  left: auto;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.top_img .top_imgtitle img {
  max-width: 490px;
  width: 100%;
  height: auto;
}

.slide {
  height: 800px;
  width: 100%;
  transition: transform 4s linear;
  transform: scale(1.4);
}

.zooming .slide {
  transform: scale(1);
}

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

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

.top_img02 .top_imgtitle {
  position: absolute;
  top: auto;
  bottom: 0;
  right: auto;
  left: 36%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

.top_img03 .top_imgtitle,
.top_img04 .top_imgtitle {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}

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

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

@media screen and (max-width: 768px) {
  .slide {
    height: 80vh;
    width: 100%;
  }
  .top_img01 .top_imgtitle,
  .top_img02 .top_imgtitle,
  .top_img03 .top_imgtitle,
  .top_img04 .top_imgtitle {
    width: 80%;
    top: 50%;
    bottom: auto;
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
  }
  .top_img01 .slide {
    background: url("../images/top_sp_img01.jpg") no-repeat center center;
    background-size: cover;
  }
  .top_img02 .slide {
    background: url("../images/top_sp_img02.jpg") no-repeat center center;
    background-size: cover;
  }
  .top_img03 .slide {
    background: url("../images/top_sp_img03.jpg") no-repeat center center;
    background-size: cover;
  }
  .top_img04 .slide {
    background: url("../images/top_sp_img04.jpg") no-repeat center center;
    background-size: cover;
  }
}

/* ------------------------------
　　提案エリア
------------------------------ */
/* お問い合わせ提案エリア */
.suggest-box {
  background: #DDD;
}

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

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

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

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

.suggest-tel a {
  color: inherit;
}

.suggest-btn {
  margin: 0;
}

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

/* お問い合わせ提案エリア 中央寄せ */
.suggest-center-box {
  padding: 20px 0;
}

.suggest-center-item + .suggest-center-item {
  margin: 50px 0 0 0;
}

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

.suggest-center-tel {
  margin: 0;
  color: #C38A00;
  font-weight: bold;
  font-size: 34px;
}

.suggest-center-tel a {
  color: #C38A00;
}

@media screen and (min-width: 768px) {
  .suggest-center-box {
    padding: 50px 0;
  }
}

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

.summary-default:before, .summary-default:after {
  display: table;
  content: " ";
}

.summary-default:after {
  clear: both;
}

.summary-default.slick-initialized {
  margin-right: -10px;
  margin-left: -10px;
  overflow: hidden;
  border: 0;
}

.summary-default .slick-list {
  padding: 0 0 0 20px;
  overflow: inherit;
}

.summary-default .slick-dots {
  margin: 0;
}

.summary-default .slick-dots button {
  background: #E5E5E5;
}

.summary-default .slick-dots .slick-active button {
  background: #00225E;
}

.summary-default-item {
  display: block;
  padding: 0 10px;
  color: #333;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}

.acms-entry .summary-default-item {
  padding: 10px;
}

.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
}

.summary-default-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
  transition: background .2s;
}

.summary-default-link:hover, .summary-default-link:visited, .summary-default-link:active, .summary-default-link:focus {
  color: #333;
}

.summary-default-link:hover {
  text-decoration: none;
  background: #F1F1F1;
}

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

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

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

/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

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

@media screen and (max-width: 767px) {
  .thumbnail-row .thumbnail-item {
    padding-right: 5px;
    padding-left: 5px;
  }
}

.thumbnail-link {
  display: block;
  color: #333;
  transition: opacity .2s;
}

.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.75;
}

.thumbnail-link:visited {
  color: #333;
}

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

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

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

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  margin: 0 auto 30px;
  padding: 10px 0;
  max-width: 820px;
  width: 100%;
  color: #00225E;
  font-size: 14px;
}

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

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

.topicpath-item:first-child {
  padding: 0 10px 0 0;
  background: 0;
}

.topicpath-link {
  color: #000;
  font-size: 14px;
}

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

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

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

/* ------------------------------
 テキストユニットの設定
------------------------------ */
.entry-column h2 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h3 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h4 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h5 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column h6 {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column dl {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column p {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-column blockquote {
  margin: 0 0 20px 0;
  padding: 10px 20px;
  border-left: solid 5px #ccc;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 画像・メディア・画像URLの共通設定 */
[class*="column-image"],
[class*="column-media"],
[class*="column-eximage"] {
  display: block;
}

[class*="column-image"].caption,
[class*="column-media"].caption,
[class*="column-eximage"].caption {
  margin-bottom: 10px;
}

[class*="column-image"] a,
[class*="column-media"] a,
[class*="column-eximage"] a {
  display: block;
}

[class*="column-image"] img,
[class*="column-media"] img,
[class*="column-eximage"] img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

[class*="column-image"] .caption,
[class*="column-media"] .caption,
[class*="column-eximage"] .caption {
  margin: 5px 0 0 0;
}

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

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

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

[class*="column-map"] img,
[class*="column-yolp"] img {
  width: auto;
  height: auto;
}

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

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

[class*="column-quote"] {
  /* 引用ユニット画像 */
  /* 引用ユニットテキスト */
}

[class*="column-quote"] blockquote {
  padding: 20px 10px 20px 20px;
}

[class*="column-quote"] .quoteImageContainer {
  position: relative;
  float: left;
  max-width: 154px;
  margin-right: 25px;
}

[class*="column-quote"] .quoteImage {
  display: block;
  max-width: 100%;
  height: auto;
}

[class*="column-quote"] .quoteTitle {
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.4;
  font-size: 18px;
}

[class*="column-quote"] .quoteTitleLink {
  color: #006cd8;
}

[class*="column-quote"] .quoteSiteName {
  margin: 0 0 10px 0;
  padding: 0;
  color: #666;
  font-size: 11px;
}

[class*="column-quote"] .quoteDescription {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  font-size: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: 10px;
  margin-left: 10px;
}

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

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

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

.column-youtube iframe,
.column-youtube object,
.column-youtube embed,
.column-iframe iframe,
.column-iframe object,
.column-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.highlight2 {
  background-color: #a0FFFF;
}

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

.highlight4 {
  background-color: #FF9999;
}

.highlight5 {
  background-color: #FF66FF;
}

.highlight6 {
  background-color: #880000;
}

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

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

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

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

/* タイトル */
.entry-title {
  margin: 10px 0;
}

.entry-title a {
  color: #333;
}

.acms-entry h2 .entry-title {
  padding: 0;
}

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

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

/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}

.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 h2,
h2.entry {
  position: relative;
  margin: 0 10px 30px 10px;
  padding: 5px 10px;
  font-size: 25px;
  color: #000;
  border-left: 7px solid #00225E;
}

.entry-column h2::after,
h2.entry::after {
  content: '';
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #E6E6E6;
  position: absolute;
  bottom: -10px;
  left: -7px;
}

.entry-column h2.module-heading,
h2.entry.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}

.entry-column h2.entry-heading-center,
h2.entry.entry-heading-center {
  position: relative;
  margin: 20px 0 25px 0;
  font-size: 16px;
  text-align: center;
  border: 0;
  color: #333;
}

.entry-column h2.entry-heading-center:before,
h2.entry.entry-heading-center:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: #999;
}

.entry-column h3,
h3.entry {
  margin: 0 0 20px;
  padding: 15px 15px;
  font-size: 20px;
  color: #fff;
  background: #00225E;
}

h3.function {
  padding: 10px 0 0;
  text-align: center;
  font-size: 28px;
  background-color: transparent;
  color: #000;
}

.entry-column h4,
h4.entry {
  margin: 0 10px 20px 10px;
  font-size: 18px;
  color: #333;
}

@media screen and (min-width: 768px) {
  .entry-column h2.entry-heading-center {
    margin: 0 20px 35px 0;
    font-size: 22px;
  }
  .entry-column h2.entry-heading-center:before {
    bottom: -15px;
  }
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 50px;
  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-column p.entry-lead-text {
  margin-bottom: 25px;
  font-size: 20px;
  text-align: center;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  .entry-column p.entry-lead-text {
    margin: 0 0 40px 0;
    font-size: 30px;
  }
}

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

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

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

/* テーブル */
.entry-column {
  /* ------------------------------
  // 追加のテーブル　table_r
------------------------------ */
}

.entry-column table {
  width: 100%;
  border-collapse: collapse;
}

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

.entry-column .acms-table-responsive {
  border-top: 0;
  border-bottom: 0;
}

.entry-column .acms-table-responsive th,
.entry-column .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}

.entry-column .acms-table-responsive table {
  margin: 0;
}

.entry-column th {
  background-color: #F2F3F4;
}

.entry-column .entry-custom-table {
  margin-bottom: 25px;
}

.entry-column .table_r table {
  width: 100%;
  border-collapse: collapse;
}

.entry-column .table_r table th,
.entry-column .table_r table td {
  padding: 8px 10px;
  border: solid 1px #707070;
}

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

@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-bottom: 1px solid #E6E6E6;
  }
  .entry-column th {
    background: inherit;
  }
}

@media screen and (max-width: 768px) {
  .entry-column .table_r table th {
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    border-right: none;
    border-left: none;
  }
  .entry-column .table_r table td {
    border: none;
  }
}

/* リスト */
.entry-column ul {
  margin: 0 10px 30px 10px;
  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 10px 30px 10px;
  padding: 0 0 0 2em;
}

.entry-column ol li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 定義リスト */
.entry-column dl {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 16px;
  line-height: 1.5;
}

.entry-column dt {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}

.entry-column dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

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

.entry-column .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #D0D0D0;
}

.entry-column .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media screen and (min-width: 480px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-column .column-quote-auto blockquote {
    padding: 15px;
  }
}

/* ソースコード */
.entry-column pre {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 50px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
}

.entry-column pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}

.entry-column pre ol li {
  line-height: 1.5;
}

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

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

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

[class*="column-media-"] a,
[class*="column-image-"] a {
  transition: opacity .2s;
}

[class*="column-media-"] a:hover,
[class*="column-image-"] a:hover {
  opacity: .8;
}

/* ユニットグループ */
.ug-bg-color {
  margin: 0 10px 25px 10px;
  padding: 20px 10px;
  background: #F5F5F5;
  overflow: hidden;
}

.ug-bg-color *:last-child {
  margin-bottom: 0;
}

.ug-bg-color h2 {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}

.ug-bg-color h3,
.ug-bg-color h4 {
  margin-bottom: 10px;
}

@media screen and (min-width: 480px) {
  .ug-bg-color {
    padding: 25px 15px;
  }
}

/* スタッフ紹介 */
@media screen and (min-width: 768px) {
  .entry-column .staff-item {
    width: 25%;
  }
  .entry-column .staff-body {
    margin: 0;
  }
}

/* 動的フォーム */
.entry-column ul.contact-form {
  margin: 0;
  padding: 0;
}

.entry-column ul.contact-form li {
  margin: 0;
}

.entry-column tr.contact-form-group:nth-child(odd) {
  background: inherit;
}

.entry-column .contact-form th,
.entry-column .contact-form td {
  background: inherit;
  border: 0;
}

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

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

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

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

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

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

/* SNSシェア */
.share-wrapper {
  display: flex;
  align-items: center;
}

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

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

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

.share-item {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: top;
}

.share-item a {
  color: #999;
  text-decoration: none;
}

.share-item [class*='acms-icon'] {
  font-size: 22px;
  vertical-align: middle;
}

.share-item .share-item-facebook {
  /* Facebook */
  position: relative;
  color: #1877f2;
  line-height: 1.2;
}

.share-item .share-item-facebook:before {
  vertical-align: middle;
}

.share-item .share-item-facebook:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}

.share-item .share-item-twitter {
  /* Twitter */
  position: relative;
  color: #55ACEE;
  line-height: 1.2;
}

.share-item .share-item-twitter:before {
  vertical-align: middle;
}

.share-item .share-item-twitter:focus:before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  border: 1px dotted #333;
  content: "";
}

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

.continue-link img {
  margin-top: -3px;
  padding: 0 4px 0 20px;
  width: 20px;
  vertical-align: middle;
  transition: all 300ms 0s ease;
}

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  background: #00225E;
  vertical-align: middle;
}

.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: rgba(0, 68, 188, 0.78);
}

.continue-link a:hover > img {
  transform: translateX(4px);
  transition: all 300ms 0s ease;
}

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

.acms-grid,
.acms-grid-r {
  margin: 0;
}

/* 定義リスト */
.entry-column dl.side dt {
  display: inline-block;
  width: 14%;
}

.entry-column dl.side dd {
  display: inline-block;
  width: 85%;
}

@media screen and (max-width: 768px) {
  .entry-column dl.side dt {
    width: 100%;
  }
  .entry-column dl.side dd {
    width: 100%;
  }
}

p.boldcenter {
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 120%;
}

p.center {
  text-align: center;
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
  /* ボタン内のアイコン */
}

.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 8px 0;
}

.entry-column .entry-btn-default:hover, .entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  color: #FFF;
  text-decoration: none;
}

.entry-column .entry-btn-default:focus, .entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}

.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #444;
}

.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #00225E;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 8px 0;
}

.entry-column .entry-btn-attention:hover, .entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}

.entry-column .entry-btn-attention:focus, .entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
  color: #FFF;
  box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
}

.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: rgba(0, 68, 188, 0.78);
  background-image: linear-gradient(to bottom, #00225E, rgba(0, 68, 188, 0.78));
}

.entry-column .entry-btn-attention:active, .entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #00225E;
}

.entry-column .entry-btn-icon-before,
.entryFormLiteEditor .entry-btn-icon-before {
  margin: 0 10px 0 0;
}

.entry-column .entry-btn-icon-after,
.entryFormLiteEditor .entry-btn-icon-after {
  margin: 0 0 0 10px;
}

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

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

.field-table-inner {
  width: 100%;
}

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

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

.main:after {
  clear: both;
}

.main-inner {
  width: 100%;
  max-width: 820px;
}

.main-inner.is-space-left {
  float: right;
}

.main-inner.is-space-right {
  float: left;
}

.main-inner.is-space-center {
  margin: 0 auto;
}

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

/* ------------------------------
　　トップページ　feature
------------------------------ */
section.top_feature_wrap {
  padding-bottom: 30px;
}

.top_feature_textbox p:nth-of-type(1) {
  font-size: 94px;
  font-weight: 600;
  color: #DDD;
  font-family: 'Poppins';
}

.top_feature_textbox p:nth-of-type(2) {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 30px;
}

.top_feature_textbox p:nth-of-type(3) {
  font-size: 18px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .top_feature_textbox p:nth-of-type(1) {
    font-size: 70px;
  }
  .top_feature_textbox p:nth-of-type(2) {
    font-size: 29px;
  }
  .top_feature_textbox p:nth-of-type(3) {
    font-size: 16px;
  }
}

/* ------------------------------
　　トップページ　紹介
------------------------------ */
section.intro {
  margin-bottom: 80px;
}

section.intro .intro_wrap .intro_wrap_inner {
  position: relative;
  margin: 30px auto;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

section.intro .technology_wrap .technology_wrap_inner .slit_img::before {
  background: url("../images/top_technology.jpg") no-repeat center center;
  background-size: cover;
}

section.intro .equipment_wrap .equipment_wrap_inner .slit_img_sec::before {
  background: url("../images/top_equipment.jpg") no-repeat center center;
  background-size: cover;
}

section.intro .mind_wrap .mind_wrap_inner .slit_img::before {
  background: url("../images/top_mind.jpg") no-repeat center center;
  background-size: cover;
}

.slit_img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(50% + 100px);
  height: 100%;
  transform-origin: top left;
  transform: skewX(-15deg);
}

.slit_img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform-origin: top left;
  transform: skew(15deg);
}

.slit_img_sec {
  left: auto;
  right: 0;
  transform-origin: bottom right;
}

.slit_img_sec::before {
  transform-origin: bottom right;
}

.slit_text {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(50% + 50px);
  height: 100%;
  background-color: #F0F0F0;
  z-index: 1;
  transform-origin: bottom right;
  transform: skew(-15deg);
}

.slit_text .sulit_text_box {
  margin: 0 auto 0 0;
  padding: 50px 0 0 50px;
  width: calc(90% - 50px);
  height: 100%;
  transform: skew(15deg);
}

.slit_text .sulit_text_box p {
  margin: 0;
}

.slit_text .sulit_text_box p:nth-of-type(1) {
  font-size: 30px;
  color: #808080;
}

.slit_text .sulit_text_box p:nth-of-type(2) {
  font-size: 70px;
  color: #00225E;
  font-weight: 600;
  font-family: 'Poppins';
}

.slit_text .sulit_text_box p:nth-of-type(3) {
  font-size: 25px;
  font-family: 500;
}

.slit_text .sulit_text_box p:nth-of-type(4) {
  padding-top: 20px;
  font-size: 13px;
}

.slit_text_sec {
  right: auto;
  left: 0;
  transform-origin: top left;
}

.slit_text_sec .sulit_text_box {
  margin: 0 0 0 auto;
  padding: 50px 50px 0 0;
  width: calc(87% - 50px);
}

@media screen and (max-width: 1024px) {
  .slit_img {
    width: 100%;
    transform: skew(0);
  }
  .slit_img::before {
    transform: skew(0);
  }
  .slit_text {
    width: 100%;
    background-color: rgba(0, 68, 188, 0.7);
    transform: skew(0);
  }
  .slit_text .sulit_text_box {
    margin: 0 auto;
    padding: 50px 0;
    width: 85%;
    transform: skew(0);
    color: #fff;
  }
  .slit_text .sulit_text_box p:nth-of-type(1) {
    font-size: 22px;
    color: #fff;
  }
  .slit_text .sulit_text_box p:nth-of-type(2) {
    font-size: 50px;
    color: #fff;
  }
  .slit_text .sulit_text_box p:nth-of-type(3) {
    font-size: 20px;
  }
  .slit_text .sulit_text_box p:nth-of-type(4) {
    font-size: 13px;
  }
  .slit_text_sec .sulit_text_box {
    margin: 0 auto;
    padding: 50px 0;
    width: 85%;
  }
}

/* ------------------------------
　　トップページ　製品紹介と設備紹介
------------------------------ */
.blue_color_wrap {
  background: #00225f url("../images/mark_n.png") no-repeat top center;
  background-size: contain;
}

.blue_color_wrap .blue_color_inner {
  padding: 50px 0;
}

section.works,
section.facility {
  padding: 50px 0 0;
}

.works_wrap .works_wrap_inner {
  letter-spacing: -1em;
  white-space: nowrap;
  color: #fff;
}

.works_text {
  display: inline-block;
  width: 50%;
  letter-spacing: normal;
  white-space: normal;
  vertical-align: top;
}

.works_text p:nth-of-type(1) {
  font-size: 94px;
  font-weight: 600;
  font-family: 'Poppins';
}

.works_text p:nth-of-type(2) {
  font-size: 40px;
  font-weight: bold;
}

.works_text p:nth-of-type(3) {
  margin: 20px 30px 20px 0;
  font-size: 18px;
  line-height: 160%;
}

.readmore_btn {
  margin: 0 auto;
}

.readmore_btn div {
  position: relative;
  width: 205px;
  padding: 12px 0 12px 25px;
  font-size: 17px;
  border: solid 1px #fff;
  transition: .1s all;
}

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

.readmore_btn div:hover {
  opacity: 0.7;
}

.readmore_btn div img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 37px;
  height: auto;
  transition: all 300ms 0s ease;
}

.readmore_btn div:hover > img {
  transform: translateX(4px) translateY(-5px);
  transition: all 300ms 0s ease;
}

.readmore-b_btn div {
  border: solid 1px #000;
}

.readmore-b_btn div a,
.readmore-b_btn div a:visited {
  color: #000;
}

.works_img {
  display: inline-block;
  max-width: 400px;
  width: 50%;
  height: auto;
  letter-spacing: normal;
  white-space: normal;
}

.works_img img {
  margin: 0 0 0 auto;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .works_wrap .works_wrap_inner {
    white-space: normal;
  }
  .works_text {
    width: 100%;
  }
  .works_text p:nth-of-type(1) {
    font-size: 70px;
  }
  .works_text p:nth-of-type(2) {
    font-size: 29px;
  }
  .works_text p:nth-of-type(3) {
    font-size: 16px;
  }
  .works_img {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
}

/* ------------------------------
　　トップページ　新着情報
------------------------------ */
section.news .news_inner {
  margin: 80px auto 0;
}

.news_box {
  margin-bottom: 50px;
}

.news_box .news_titlebox h2 {
  margin: 0 auto;
  padding: 0;
  font-size: 94px;
  color: #DDDDDD;
  line-height: 100%;
  font-weight: 600;
  font-family: 'Poppins';
}

.news_box .news_titlebox p {
  padding: 20px 0 30px;
  font-size: 30px;
  font-weight: bold;
}

.news_box .news_box_btn {
  display: inline-block;
}

.news_box .news_box_btn_sm {
  display: none;
}

.korona_wrap .korona_inner h3 {
  font-size: 30px;
  font-weight: bold;
}

.korona_wrap .korona_inner .korona_box img {
  width: 100%;
  height: auto;
}

.korona_wrap .korona_inner .korona_box p {
  text-align: center;
}

@media screen and (max-width: 768px) {
  section.news .news_inner {
    margin: 80px auto;
  }
  .news_box .news_titlebox h2 {
    font-size: 70px;
  }
  .news_box .news_titlebox p {
    font-size: 24px;
  }
  .news_box .news_box_btn {
    display: none;
  }
  .news_box .news_box_btn_sm {
    display: inline-block;
  }
  .korona_wrap .korona_inner .korona_box {
    margin: 0 auto 30px;
    text-align: center;
  }
  .korona_wrap .korona_inner .korona_box img {
    max-width: 500px;
  }
  .korona_wrap .korona_inner .korona_box p {
    font-size: 14px;
  }
}

/* ------------------------------
　　トップページ　採用情報
------------------------------ */
.recruit_wrap {
  position: relative;
  background: url("../images/top_recruit.jpg") no-repeat center right;
  background-size: contain;
}

.recruit_wrap::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 68, 188, 0.78);
}

.recruit_wrap .recruit_inner {
  position: relative;
  margin: 0 auto;
  padding: 50px 0;
}

.recruit_wrap .recruit_inner .recruit_title {
  color: #fff;
}

.recruit_wrap .recruit_inner .recruit_title h2 {
  margin: 0 auto;
  padding: 20px 0;
  font-size: 94px;
  line-height: 100%;
  font-weight: 600;
  font-family: 'Poppins';
}

.recruit_wrap .recruit_inner .recruit_title p:nth-of-type(1) {
  font-size: 30px;
  font-weight: bold;
}

.recruit_wrap .recruit_inner .recruit_title p:nth-of-type(2) {
  padding: 20px 0 50px;
}

@media screen and (max-width: 1024px) {
  .recruit_wrap {
    background-position: center center;
    background-size: cover;
  }
  .recruit_wrap .recruit_inner {
    width: 94%;
  }
  .recruit_wrap .recruit_inner .recruit_title h2 {
    font-size: 70px;
  }
  .recruit_wrap .recruit_inner .recruit_title p:nth-of-type(1) {
    font-size: 24px;
  }
}

/* ------------------------------
　　事業内容ページ
------------------------------ */
section.business_01 {
  background: url("../images/logo_N.jpg") no-repeat top center;
  background-size: 100%;
}

section.business_01 .intro_wrap {
  margin: 0 auto;
  text-align: center;
}

section.business_01 .intro_wrap .intro_inner {
  padding: 150px 0 200px;
}

section.business_01 .intro_wrap .intro_inner p {
  font-size: 38px;
  font-weight: bold;
}

.business_01_wrap {
  margin: 0 auto 30px;
}

.business_01_wrap .business_01_inner .textbox {
  margin-top: 80px;
}

.business_01_wrap .business_01_inner .textbox p:nth-of-type(1) {
  font-size: 38px;
  font-weight: bold;
  line-height: 200%;
}

.business_01_wrap .business_01_inner .textbox p:nth-of-type(2) {
  line-height: 180%;
}

.business_01_wrap .business_01_inner .imgbox img {
  width: 100%;
  height: auto;
}

section.business_02 {
  margin-bottom: 80px;
}

.business_intro02_wrap {
  margin: 100px auto 50px;
  text-align: center;
}

.business_intro02_wrap p {
  font-size: 40px;
  font-weight: bold;
}

.business_02_wrap {
  width: 100%;
}

.business_02_wrap .business_02_inner {
  background-color: #DDDDDD;
  margin-bottom: 30px;
}

.business_02_wrap .business_02_inner .textbox {
  margin-top: 40px;
  padding: 0 25px;
}

.business_02_wrap .business_02_inner .textbox p:nth-of-type(1) {
  padding: 20px 0 30px;
  font-size: 29px;
  font-weight: bold;
}

.business_02_wrap .business_02_inner .textbox p:nth-of-type(2) {
  line-height: 180%;
}

.business_02_wrap .business_02_inner .imgbox {
  padding: 0;
  text-align: center;
}

.business_02_wrap .business_02_inner .imgbox img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  section.business_01 .intro_wrap .intro_inner {
    padding: 110px 0 150px;
  }
  section.business_01 .intro_wrap .intro_inner p {
    font-size: 30px;
  }
  .business_01_wrap .business_01_inner .textbox {
    margin-top: 20px;
  }
  .business_01_wrap .business_01_inner .textbox p:nth-of-type(1) {
    font-size: 30px;
  }
  .business_01_wrap .business_01_inner .imgbox {
    margin-top: 20px;
  }
  .business_intro02_wrap p {
    font-size: 30px;
  }
  .business_02_wrap .business_02_inner .textbox {
    margin-top: 18px;
  }
  .business_02_wrap .business_02_inner .textbox p:nth-of-type(1) {
    padding: 18px 0;
    font-size: 30px;
  }
  .business_02_wrap .business_02_inner .imgbox {
    padding-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  section.business_01 .intro_wrap .intro_inner {
    padding: 80px 0 100px;
  }
  section.business_01 .intro_wrap .intro_inner p {
    font-size: 24px;
  }
  .business_01_wrap .business_01_inner .textbox p:nth-of-type(1) {
    font-size: 24px;
  }
  .business_intro02_wrap p {
    font-size: 24px;
  }
  .business_02_wrap .business_02_inner .textbox p:nth-of-type(1) {
    font-size: 24px;
  }
}

/* ------------------------------
    製品事例ページ
    設備一覧ページ
------------------------------ */
section.works_01 {
  background: url("../images/logo_N.jpg") no-repeat top center;
  background-size: 100%;
}

section.works_01 .intro_wrap {
  margin: 0 auto;
  text-align: center;
}

section.works_01 .intro_wrap .intro_inner {
  padding: 150px 0 200px;
}

section.works_01 .intro_wrap .intro_inner p {
  font-size: 40px;
  font-weight: bold;
}

.works_01_wrap .works_01_inner .imgbox {
  margin: 0 auto 30px;
}

.works_01_wrap .works_01_inner .imgbox:nth-last-of-type(1) {
  margin: 0 auto;
}

.works_01_wrap .works_01_inner .imgbox img {
  width: 100%;
  height: auto;
}

.facility_01_wrap {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  section.works_01 .intro_wrap .intro_inner {
    padding: 110px 0 150px;
  }
  section.works_01 .intro_wrap .intro_inner p {
    font-size: 30px;
  }
}

@media screen and (max-width: 480px) {
  section.works_01 .intro_wrap .intro_inner {
    padding: 80px 0 100px;
  }
  section.works_01 .intro_wrap .intro_inner p {
    font-size: 24px;
  }
}

/* ------------------------------
　　設備一覧　dl
------------------------------ */
dl.side_f {
  width: 100%;
  margin: 0 auto 50px;
  line-height: 160%;
  display: flex;
  flex-wrap: wrap;
}

dl.side_f dd,
dl.side_f dt {
  margin: 0;
  padding: 13px 0;
  border-bottom: solid 1px #707070;
  vertical-align: middle;
}

dl.side_f dt {
  width: 90%;
  font-weight: normal;
}

dl.side_f dd {
  width: 10%;
}

@media screen and (max-width: 768px) {
  dl.side_f {
    margin: 0 auto 30px;
  }
}

/* ------------------------------
　　採用情報
------------------------------ */
.voice_box {
  margin: 0 auto 50px;
}

.voice_box .voice_img {
  margin: 0 auto;
  text-align: center;
}

.voice_box .voice_img img {
  width: 90%;
  height: auto;
}

.voice_box .voice_text p:nth-of-type(1) {
  font-size: 14px;
  color: #808080;
  line-height: 200%;
}

.voice_box .voice_text p:nth-of-type(2) {
  font-size: 26px;
  padding: 0 0 20px;
}

.voice_box .voice_text p:nth-of-type(2) span {
  padding-left: 5%;
  font-size: 15px;
  color: #808080;
}

.voice_box .voice_text p:nth-of-type(3) {
  line-height: 160%;
}

.contact_btn {
  margin: 0 auto;
}

.contact_btn div {
  width: 320px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #00225E;
  transition: .1s all;
}

.contact_btn div img {
  padding-right: 12px;
  width: 30px;
  vertical-align: middle;
}

.contact_btn div a,
.contact_btn div a:visited {
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
}

.contact_btn div:hover {
  background-color: rgba(0, 68, 188, 0.78);
}

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

@media screen and (max-width: 768px) {
  .voice_box .voice_img {
    margin: 30px auto 0;
  }
}

/* ------------------------------
　　テーブル
------------------------------ */
.row {
  display: flex;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
  .order4 {
    order: 4;
  }
  .order5 {
    order: 5;
  }
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px 0;
}

.contact-box .message-text {
  margin: 50px auto;
  color: #00225E;
  font-weight: bold;
}

.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 20px;
}

.contact-box .contact-no a {
  color: inherit;
}

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

.contact-box p {
  line-height: 1.6;
}

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

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

.contact-form-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background: #E5E5E5;
  border-bottom: 1px solid #FFF;
}

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .contact-form {
    width: 100%;
  }
  .contact-form-label {
    padding: 15px 15px 5px 15px;
    vertical-align: top;
  }
  .contact-form-control {
    padding: 5px 15px 15px 15px;
  }
  .contact-form-col {
    margin: 0;
  }
}

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

.contact-box .mail-step-item {
  float: left;
  margin: 0 5px;
  padding: 14px 0 10px;
  color: #999;
  font-weight: bold;
  list-style: none;
  border-bottom: 4px solid transparent;
  font-size: 14px;
}

.contact-box .mail-step-item:before {
  content: counter(mailStep) ".";
  /* カウンターの設定 */
  counter-increment: mailStep;
}

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

@media screen and (min-width: 768px) {
  .contact-box .mail-step-item {
    margin: 0 10px;
    padding: 18px 0 14px;
    font-size: 16px;
  }
}

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

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

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

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

@media screen and (min-width: 768px) {
  .label-required {
    margin: 0 10px;
  }
}

/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #C49511;
}

.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}

.contact-box select[required]:valid {
  border: 1px solid #A7A7AA;
}

.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #FFFDEB;
}

.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #FFEBEE;
}

.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #FFF;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="datetime"],
.contact-box input[type="datetime-local"],
.contact-box input[type="date"],
.contact-box input[type="month"],
.contact-box input[type="time"],
.contact-box input[type="week"],
.contact-box input[type="number"],
.contact-box input[type="email"],
.contact-box input[type="url"],
.contact-box input[type="search"],
.contact-box input[type="tel"] {
  font-size: 16px;
  box-sizing: border-box;
  padding: 0 5px;
}

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

.contact-box select {
  background-color: #f7f7f7;
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  .contact-box input[type="text"],
  .contact-box input[type="password"],
  .contact-box input[type="datetime"],
  .contact-box input[type="datetime-local"],
  .contact-box input[type="date"],
  .contact-box input[type="month"],
  .contact-box input[type="time"],
  .contact-box input[type="week"],
  .contact-box input[type="number"],
  .contact-box input[type="email"],
  .contact-box input[type="url"],
  .contact-box input[type="search"],
  .contact-box input[type="tel"] {
    padding: 5px 8px;
  }
  .contact-box textarea {
    padding: 5px 8px;
  }
  .contact-box select {
    padding-left: 8px;
    min-height: 40px;
  }
}

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

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

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

/* ------------------------------
　　お問い合わせページ
------------------------------ */
.contact-box p.intro {
  margin: 50px auto 30px;
  text-align: center;
}

section.contact-telbox {
  color: #00225E;
  text-align: center;
  border: solid 1px #00225E;
  margin-bottom: 80px;
  padding-bottom: 20px;
}

section.contact-telbox h2 {
  font-size: 26px;
}

section.contact-mailbox h2 {
  font-size: 26px;
  color: #00225E;
  text-align: center;
}

section.contact-mailbox p {
  padding-bottom: 12px;
}

section.contact-mailbox form p {
  padding-bottom: 0px;
}

/* ------------------------------
　　フッター
------------------------------ */
/* フッター内会社情報 */
.foot-wrapper {
  padding: 30px 0;
  background: #00225E;
}

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

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

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

.company-detail a {
  color: #FFF;
}

.company-detail a:hover {
  text-decoration: underline;
}

.footer {
  margin: 0 auto 30px;
}

/* フッターナビゲーション */
.footer-nav {
  float: right;
  max-width: 100%;
  margin: 0 -10px;
  color: #707070;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav ul li {
  line-height: 160%;
}

.footer-nav ul li a {
  color: #fff;
}

.footer-nav ul li a:hover {
  text-decoration: none;
  opacity: .7;
}

.footer-nav ul li a:hover img {
  transform: translateX(4px) translateY(0);
  transition: all 300ms 0s ease;
}

.footer-nav ul li img {
  padding-right: 10px;
  width: 10px;
  height: auto;
  transition: all 300ms 0s ease;
}

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

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

.footer-nav-list {
  margin: 0;
  padding: 0;
  color: #999;
  list-style: none;
}

.footer-nav-list li {
  line-height: 1.7;
}

.footer-nav-list a {
  color: #999;
}

@media screen and (max-width: 767px) {
  .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: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url("../images/marker/btn_pageTop.png") no-repeat center;
  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;
  }
}

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

.sns-list-item {
  float: left;
  margin: 0 5px;
}

.sns-list-item a:hover, .sns-list-item a:visited, .sns-list-item a:active, .sns-list-item a:focus {
  text-decoration: none;
}

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

.sns-list-item .sns-list-facebook:before {
  vertical-align: middle;
}

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

.sns-list-item .sns-list-twitter:before {
  vertical-align: middle;
}

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

.sns-list-item .sns-list-youtube:before {
  vertical-align: middle;
}

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

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

.copyright-text {
  font-size: 13px;
  margin: 0 auto;
  font-family: 'Poppins';
}

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

.footer_logo {
  margin: 0 auto 50px;
  text-align: center;
  color: #fff;
}

.footer_logo a {
  color: #fff;
}

.footer_logo a:hover {
  opacity: 0.7;
}

.footer_logo img {
  display: inline-block;
  max-width: 250px;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.footer_logo .f_logo_en {
  display: inline-block;
  padding-left: 20px;
  font-size: 13px;
  font-family: 'Poppins';
  vertical-align: middle;
  font-weight: normal;
}

/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.site-name {
  margin: 0;
  color: #00225E;
  margin: 5px auto;
}

.header-stack .site-name {
  margin: 30px 0 20px;
}

.site-name a {
  color: #00225E;
}

.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #00225E;
  text-decoration: none;
  opacity: 0.8;
}

.site-logo {
  display: none;
}

.site-logo p {
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  vertical-align: middle;
  padding-top: 2px;
}

.site-logo img {
  max-width: 69px;
  width: 100%;
  vertical-align: middle;
}

.site-logo a {
  padding-top: 2px;
  color: #00225E;
}

.site-logo-sp {
  display: inline-block;
  width: auto;
  height: 50px;
}

.site-logo-sp p {
  display: inline-block;
  font-size: 23px;
  font-weight: 500;
  vertical-align: middle;
  padding-top: 2px;
}

.site-logo-sp img {
  max-width: 69px;
  width: 100%;
  vertical-align: middle;
}

span.logo_name {
  font-weight: bold;
}

span.logo_en {
  display: inline-block;
  padding-left: 13px;
  font-size: 13px;
  vertical-align: middle;
  font-weight: normal;
}

.nav-box {
  display: none;
}

.header-nav {
  width: 100%;
  position: relative;
}

.header-nav_fix {
  display: none;
}

@media (min-width: 768px) {
  .header-stack .site-name {
    text-align: center;
  }
  .header {
    width: 100%;
    height: 60px;
  }
  .header-stack .header {
    display: block;
  }
  .header-logo {
    width: 100%;
    vertical-align: middle;
    border-bottom: solid 1px #00225E;
  }
  .header-stack .header-logo {
    display: block;
  }
  .header-nav {
    display: inline-block;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px 0;
  }
}

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

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

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

.site-header .site-header-sp-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

a .nav-menu-btn {
  color: #333;
}

.nav-menu-btn:hover {
  color: #333;
  text-decoration: none;
}

.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}

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

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

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

.nav-menu-action-link {
  color: #333;
}

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

.navbar {
  display: none;
  width: 100%;
}

.navbar.acms-admin-module-edit-wrapper {
  z-index: 1;
}

.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navbar li {
  overflow: hidden;
}

.navbar li a {
  display: block;
  padding: 9px 10px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  border-left: solid 1px;
}

.navbar li a:focus, .navbar li a:active {
  color: #FFF;
  text-decoration: none;
  background: #00225E;
}

.navbar li a:hover {
  opacity: 0.5;
  text-decoration: none;
}

.navbar li:nth-of-type(1) a {
  border-left: none;
}

.navbar li:last-of-type a {
  border-left: solid 1px #FFF;
}

.navbar li p {
  padding-top: 4px;
  font-weight: normal;
  font-size: 10px;
}

@media (min-width: 1024px) {
  .header {
    height: auto;
  }
  .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    display: flex;
    place-content: center flex-end;
    flex-wrap: wrap;
    float: right;
    padding: 0;
    list-style: none;
  }
  .header-stack .navbar > ul {
    display: table;
    float: none;
    width: 100%;
    table-layout: fixed;
    border-right: 1px solid #EEE;
  }
  .navbar li {
    position: relative;
    place-items: center;
    margin: 0 auto;
    text-align: center;
    width: 135px;
    padding: 6px 0 5px;
  }
  .navbar li:last-of-type, .navbar li:nth-last-of-type(2) {
    margin: 0;
    padding: 5px 0;
    background: #00225E;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    display: table-cell;
    float: none;
    border-left: 1px solid #EEE;
  }
  .navbar li ul {
    /* 二階層目 */
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li a {
    /* 一階層目のリンクのみ */
    -webkit-transition: border 0.25s ease-out;
    transition: border 0.25s ease-out;
  }
  .navbar li a:hover, .navbar li a:focus, .navbar li a:active {
    color: #333;
    background: transparent;
  }
  .header-stack .navbar li a {
    display: block;
    padding: 10px;
    font-size: 16px;
  }
  .navbar li.stay a {
    /* 一階層目のリンクのみ */
    border-bottom: 4px solid #00225E;
  }
  .navbar li.stay a.btn-attention {
    border: 0;
  }
  .navbar li:hover ul {
    /* 二階層目 */
    z-index: 10000;
    display: block;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
    box-shadow: 2px 2px 4px gray;
  }
  .navbar li:hover a {
    /* 一階層目のリンクのみ */
  }
  .navbar li:hover li a {
    border: 0;
  }
  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #FFF;
    border: 0;
    border-top: 1px solid rgba(0, 68, 188, 0.78);
  }
  .navbar li li:first-child {
    border: 0;
  }
  .navbar li li a {
    margin: 0;
    padding: 15px 15px;
    color: #00225E;
    border: 0;
  }
  .navbar li li a:hover {
    opacity: 1;
    color: #fff;
    background: rgba(0, 68, 188, 0.78);
    border: 0;
  }
  .navbar a.btn-attention {
    /* ボタン（色付き） */
    background: #00225E;
    color: #FFF;
    font-weight: bold;
    line-height: 1.3;
    border: 0;
    display: inline-block;
    padding: 8px 0;
    border: 0;
    width: 100%;
  }
  .navbar a.btn-attention:hover, .navbar a.btn-attention:visited {
    color: #FFF;
    text-decoration: none;
  }
  .navbar a.btn-attention:focus, .navbar a.btn-attention:active {
    color: #FFF;
    box-shadow: inset 0px 1px 3px 0px rgba(0, 0, 0, 0.5);
  }
  .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
    background: #00225E;
  }
}

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

/* ------------------------------
　　サイドメニュー
------------------------------ */
/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 6px 0;
  vertical-align: middle;
  background-color: #333;
  border-radius: 1px;
  transition: .1s all;
}

.icon-toggle-menu:before, .icon-toggle-menu:after {
  position: absolute;
  display: block;
  width: 35px;
  height: 1px;
  background-color: #333;
  border-radius: 1px;
  transition: .3s all;
  content: "";
}

.icon-toggle-menu:before {
  top: -7px;
}

.icon-toggle-menu:after {
  bottom: -7px;
}

[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
}

[aria-expanded=true] .icon-toggle-menu:before {
  width: 32px;
  transform: translate(-7px, 6px) rotate(45deg);
}

[aria-expanded=true] .icon-toggle-menu:after {
  width: 32px;
  transform: translate(-7px, -6px) rotate(-45deg);
}

/* ナビゲーションバー */
@media (max-width: 1023px) {
  .is-locked {
    overflow: hidden;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 44px;
    background-color: #fff;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: .3s;
    transition-property: all;
  }
  .mobile-nav.is-active {
    display: block;
  }
  .mobile-nav.is-opened {
    opacity: 1;
  }
  .mobile-nav-wrap {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background: #00225E;
    color: #fff;
  }
  .mobile-nav-inner {
    padding: 0 20px;
  }
  .mobile-nav-inner + .mobile-nav-inner {
    border-top: 1px solid #CCC;
  }
  .mobile-navbar {
    width: 50%;
  }
  .mobile-navbar-list {
    display: block;
    margin: 20px 0;
    padding: 0;
    line-height: 3.5;
    list-style: none;
    font-size: 16px;
    text-align: center;
  }
  .mobile-navbar-list li {
    position: relative;
    display: block;
  }
  .mobile-navbar-list .navbar-btn {
    margin-top: 15px;
  }
  .mobile-navbar-list a {
    display: block;
  }
  .mobile-navbar-list a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #808080;
    position: absolute;
    bottom: 0px;
    left: 0;
  }
  .mobile-navbar-list a img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 10%;
    max-width: 30px;
    width: 100%;
    height: auto;
  }
  .mobile-navbar-list li:last-of-type a::before,
  .mobile-navbar-list li:nth-last-of-type(2) a::before,
  .mobile-navbar-list li:nth-last-of-type(3) a::before {
    height: 0;
  }
  .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list a:not(.btn-attention):focus {
    color: #fff;
  }
  .mobile-navbar-list a.btn-attention {
    font-weight: normal;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    font-size: 16px;
  }
  .mobile-navbar-list .mobile-navbar-list {
    margin: -5px 0 10px 10px;
    line-height: 2;
  }
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):focus {
    color: #666;
  }
  .mobile-nav-side {
    margin: 20px 0;
  }
  .mobile-nav-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-nav-side-item {
    display: block;
    margin: 0 0 10px 0;
  }
  .mobile-nav-side-link {
    color: #333;
    display: block;
  }
  .mobile-nav-side-link:hover, .mobile-nav-side-link:visited, .mobile-nav-side-link:active, .mobile-nav-side-link:focus {
    color: #333;
  }
  .mobile-navbar-footer {
    margin: 15px 0 0 0;
  }
  .mobile-navbar-footer .sns-list {
    margin: 0 0 30px;
  }
}

@media (min-width: 1024px) {
  .header-nav_fix {
    display: inline-block;
  }
  .head-glovalnav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .head-glovalnav.fixed .header {
    height: 65px;
  }
  .head-glovalnav.fixed .header-nav {
    display: none;
  }
  .head-glovalnav.fixed .header-nav_fix {
    display: flex;
    justify-content: space-between;
  }
  .head-glovalnav.fixed .nav-box {
    display: inline-block;
  }
  .head-glovalnav.fixed .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .head-glovalnav.fixed .navbar li {
    padding: 7px 0 6px;
    width: 110px;
  }
  .head-glovalnav.fixed .site-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
  }
  .head-glovalnav.fixed .site-logo p {
    margin-left: -5px;
    font-size: 16px;
  }
  .head-glovalnav.fixed span.logo_en {
    display: none;
  }
}

@media (min-width: 768px) {
  header {
    position: static;
    top: -100px;
    transition: all 0.3s ease;
  }
}

.top_slider_inner {
  margin: 0 auto 30px;
  text-align: center;
}

@media (max-width: 1023px) {
  .mobile-navbar {
    margin: 0 auto;
    width: 90%;
  }
  span.logo_en {
    display: none;
  }
}
