@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
body {
  background: #FFF;
  color: #333;
  font-family: 'Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3',"SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
  font-weight: 400;
  font-size: 14px;
}

body.lang-en {
  font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
}

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

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

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

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

/* コンテナー */
.acms-container {
  max-width: 1170px;
  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 {
  margin: 0 auto;
  max-width: 700px;
  padding-right: 20px;
  padding-left: 20px;
  padding-right: calc(10px + constant(safe-area-inset-right));
  padding-left: calc(10px + constant(safe-area-inset-left));
}

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

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

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

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  border: 0;
  background: #999;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

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

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

.btn:hover {
  background-color: #999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
  background-image: linear-gradient(to bottom, #C1C1C1, #999);
  color: #FFF;
}

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

/* ボタン　色付き */
.btn-attention {
  border: 0;
  background: #FF9A00;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

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

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

.btn-attention:hover {
  background-color: #FF9A00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FF9A00));
  background-image: linear-gradient(to bottom, #FDD87D, #FF9A00);
  color: #FFF;
}

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

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

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

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

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

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

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: rgba(255, 242, 0, 0.5);
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

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

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

.btn-attention-large:hover {
  background: rgba(255, 242, 0, 0.3);
}

.btn-attention-large:active, .btn-attention-large:focus {
  background: rgba(255, 242, 0, 0.5);
}

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

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

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

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

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

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: rgba(255, 242, 0, 0.5);
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
  color: #004ea7 !important;
}

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

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

.btn-attention-block-large:hover {
  background: rgba(255, 242, 0, 0.3);
}

.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: rgba(255, 242, 0, 0.5);
}

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

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

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

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

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

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

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  width: 100%;
  height: 100px;
  color: #333;
  background: rgba(0, 78, 167, 0.5);
  margin-top: 13px;
}

.page-title-wrapper:before {
  position: absolute;
  border-top: 8px solid rgba(0, 78, 167, 0.5);
  top: -13px;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  display: block;
  background-clip: content-box;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 78, 167, 0.5) 10px, rgba(0, 78, 167, 0.5) 20px);
}

.page-title-wrapper:after {
  position: absolute;
  border-bottom: 8px solid rgba(0, 78, 167, 0.5);
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  display: block;
  background-clip: content-box;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 10px, rgba(0, 78, 167, 0.5) 10px, rgba(0, 78, 167, 0.5) 20px);
}

.page-title-inner {
  position: relative;
  overflow: hidden;
}

body.lang-ja .page-title {
  letter-spacing: .25em;
}

.page-title {
  margin: 50px 0 10px 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 3px 10px 3px 0;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
}

.page-title:before {
  content: '';
  background-color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  position: absolute;
  height: 100%;
  width: 1000px;
  top: 0;
  left: -1000px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.serial-nav a {
  display: block;
  padding: 25px 0;
  border-bottom: 1px solid #E5E5E5;
  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;
  }
}

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

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

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

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

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

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

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

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

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

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

.slick-list:focus {
  position: relative;
}

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

.main-slider-image {
  height: 240px;
  background: no-repeat center #333;
  background-size: cover;
}

.main-slider-image a:hover {
  text-decoration: none;
}

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

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

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

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

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

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

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

.slick-prev:focus,
.slick-next:focus {
  border: 1px dotted #FFF;
}

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

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

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

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

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

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

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

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

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

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

/**
 * 追加
 */
.slick-slide {
  max-height: 500px;
}

/* ------------------------------
　　各モジュール
------------------------------ */
.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 + .summary-custom,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .pickup-list,
.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;
  bottom: 5px;
  right: 0;
  color: #333;
  font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.summary-default-entry.bl-hover {
  background: rgba(0, 78, 167, 0.1);
}

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

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

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

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

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

/* ------------------------------
　　ピックアップリスト
------------------------------ */
.pickup-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.pickup-list img:hover {
  opacity: 0.75;
}

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

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

.banner a:hover {
  opacity: 0.75;
}

.banner-list-item {
  margin: 0 0 20px 0;
}

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

.headline-item.bl-hover {
  background: rgba(0, 78, 167, 0.1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lp-suggest-tel a {
  color: #FFB500;
}

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

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 0 0 30px 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;
}

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

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

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

.entry-column h2 {
  margin: 0 10px 30px 10px;
  font-size: 20px;
}

.entry-column h2:before {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: rgba(0, 78, 167, 0.5);
  content: '';
  vertical-align: .2em;
  margin-right: .5em;
}

.entry-column h2:after {
  display: inline-block;
  width: 30px;
  height: 3px;
  background-color: rgba(0, 78, 167, 0.5);
  content: '';
  vertical-align: .2em;
  margin-left: .5em;
}

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

.entry-column h3 {
  margin: 0 10px 20px 10px;
  padding: 5px 10px;
  font-size: 18px;
  color: #333;
  background: rgba(0, 78, 167, 0.2);
}

.entry-column h4 {
  font-weight: 700;
  color: #004ea7;
  font-size: 16px;
}

.entry-column a:link {
  color: #006dd9;
  text-decoration: none;
}

.entry-column a:hover, .entry-column a:focus, .entry-column a:active {
  text-decoration: underline;
}

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

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
}

/* エントリー内ボタン */
.entry-column p.entry-btn {
  margin-bottom: 20px;
}

.entry-column p.entry-btn a {
  background: #999;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

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

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

.entry-column p.entry-btn a:hover {
  background-color: #999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
  background-image: linear-gradient(to bottom, #C1C1C1, #999);
  color: #FFF;
}

.entry-column p.entry-btn a:active, .entry-column p.entry-btn a:focus {
  background: #878787;
}

/* 色付きボタン */
.entry-column p.entry-btn-attention a {
  background: #FF9A00;
  color: #FFF;
  line-height: 1.2;
  border: 0;
  display: inline-block;
  padding: 8px 15px;
  border-radius: 3px;
}

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

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

.entry-column p.entry-btn-attention a:hover {
  background-color: #FF9A00;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FF9A00));
  background-image: linear-gradient(to bottom, #FDD87D, #FF9A00);
  color: #FFF;
}

.entry-column p.entry-btn-attention a:active, .entry-column p.entry-btn-attention a:focus {
  background: #EDA800;
}

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

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

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

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

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

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

.entry-column table.table-history {
  table-layout: fixed;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 引用 */
.entry-column blockquote {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 20px 15px 16px;
  font-size: 16px;
  line-height: 1.5;
  border-left: 4px solid rgba(0, 78, 167, 0.4);
  background: rgba(0, 78, 167, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ソースコード */
.entry-column pre {
  width: 100%;
  margin: 0 0 30px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .entry-column th,
  .entry-column td {
    display: table-cell;
    padding: 8px 16px;
    text-align: left;
    font-size: 16px;
    border-top: 1px solid #dfdfdf;
  }
  .entry-column th {
    background: inherit;
  }
  .entry-column tr:nth-child(odd) {
    background: #f5f5f5;
  }
}

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

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

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

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

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

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

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

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

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

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

.share-item .share-item-facebook {
  /* Facebook */
  display: block;
  width: 22px;
  height: 22px;
  line-height: 1.2;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  background: #3B5999;
  border-radius: 4px;
}

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

.share-item .share-item-twitter {
  /* Twitter */
  display: block;
  width: 22px;
  height: 22px;
  line-height: 1.2;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  background: #55ACEE;
  border-radius: 4px;
}

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

.share-item .share-item-gplus {
  /* Google + */
  display: block;
  width: 22px;
  height: 22px;
  line-height: 1.2;
  color: #FFF;
  text-align: center;
  font-size: 16px;
  background: #DD4B39;
  border-radius: 4px;
}

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

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

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  line-height: 1.5;
  border-radius: 3px;
  background: #999;
}

.continue-link a [class*='acms-icon'] {
  margin: 0 10px 0 0;
}

.continue-link a:link, .continue-link a:visited {
  color: #fff;
}

.continue-link a:hover, .continue-link a:focus, .continue-link a:active {
  color: #fff;
  text-decoration: none;
  background: #aaa;
}

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

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

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

/* ------------------------------
　　サブカラム
------------------------------ */
.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;
  }
}

/* 物件一覧 */
.summary-custom {
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
  border-left: 1px solid #E5E5E5;
}

.summary-custom-entry {
  padding: 10px;
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.summary-custom-entry:hover {
  background: #F5F5F5;
  -webkit-transition: background-color 0.25s linear;
  transition: background-color 0.25s linear;
}

.photo {
  margin: 0 0 10px 0;
}

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

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

@media screen and (max-width: 767px) {
  /* 物件情報 */
  .realestate-search th, .realestate-search td {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .realestate-search input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box p.message {
  margin: 0 0 35px 0;
  color: #004ea7;
}

.contact-box p.contact-no {
  margin: 0;
  font-size: 30px;
  color: #333;
}

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

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

.error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #004ea7;
}

.contact-form {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  background: rgba(0, 78, 167, 0.1);
}

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

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

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

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

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

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

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

/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 35px 0;
  padding: 0 10px;
  background: rgba(0, 78, 167, 0.1);
  /* カウンターの設定 */
  counter-reset: mailStep;
}

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

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

.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid rgba(0, 78, 167, 0.8);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.invalid {
  background: #ffebee !important;
}

/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.site-name {
  font-size: 24px;
  color: #004ea7;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 400;
}

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

.site-name a {
  color: #004ea7;
}

.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #004ea7;
}

.site-name .logo {
  width: 280px;
  max-width: 70%;
  height: auto;
}

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

@media (min-width: 768px) {
  .site-name svg {
    width: 200px;
    height: auto;
  }
  .site-logo {
    width: 60px;
  }
  .header {
    display: table;
    width: 100%;
  }
  .header-stack .header {
    display: block;
  }
  .header-logo {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
  }
  .header-stack .header-logo {
    display: block;
  }
  .header-nav {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .header-logo {
    display: table-cell;
    width: 40%;
  }
  .header-stack .header-logo {
    display: block;
    width: 100%;
  }
  .header-nav {
    display: table-cell;
    width: 60%;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
  }
}

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 0 5px;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
  border-top: 4px solid #004ea7;
  background-color: #fff;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  z-index: 100;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

.nav-menu-btn:visited, .nav-menu-btn:hover, .nav-menu-btn:action {
  color: #004ea7;
  text-decoration: none;
}

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

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

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

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

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

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

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

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

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

.navbar li a {
  display: block;
  padding: 10px;
  color: #333;
  font-size: 16px;
}

.navbar li a:hover, .navbar li a:focus, .navbar li a:active {
  text-decoration: none;
  color: #FFF;
  background: #004ea7;
}

@media (min-width: 1024px) {
  .header {
    height: 100px;
  }
  .navbar {
    background-color: rgba(255, 255, 255, 0.7);
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    float: right;
    list-style: none;
    padding: 0;
  }
  .header-stack .navbar > ul {
    float: none;
    display: table;
    width: 100%;
    border-right: 1px solid rgba(0, 78, 167, 0.5);
    table-layout: fixed;
  }
  .navbar li {
    float: left;
    position: relative;
    margin: 0 10px;
    vertical-align: middle;
    text-align: center;
  }
  .navbar li.nav-online a {
    background-color: #004ea7;
    color: #fff;
  }
  .navbar li.nav-online a:hover, .navbar li.nav-online a:active, .navbar li.nav-online a:focus {
    background-color: #004ea7;
    color: #fff200;
    border-bottom-color: #fff200;
  }
  .navbar li.nav-online.stay a {
    border-bottom-color: #fff200;
  }
  .navbar li.wide-item {
    width: 20%;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    float: none;
    display: table-cell;
    border-left: 1px solid rgba(0, 78, 167, 0.5);
  }
  .navbar li ul {
    /* 二階層目 */
    display: none;
    position: absolute;
    left: 0;
    min-width: 200px;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li a {
    /* 一階層目のリンクのみ */
    padding: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    white-space: nowrap;
    -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 #000;
  }
  .navbar li.stay a.nav-attention {
    border: 0;
  }
  .navbar li:hover ul {
    /* 二階層目 */
    display: block;
    z-index: 10000;
    -webkit-animation: 0.8s fade-in;
    animation: 0.8s fade-in;
  }
  .navbar li:hover a {
    /* 一階層目のリンクのみ */
    border-bottom: 4px solid #000;
  }
  .navbar li:hover a.nav-attention {
    border: 0;
  }
  .navbar li:hover li a {
    border: 0;
  }
  .navbar li li {
    /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: rgba(0, 0, 0, 0.7);
    border: 0;
    border-top: 1px solid #000;
  }
  .navbar li li:first-child {
    border: 0;
  }
  .navbar li li a {
    margin: 0;
    padding: 10px 15px;
    color: #FFF;
    border: 0;
  }
  .navbar li li a:hover {
    color: #FFF;
    border: 0;
    background: #000;
  }
  .navbar a.nav-attention {
    /* ボタン（色付き） */
    background-color: #004ea7;
    color: #fff;
    height: 100%;
  }
  .navbar a.nav-attention:hover, .navbar a.nav-attention:active, .navbar a.nav-attention:focus {
    background-color: #004ea7;
    color: #fff200;
    border-top-color: 4px solid #004ea7 !important;
    border-bottom-color: 4px solid #fff200 !important;
  }
}

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

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

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

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

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

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

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.suggest-box {
  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;
  font-size: 24px;
  color: #666;
}

.suggest-tel a {
  color: inherit;
}

.suggest-btn {
  margin: 0;
}

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

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

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

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

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

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

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

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

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

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

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

.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-btn {
  display: block;
  position: fixed;
  right: 20px;
  right: calc(20px + constant(safe-area-inset-right));
  bottom: 20px;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: url("../../images/marker/btn_pageTop.png") no-repeat center;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}

.no-js .page-top-btn {
  /* jsが無効の環境のとき */
  opacity: 0.6;
}

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

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

/* フッター内各SNSアカウントのリンク集 */
.sns-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}

.sns-list-item {
  display: inline-block;
  margin: 0 1px;
}

.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: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 19px;
  color: #FFF;
  border-radius: 50%;
  background: #3B5999;
}

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

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

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

.sns-list-item .sns-list-gplus {
  /* Google + */
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 19px;
  color: #FFF;
  border-radius: 50%;
  background: #DD4B39;
}

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

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

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

.sns-list-item .sns-list-instagram {
  /* Instagram */
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
  color: #FFF;
  border-radius: 50%;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
}

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

.sns-list-sp {
  margin-bottom: 7px;
}

.sns-list-sp .sns-list-item .sns-list-facebook, .sns-list-sp .sns-list-item .sns-list-twitter, .sns-list-sp .sns-list-item .sns-list-instagram {
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
}

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

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

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

.simple-footer {
  padding: 30px 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.6);
}

/**
 * 上書き
 */
.module-header {
  border-bottom-color: #004ea7;
}

.module-header .module-heading {
  display: inline-block;
  color: #004ea7;
}

.module-header .acms-btn {
  vertical-align: 4px;
  margin-left: 4px;
}

.page-title-filter {
  background-color: transparent;
}

.acms-page-header {
  border-bottom-color: #004ea7;
}

.acms-btn .acms-icon-arrow-right {
  margin-right: .25em;
}

.acms-btn:link, .acms-btn:visited, .acms-btn:active {
  border-color: #fff200;
  background-color: rgba(255, 242, 0, 0.5);
  color: #004ea7 !important;
}

.acms-btn:hover {
  border-color: #fff200;
  background-color: rgba(255, 242, 0, 0.4);
  color: #004ea7 !important;
}

.js-acms-offcanvas-active {
  background-color: transparent;
}

/**
 * パンくずがないので
 */
.main, .sub {
  margin-top: 45px;
}

/**
 * 狭いコンテナ
 */
/**
 * トップページ
 */
.top-information {
  background-color: rgba(255, 242, 0, 0.1);
  padding: 1em;
  margin-bottom: 30px;
}

em {
  font-style: normal;
  font-weight: 700;
}

.logo-front-container {
  text-align: center;
  padding-top: 20px;
}

.logo-front-container img {
  height: auto;
  width: 80%;
  max-width: 200px;
}

.front-page {
  background-image: url(../../images/top-bg.jpg);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
}

.front-page .acms-col-lg-10 {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 15px;
  margin-bottom: 40px;
}

.front-page .main {
  margin-top: 25px;
}

.front-page .current-entry-column-container {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: 30px !important;
  margin-bottom: 45px;
  background-color: rgba(0, 78, 167, 0.4);
  position: relative;
}

.front-page .current-entry-column-container:before {
  position: absolute;
  border-top: 8px solid rgba(0, 78, 167, 0.4);
  top: -13px;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  display: block;
  background-clip: content-box;
  background-image: repeating-linear-gradient(90deg, transparent, transparent 10px, rgba(0, 78, 167, 0.4) 10px, rgba(0, 78, 167, 0.4) 20px);
}

.front-page .current-entry-column-container:after {
  position: absolute;
  border-bottom: 8px solid rgba(0, 78, 167, 0.4);
  bottom: -13px;
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  display: block;
  background-clip: content-box;
  background-image: repeating-linear-gradient(90deg, #fff, #fff 10px, rgba(0, 78, 167, 0.4) 10px, rgba(0, 78, 167, 0.4) 20px);
}

.front-page .current-entry-column-container .entry {
  padding-left: 8.33333%;
  padding-right: 8.33333%;
  max-width: 956px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/**
 * 地図
 */
.leaflet-container {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.column-map-center {
  max-width: 700px;
}

/**
 * 汎用
 */
.page-header .entry-title {
  display: inline-block;
}

.page-header .acms-btn {
  vertical-align: 2px;
  margin-left: 10px;
}

/**
 * 会場インデックス
 */
.venue-index h3 {
  font-weight: normal;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: bold;
}

.venue-index h4 {
  margin-top: .5em;
}

/**
 * 背景
 */
body {
  background-image: url(../../images/bg.png);
  background-position: 100% 54px;
  background-repeat: no-repeat;
  background-size: 50% auto;
  background-attachment: fixed;
}

@media (min-width: 1024px) {
  body {
    background-position: 100% 0;
    background-size: 50% auto;
  }
}

/**
 * トップページ
 */
.site-copy {
  text-align: center;
  color: #004ea7;
  font-size: 26px;
  font-weight: bold;
  margin: 34px 10px 0 10px;
  line-height: 1.25;
}

.site-copy img {
  width: 48px;
  height: 32px;
  vertical-align: -6px;
  margin-right: 8px;
}

/**
 * 上映作品 インデックス
 */
.link-list-genre {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.link-list-genre li {
  display: inline-block;
  margin: 0 4px 4px 0;
  background-color: #fff;
}

.link-list-genre li a {
  display: inline-block;
  padding: 2px 6px;
}

.link-list-genre li a:link, .link-list-genre li a:visited, .link-list-genre li a:active {
  background-color: rgba(255, 242, 0, 0.3);
  color: #004ea7;
}

.link-list-genre li a:hover, .link-list-genre li a.stay {
  text-decoration: none;
  background-color: #004ea7;
  color: #fff;
}

.link-list-genre li a.tokyo-color:link, .link-list-genre li a.tokyo-color:visited, .link-list-genre li a.tokyo-color:active {
  background-color: rgba(11, 65, 150, 0.2);
  color: #0B4196;
}

.link-list-genre li a.tokyo-color:hover, .link-list-genre li a.tokyo-color.stay {
  background-color: #0B4196;
  color: #fff;
}

.link-list-genre li a.kyoto-color:link, .link-list-genre li a.kyoto-color:visited, .link-list-genre li a.kyoto-color:active {
  background-color: rgba(144, 14, 129, 0.2);
  color: #900E81;
}

.link-list-genre li a.kyoto-color:hover, .link-list-genre li a.kyoto-color.stay {
  background-color: #900E81;
  color: #fff;
}

.link-list-genre li a.hiroshima-color:link, .link-list-genre li a.hiroshima-color:visited, .link-list-genre li a.hiroshima-color:active {
  background-color: rgba(148, 97, 51, 0.2);
  color: #946133;
}

.link-list-genre li a.hiroshima-color:hover, .link-list-genre li a.hiroshima-color.stay {
  background-color: #946133;
  color: #fff;
}
/*
.link-list-genre li a.hiroshima-color:link, .link-list-genre li a.hiroshima-color:visited, .link-list-genre li a.hiroshima-color:active {
  background-color: rgba(22, 162, 154, 0.2);
  color: #16A29A;
}

.link-list-genre li a.hiroshima-color:hover, .link-list-genre li a.hiroshima-color.stay {
  background-color: #16A29A;
  color: #fff;
} */

.link-list-genre li a.online-color:link, .link-list-genre li a.online-color:visited, .link-list-genre li a.online-color:active {
  background-color: rgba(22, 162, 154, 0.2);
  color: #16A29A;
}

.link-list-genre li a.online-color:hover, .link-list-genre li a.online-color.stay {
  background-color: #16A29A;
  color: #fff;
}

.link-list-genre li a.premiere-color:link, .link-list-genre li a.premiere-color:visited, .link-list-genre li a.premiere-color:active {
  background-color: rgba(0, 193, 23, 0.2);
  color: #00c117;
}

.link-list-genre li a.premiere-color:hover, .link-list-genre li a.premiere-color.stay {
  background-color: #00c117;
  color: #fff;
}

.link-list-genre li a.en-subtitles-color:link, .link-list-genre li a.en-subtitles-color:visited, .link-list-genre li a.en-subtitles-color:active {
  background-color: rgba(238, 0, 35, 0.2);
  color: #ee0023;
}

.link-list-genre li a.en-subtitles-color:hover, .link-list-genre li a.en-subtitles-color.stay {
  background-color: #ee0023;
  color: #fff;
}

.theme2022 {
  padding: 1em 1em .9em 1em;
  background-color: rgba(200,241,0, .2);
  margin-bottom: 1em;
}

.theme2022 .link-list-genre {
  margin-bottom: 0;
}

.theme2022 h4 {
  margin-top: 0;
  margin-bottom: .5em;
  color: #009812;
}

.other2022 {
  padding: 1em 1em .9em 1em;
  background-color: rgba(200,200,200, .2);
  margin-bottom: 1em;
}

.other2022 .link-list-genre {
  margin-bottom: 0;
}

.lineup-category-description {
  font-size: 13px;
  color: #004ea7;
}

.lineup-category-description ul {
  padding-left: 1.5em;
  margin-bottom: 0;
}

.anchor-list {
  list-style: none;
  margin: 30px 0;
  background-color: rgba(0, 78, 167, 0.1);
  padding: 20px;
  width: 600px;
  max-width: 100%;
}

.anchor-list .flag {
  height: 16px;
  width: 24px;
  margin-right: 5px;
}

.anchor-list a, .anchor-list a:link, .anchor-list a:visited, .anchor-list a:hover, .anchor-list a:active {
  color: #222;
}

.anchor-list li {
  margin: 3px;
}

.anchor-list .nowrap {
  width: 140px;
}

.anchor-list .acms-icon-arrow-down {
  color: #004ea7;
}

/**
 * 上映作品 詳細
 */
.title-lang {
  font-size: 16px;
  font-weight: normal;
  font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
  color: #555;
  margin: 0 0 .5em 0;
}

.lineup-info {
  font-family: "SF Pro Text","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
}

.flag {
  width: 30px;
  height: 20px;
  border: 1px solid #ccc;
  vertical-align: -3px;
}

.cf-container .acms-col-md-4, .cf-container .acms-col-md-8 {
  margin-bottom: 20px;
}

.cf-container .lang {
  margin: .5em 0;
}

.cf-container .acms-label-lang {
  background-color: rgba(255, 242, 0, 0.3);
}

.lineup-index-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.lineup-index-item .country-name-flag {
  margin: 0;
}

.lineup-index-item .country-name-flag .flag {
  width: 21px;
  height: 14px;
  margin-right: 3px;
}

.lineup-index-item .country-name-flag .country-name {
  vertical-align: 1px;
}

.lineup-index-item .lineup-label-container {
  margin: 0;
}

.lineup-index-item a.lineup-index-title {
  font-weight: bold;
}

.lineup-index-item a.lineup-index-title:link, .lineup-index-item a.lineup-index-title:visited, .lineup-index-item a.lineup-index-title:active {
  color: #222;
  text-decoration: none;
}

.lineup-index-item a.lineup-index-title:link .acms-icon-arrow-right, .lineup-index-item a.lineup-index-title:visited .acms-icon-arrow-right, .lineup-index-item a.lineup-index-title:active .acms-icon-arrow-right {
  color: #004ea7;
}

.lineup-index-item a.lineup-index-title:hover {
  color: #004ea7;
}

.lineup-index-item-text-container {
  line-height: 1.5;
}

.media-image-container {
  width: 100%;
  max-width: 760px;
  height: 50vw;
  max-height: 400px;
  margin-left: auto;
  margin-right: auto;
}

.lineup-entry-container {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.media-image-thumbnail-container {
  width: 99px;
  margin-right: 10px;
}

.media-image-thumbnail {
  width: 99px;
  height: 66px;
  margin-left: auto;
  margin-right: auto;
}

.lineup-random-container {
  margin-top: 60px;
}

.random-media-image-container {
  width: 100%;
  max-width: 400px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
}

.random-media-image-container .lineup-info-container {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  z-index: 2;
  position: absolute;
  margin: 0;
  width: calc(100% - 1em);
  bottom: 0;
  left: 0;
  padding: .25em .5em;
  line-height: 1.3333;
}

a.random-link {
  color: #222;
}

a.random-link:hover {
  text-decoration: none;
  color: #004ea7;
}

a.random-link .lineup-title-container {
  margin: .25em 0 0 0;
  font-weight: bold;
}

a.random-link .lineup-title-container .acms-label {
  display: none;
}

@media (min-width: 480px) {
  .random-media-image-container {
    height: 200px;
  }
}

.random-item {
  margin-bottom: 30px;
}

.media-image-caption {
  margin: 5px 0 0 0;
  font-size: 12px;
  text-align: center;
}

.country-name {
  font-size: 11px;
  vertical-align: 4px;
}

.lineup-title {
  line-height: 1.25;
  margin-bottom: 0;
  margin-right: 8px;
}

.lineup-header {
  padding-bottom: 10px;
}

.lineup-header .acms-label {
  vertical-align: 5px;
}

.lineup-header .acms-btn {
  vertical-align: 5px;
}

.lineup-header h1 {
  font-size: 20px;
}

.lineup-header h1 .acms-label {
  margin-right: 5px;
  font-weight: normal;
}

.cf-cities th {
  vertical-align: top;
  padding-right: 5px;
  height: 42px;
}

.cf-cities th .acms-label {
  display: block;
}

.cf-cities td {
  vertical-align: top;
}

.acms-label-default {
  background-color: #ddd;
}

a:hover .acms-label-default {
  background-color: #eee;
}

.acms-label-tokyo {
  background-color: #0B4196;
  color: #fff;
  font-weight: normal;
}

.acms-label-kyoto {
  background-color: #900E81;
  color: #fff;
  font-weight: normal;
}

/* .acms-label-hiroshima {
  background-color: #16A29A;
  color: #fff;
  font-weight: normal;
} */

.acms-label-hiroshima {
  background-color: #946133;
  color: #fff;
  font-weight: normal;
}

.acms-label-online {
  background-color: #16A29A;
  color: #fff;
  font-weight: normal;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

/**
 * 主催者
 */
hr {
  margin: 0 10px;
}

ul.organizers-list {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

ul.organizers-list li {
  position: relative;
  margin: 0;
  padding: 0;
}

ul.organizers-list li:not(:last-child) {
  margin-bottom: 20px;
}

ul.organizers-list li img {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 30px;
  border: 1px solid #ccc;
}

ul.organizers-list li > div {
  padding-left: 42px;
}

ul.organizers-list a {
  display: inline-block;
  padding-left: 42px;
}

ul.organizers-list a:link, ul.organizers-list a:visited, ul.organizers-list a:active {
  color: #222;
}

ul.organizers-list a:hover {
  color: #004ea7;
  text-decoration: none;
}

ul.organizers-list-large {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

ul.organizers-list-large li {
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

ul.organizers-list-large li span {
  float: left;
}

ul.organizers-list-large li span.text {
  margin: 18px 0 0 10px;
}

ul.organizers-list-large li img {
  display: inline-block;
  height: 60px;
  width: 90px;
  border: 1px solid #ccc;
}

ul.organizers-list-large a {
  display: inline-block;
}

ul.organizers-list-large a:link, ul.organizers-list-large a:visited, ul.organizers-list-large a:active {
  color: #222;
}

ul.organizers-list-large a:hover {
  color: #004ea7;
  text-decoration: none;
}

.custom-hr {
  margin: 30px 10px;
}

/**
 * ヘッダー
 */
a.english-link-pc {
  font-size: 16px;
  font-weight: bold;
  vertical-align: top;
  margin-top: 34px;
  margin-left: 10px;
  display: inline-block;
}

a.english-link-pc:link, a.english-link-pc:visited, a.english-link-pc:hover, a.english-link-pcactive {
  text-decoration: none;
  color: #004ea7;
}

a.english-link-pc .acms-icon-exit {
  margin-right: 5px;
}

@media (min-width: 1024px) {
  .site-name {
    display: inline-block;
  }
  .site-name .logo {
    max-width: none;
  }
}

a.nav-menu-btn:link, a.nav-menu-btn:visited, a.nav-menu-btn:hover, a.nav-menu-btn:active {
  text-decoration: none;
  color: #004ea7;
}

a.english-link-sp {
  font-weight: bold;
  display: inline-block;
  float: right;
  margin: 16px 20px 0 0;
}

a.english-link-sp:link, a.english-link-sp:visited, a.english-link-sp:hover, a.english-link-sp:active {
  text-decoration: none;
  color: #004ea7;
}

a.english-link-sp .acms-icon-exit {
  margin-right: 5px;
}

.entry-column em {
  color: #004ea7;
}

.tokyo-color h1.entry-title, .tokyo-color h2.entry-title a, .tokyo-color h4 {
  color: #0B4196;
}

.tokyo-color .page-header {
  border-bottom-color: #0B4196;
}

.tokyo-color h3 {
  background-color: rgba(11, 65, 150, 0.2);
}

.kyoto-color h1.entry-title, .kyoto-color h2.entry-title a, .kyoto-color h4 {
  color: #900E81;
}

.kyoto-color .page-header {
  border-bottom-color: #900E81;
}

.kyoto-color h3 {
  background-color: rgba(144, 14, 129, 0.2);
}

/* .hiroshima-color h1.entry-title, .hiroshima-color h2.entry-title a, .hiroshima-color h4 {
  color: #16A29A;
}

.hiroshima-color .page-header {
  border-bottom-color: #16A29A;
}

.hiroshima-color h3 {
  background-color: rgba(22, 162, 154, 0.2);
} */

.hiroshima-color h1.entry-title, .hiroshima-color h2.entry-title a, .hiroshima-color h4 {
  color: #946133;
}

.hiroshima-color .page-header {
  border-bottom-color: #946133;
}

.hiroshima-color h3 {
  background-color: rgba(148, 97, 51, 0.2);
}

/**
 * スケジュール
 */
.acms-table-responsive {
  margin-bottom: 30px;
}

body.lang-en .calendarTable th {
  width: 8em;
}

.calendarTable th {
  font-family: monospace;
  width: 5em;
}

.calendarTable .time {
  font-family: monospace;
  font-weight: bold;
  margin-right: 4px;
  display: inline-block;
}

.calendarTable td {
  padding-top: 5px;
  padding-bottom: 1px;
}

.calendarTable td div {
  padding: 4px 0;
}

.calendarTable td div .flag {
  width: 21px;
  height: 14px;
  margin-right: 3px;
  display: inline-block;
}

.calendarTable td div .country-name {
  vertical-align: 2px;
}

.calendarTable td div .country-name-eu {
  display: none;
}

.calendarTable td div .country-name-flag {
  width: 150px;
  display: inline-block;
}

.schedule-tokyo-title {
  color: #0B4196;
}

.schedule-kyoto-title {
  color: #900E81;
}

.schedule-online-title {
  color: #16A29A;
}

/* .schedule-hiroshima-title {
  color: #16A29A;
} */

.schedule-hiroshima-title {
  color: #946133;
}

.schedule-tokyo-table {
  border-color: rgba(11, 65, 150, 0.5);
}

.schedule-tokyo-table th, .schedule-tokyo-table td {
  border-color: rgba(11, 65, 150, 0.5);
}

.schedule-tokyo-table td div:not(:first-child) {
  border-top: 1px dotted rgba(11, 65, 150, 0.5);
}

.schedule-tokyo-table tr:nth-child(odd) {
  background-color: rgba(11, 65, 150, 0.1);
}

.schedule-tokyo-table tr:nth-child(even) {
  background-color: rgba(11, 65, 150, 0.02);
}

.schedule-kyoto-table {
  border-color: rgba(144, 14, 129, 0.5);
}

.schedule-kyoto-table th, .schedule-kyoto-table td {
  border-color: rgba(144, 14, 129, 0.5);
}

.schedule-kyoto-table td div:not(:first-child) {
  border-top: 1px dotted rgba(144, 14, 129, 0.5);
}

.schedule-kyoto-table tr:nth-child(odd) {
  background-color: rgba(144, 14, 129, 0.1);
}

.schedule-kyoto-table tr:nth-child(even) {
  background-color: rgba(144, 14, 129, 0.02);
}

/* .schedule-hiroshima-table {
  border-color: rgba(22, 162, 154, 0.5);
}

.schedule-hiroshima-table th, .schedule-hiroshima-table td {
  border-color: rgba(22, 162, 154, 0.5);
}

.schedule-hiroshima-table td div:not(:first-child) {
  border-top: 1px dotted rgba(22, 162, 154, 0.5);
}

.schedule-hiroshima-table tr:nth-child(odd) {
  background-color: rgba(22, 162, 154, 0.1);
}

.schedule-hiroshima-table tr:nth-child(even) {
  background-color: rgba(22, 162, 154, 0.02);
} */

.schedule-hiroshima-table {
  border-color: rgba(148, 97, 51, 0.5);
}

.schedule-hiroshima-table th, .schedule-hiroshima-table td {
  border-color: rgba(148, 97, 51, 0.5);
}

.schedule-hiroshima-table td div:not(:first-child) {
  border-top: 1px dotted rgba(148, 97, 51, 0.5);
}

.schedule-hiroshima-table tr:nth-child(odd) {
  background-color: rgba(148, 97, 51, 0.1);
}

.schedule-hiroshima-table tr:nth-child(even) {
  background-color: rgba(148, 97, 51, 0.02);
}

.schedule-anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -2px;
}

.schedule-anchor-list > div {
  padding: 0 2px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.schedule-anchor-list .acms-btn {
  padding-left: 0;
  padding-right: 0;
}

.schedule-anchor-list .acms-btn.btn-tokyo {
  background-color: #0B4196;
  border-color: #0B4196;
  color: #fff !important;
}

.schedule-anchor-list .acms-btn.btn-tokyo:hover {
  background-color: rgba(11, 65, 150, 0.2);
  color: #0B4196 !important;
}

.schedule-anchor-list .acms-btn.btn-kyoto {
  background-color: #900E81;
  border-color: #900E81;
  color: #fff !important;
}

.schedule-anchor-list .acms-btn.btn-kyoto:hover {
  background-color: rgba(144, 14, 129, 0.2);
  color: #900E81 !important;
}

.schedule-anchor-list .acms-btn.btn-online {
  background-color: #16A29A;
  border-color: #16A29A;
  color: #fff !important;
}

.schedule-anchor-list .acms-btn.btn-online:hover {
  background-color: rgba(22, 162, 154, 0.2);
  color: #16A29A !important;
  text-decoration: none;
}

.schedule-anchor-list .acms-btn.btn-online:active, .schedule-anchor-list .acms-btn.btn-online:focus {
  text-decoration: none;
}

.schedule-anchor-list .acms-btn.btn-hiroshima {
  background-color: #16A29A;
  border-color: #16A29A;
  color: #fff !important;
}

.schedule-anchor-list .acms-btn.btn-hiroshima:hover {
  background-color: rgba(22, 162, 154, 0.2);
  color: #16A29A !important;
}

.schedule-anchor-list .acms-btn.btn-hiroshima {
  background-color: #946133;
  border-color: #946133;
  color: #fff !important;
}

.schedule-anchor-list .acms-btn.btn-hiroshima:hover {
  background-color: rgba(148, 97, 51, 0.2);
  color: #946133 !important;
}

/**
 * SNS
 */
.fb-tw-container {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fb-tw-container .fb-container {
  margin: 10px 0;
  width: 340px;
  max-width: calc(100vw - 20px);
}

.fb-tw-container .tw-container {
  margin: 10px 0;
}

.sns-container {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px;
}

@media (min-width: 768px) {
  .fb-tw-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fb-tw-container .fb-container {
    margin: 10px;
  }
  .fb-tw-container .tw-container {
    margin: 10px;
  }
}

.special-program-title {
  margin: 0;
  background-color: rgba(0, 78, 167, 0.3);
  color: #004ea7;
  font-size: 16px;
  padding: 4px 8px;
}

.special-program {
  background-color: rgba(255, 242, 0, 0.1);
  padding: 20px;
  margin-bottom: 30px;
}

.special-program :first-child {
  margin-top: 0 !important;
}

.special-program ul {
  padding-left: 1.5em;
}

/**
 * ページタイトル
 */
/**
 * ヘッダー
 */
.sns-link-container {
  float: right;
  margin-top: 30px;
}

/**
 * ユーティリティ
 */
.acms-summary-body-date {
  margin-bottom: 5px;
  display: inline-block;
}

.link-list-genre li.lineup-category-1 a {
  background-color: rgba(137, 186, 224, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-1 a:hover, .link-list-genre li.lineup-category-1 a.stay {
  background-color: #89BAE0;
  color: #fff;
}

.link-list-genre li.lineup-category-2 a {
  background-color: rgba(165, 167, 212, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-2 a:hover, .link-list-genre li.lineup-category-2 a.stay {
  background-color: #A5A7D4;
  color: #fff;
}

.link-list-genre li.lineup-category-3 a {
  background-color: rgba(222, 163, 183, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-3 a:hover, .link-list-genre li.lineup-category-3 a.stay {
  background-color: #DEA3B7;
  color: #fff;
}

.link-list-genre li.lineup-category-4 a {
  background-color: rgba(227, 185, 125, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-4 a:hover, .link-list-genre li.lineup-category-4 a.stay {
  background-color: #E3B97D;
  color: #fff;
}

.link-list-genre li.lineup-category-5 a {
  background-color: rgba(203, 213, 157, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-5 a:hover, .link-list-genre li.lineup-category-5 a.stay {
  background-color: #CBD59D;
  color: #fff;
}

.link-list-genre li.lineup-category-6 a {
  background-color: rgba(143, 199, 195, 0.5);
  color: #000;
}

.link-list-genre li.lineup-category-6 a:hover, .link-list-genre li.lineup-category-6 a.stay {
  background-color: #8FC7C3;
  color: #fff;
}

.link-list-genre li.lineup-category-7 a {
  background-color: #004098;
  color: #fff;
}

.link-list-genre li.lineup-category-7 a:hover, .link-list-genre li.lineup-category-7 a.stay {
  background-color: #004098;
  color: #fff;
}

.label-lineup-category-1 {
  background-color: rgba(137, 186, 224, 0.5);
}

.label-lineup-category-2 {
  background-color: rgba(165, 167, 212, 0.5);
}

.label-lineup-category-3 {
  background-color: rgba(222, 163, 183, 0.5);
}

.label-lineup-category-4 {
  background-color: rgba(227, 185, 125, 0.5);
}

.label-lineup-category-5 {
  background-color: rgba(203, 213, 157, 0.5);
}

.label-lineup-category-6 {
  background-color: rgba(143, 199, 195, 0.5);
}

.label-lineup-category-7 {
  background-color: #004098;
  color: #fff;
}

.filtering {
  border: 1px dotted #004ea7;
  padding: 20px 20px 0 20px;
  margin-bottom: 30px;
}

.filtering-title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filtering-title-wrapper .filtering-title {
  font-size: 16px;
  margin: 0 10px 20px 0;
}

.filtering-title-wrapper a.btn-unfilter {
  color: #004ea7;
}

.filtering-title-wrapper a.btn-unfilter:hover {
  text-decoration: none;
  color: rgba(0, 78, 167, 0.5);
}

.double-border {
  display: inline-block;
  position: relative;
}

.double-border::before {
  content: '';
  width: 100%;
  height: 1px;
  border-top: solid 1px red;
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
}

.double-border::after {
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: solid 1px red;
  position: absolute;
  left: 0;
  bottom: calc(50% - 3px);
}

ul.organizers-list-large.organizers-list-large--italia li a span.text {
  margin-top: 0;
}

ul.organizers-list-large.organizers-list-large--italia li a:nth-child(2) {
  margin-top: 5px;
}

ul.asterisk {
  padding-left: 0;
}

ul.asterisk li {
  list-style-type: none;
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1.25em;
}

ul.asterisk li:before {
  content: "※";
  position: absolute;
  display: inline-block;
  top: -.25em;
  left: 0;
}

h5 {
  font-size: 1rem;
  margin: .25em 0;
}

h6 {
  margin: .25em 0;
  font-size: 0.75rem;
}

.text-muted {
  color: #aaa;
}

.lang-ja .schedule-tokyo-table .monday td,
.lang-ja .schedule-kyoto-table .monday td:not(.date-7-18),
.lang-ja .schedule-hiroshima-table .monday td,
.lang-en .schedule-tokyo-table .monday td,
.lang-en .schedule-kyoto-table .monday td:not(.date-7-18),
.lang-en .schedule-hiroshima-table .monday td
 {
  vertical-align: middle;
  text-align: center;
}

.lang-ja .schedule-tokyo-table .monday td::after,
.lang-ja .schedule-kyoto-table .monday td:not(.date-7-18)::after,
.lang-ja .schedule-hiroshima-table .monday td::after {
  content: '休館日';
  display: inline-block;
}


.lang-en .schedule-tokyo-table .monday td::after,
.lang-en .schedule-kyoto-table .monday td:not(.date-7-18)::after,
.lang-en .schedule-hiroshima-table .monday td::after {
  content: 'Venue closed';
  display: inline-block;
}


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