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

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  background: #FFF;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

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

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

nav ul {
  list-style: none;
}

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

dl {
  margin: 0;
}
dl + dl {
  margin-top: 30px;
}

dd {
  margin: 0;
}

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

figure {
  margin: 0;
}

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

strong, .strong {
  font-weight: bold;
}

.hide-sp {
  display: none;
}

.hide-pc {
  display: block;
}

/* リンクの設定 */
a {
  color: #333;
  text-decoration: none;
  border: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
table a, p a, a.link {
  color: blue;
  text-decoration: underline;
}
a.link-black {
  color: #333;
  text-decoration: none;
}
a.link-black:hover {
  opacity: 1;
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
  text-decoration: none;
}
table a:visited, p a:visited, a:visited.link {
  color: blue;
  text-decoration: underline;
}

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

a:hover {
  color: #333;
  text-decoration: none;
}
table a:hover, p a:hover {
  color: blue;
  opacity: 0.65;
  text-decoration: underline;
}

.br-sp {
  display: block;
}

.br-pc {
  display: none;
}

.f-palt {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

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

.text-left {
  text-align: left;
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}
.text-indent.__count {
  text-indent: -2.6em;
  padding-left: 2.6em;
}

.word-break {
  display: inline-block;
}

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

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

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

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

/* 区切り線 */
hr {
  margin: 0 auto;
  border: 0;
  border-top: 1px solid #333;
}
hr.hr-long {
  border-top: 1px solid #333;
}
.acms-container hr.hr-long, .narrow-container hr.hr-long {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
hr.__thin {
  border-top: 1px solid #DDD;
}

/* セクション */
.section {
  padding: 70px 0 80px;
}

/* 背景 */
.bgc-gray {
  background: #F2F2F2;
}

.bgc-blue {
  background: #F0F6FA;
}

/* タイトル */
.cap-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 1.56em;
}
.cap-title .__en {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  color: #0099FF;
  display: block;
  padding-top: 10px;
}

.color-title {
  font-size: 24px;
  color: #0A89DE;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  margin: 0 0 1.68em;
}
.color-title.__black {
  color: #333;
}
.color-title.__f-small {
  font-size: 22px;
}

.bg-title {
  font-size: 20px;
  font-weight: 500;
  background: #0099FF;
  color: #FFF;
  line-height: 1.5;
  padding: 9px 20px;
  margin: 0 0 1.25em;
}

/* テーブルレイアウト */
.color-table-layout {
  width: 100%;
}
.color-table-layout th, .color-table-layout td {
  text-align: left;
  padding: 15px 5.33%;
  line-height: 1.8;
  vertical-align: text-top;
}
.color-table-layout th {
  font-size: 16px;
  background: #F2F2F2;
  font-weight: 500;
  text-transform: uppercase;
}

.border-table-layout {
  width: 100%;
}
.border-table-layout th, .border-table-layout td {
  text-align: left;
  padding: 15px 5.33%;
  line-height: 1.8;
  border-bottom: 1px solid #DDD;
}
.border-table-layout th {
  font-size: 16px;
}

/* フレックボックス */
.display-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.display-flex div {
  width: 100%;
}

/* アイコン */
.icon-outlink {
  margin-left: 10px;
  vertical-align: -2px;
}

/* 管理バー位置調整 */
#adminBox, .acms-admin-box {
  margin-top: 20px;
}

/* フォントカラー */
.f-color-red {
  color: #E02B5C;
}

/* フォントサイズ */
.f-size14 {
  font-size: 14px;
}

.f-size16 {
  font-size: 16px;
}

.f-size18 {
  font-size: 18px;
}

.f-size20 {
  font-size: 20px;
}

.f-size22 {
  font-size: 22px;
}

.f-size24 {
  font-size: 24px;
}

/* フォントweight */
.f-weight500 {
  font-weight: 500;
}

/* padding */
.pb0 {
  padding-bottom: 0 !important;
}

/* マージン */
.mt0 {
  margin-top: 0;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt70 {
  margin-top: 70px;
}

.mt80 {
  margin-top: 80px;
}

.mt90 {
  margin-top: 90px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb100 {
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .acms-container, .narrow-container, .medium-container, .flow-container {
    padding-right: 5.33%;
    padding-left: 5.33%;
  }
  .color-table-layout th, .color-table-layout td {
    display: block;
    width: 100%;
    padding: 8px 5.33%;
  }
  .border-table-layout th, .border-table-layout td {
    display: block;
    width: 100%;
    padding: 8px 5.33%;
  }
  .icon-outlink {
    width: 15px;
    height: auto;
    margin-left: 5px;
  }
}
@media (min-width: 768px) {
  .hide-sp {
    display: block;
  }
  .hide-pc {
    display: none;
  }
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .section {
    padding: 90px 0 120px;
  }
  /* タイトル */
  .cap-title {
    font-size: 32px;
  }
  .color-title {
    font-size: 28px;
  }
  .color-title.__f-small {
    font-size: 24px;
  }
  .bg-title {
    font-size: 24px;
    padding: 12px 20px;
    text-align: center;
  }
  .color-table-layout {
    border-top: 1px solid #DDD;
  }
  .color-table-layout th, .color-table-layout td {
    padding: 14px 24px;
    border-bottom: 1px solid #DDD;
  }
  .color-table-layout th.__middle, .color-table-layout td.__middle {
    vertical-align: middle;
  }
  .color-table-layout th {
    font-size: 18px;
    width: 30%;
  }
  .color-table-layout td {
    font-size: 16px;
    width: 70%;
  }
  .border-table-layout {
    border-top: 1px solid #DDD;
  }
  .border-table-layout th, .border-table-layout td {
    padding: 14px 24px;
    vertical-align: text-top;
  }
  .border-table-layout th.__middle, .border-table-layout td.__middle {
    vertical-align: middle;
  }
  .border-table-layout th {
    font-size: 18px;
    width: 30%;
  }
  .border-table-layout td {
    font-size: 16px;
    width: 70%;
  }
  .display-flex.__2col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .display-flex.__2col > div {
    width: 47.4%;
  }
  /* sp-16px pc-18px*/
  .intro-text {
    font-size: 18px;
    line-height: 2.5;
  }
}
/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0;
  padding: 0;
  list-style: none;
}
.banner a {
  display: block;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
}
.banner a:hover {
  opacity: 0.75;
}

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

/* ------------------------------
　　ボタン
------------------------------ */
/* ボタン　青(エントリー) */
.btn {
  background: #0099FF;
  border: 0;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}
.btn:hover, .btn:visited {
  color: #FFF;
  text-decoration: none;
}
.btn:focus, .btn:active {
  color: #FFF;
}
.btn:hover {
  color: #FFF;
  background-color: #999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
  background-image: linear-gradient(to bottom, #C1C1C1, #999);
}
.btn:active, .btn:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}

/* ボタン　色付き　(エントリー) */
.btn-attention {
  background: #FFA500;
  border: 0;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}
.btn-attention:hover, .btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention:focus, .btn-attention:active {
  color: #FFF;
}
.btn-attention:hover {
  color: #FFF;
  background-color: #FFA500;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA500));
  background-image: linear-gradient(to bottom, #FDD87D, #FFA500);
}
.btn-attention:active, .btn-attention:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}

/* ボタンサイズ大 (青) */
.btn-large {
  background: #0099FF;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 32px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  max-width: 300px;
}
.btn-large:hover, .btn-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-large:focus, .btn-large:active {
  color: #FFF;
}
.btn-large:hover {
  opacity: 0.7;
}
.btn-large:active, .btn-large:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}
.btn-large::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
  border-color: #FFF #FFF transparent transparent;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
.btn-large.__back::before {
  position: absolute;
  right: auto;
  left: 14px;
}
.btn-large.__border {
  color: #0A89DE;
  background: transparent;
  border: 2px solid #0099FF;
  padding: 13px 30px;
}
.btn-large.__border.__back::before {
  border-color: transparent transparent #0099FF #0099FF;
  right: auto;
  left: 14px;
}
.btn-large.__border.__back:hover::before {
  border-color: transparent transparent #FFF #FFF;
}
.btn-large.__border:hover {
  opacity: 1;
  background: #0099FF;
  color: #FFF;
  text-decoration: none;
}
.btn-large.__border:hover::before {
  border-color: #FFF #FFF transparent transparent;
}
.btn-large.__border:active, .btn-large.__border:focus {
  -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.__border::before {
  border-color: #0099FF #0099FF transparent transparent;
}
.btn-large.__out-link {
  padding: 13px 40px 13px 30px;
}
.btn-large.__out-link::before {
  content: "外部リンクへ";
  font-size: 0;
  width: 20px;
  height: 20px;
  background: url(../../images/marker/icon-outlink-btn.svg) no-repeat center/cover;
  border: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.btn-large.__out-link:hover::before {
  background: url(../../images/marker/icon-outlink-btn-h.svg) no-repeat center/cover;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  background: #FFA500;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 32px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  width: 300px;
}
.btn-attention-large:hover, .btn-attention-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention-large:focus, .btn-attention-large:active {
  color: #FFF;
}
.btn-attention-large:hover {
  opacity: 0.7;
}
.btn-attention-large:active, .btn-attention-large:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}
.btn-attention-large::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
  border-color: #FFF #FFF transparent transparent;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}
.btn-attention-large.__border {
  color: #FFA500;
  background: transparent;
  border: 2px solid #FFA500;
}
.btn-attention-large.__border:hover {
  opacity: 1;
  background: #FFA500;
  color: #FFF;
}
.btn-attention-large.__border:hover::before {
  border-color: #FFF #FFF transparent transparent;
}
.btn-attention-large.__border:active, .btn-attention-large.__border:focus {
  -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.__border::before {
  border-color: #FFA500 #FFA500 transparent transparent;
}

/* デスクトップ：最大430pxボタン */
.btn-block-large {
  width: 100%;
  background: #0099FF;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 32px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.btn-block-large:hover, .btn-block-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-block-large:focus, .btn-block-large:active {
  color: #FFF;
}
.btn-block-large:hover {
  background: #777;
}
.btn-block-large:active, .btn-block-large:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}
.btn-block-large::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
  border-color: #FFF #FFF transparent transparent;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}

/* デスクトップ：最大430pxボタン 色付き */
.btn-attention-block-large {
  width: 100%;
  background: #FFA500;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  text-align: center;
  border-radius: 32px;
  font-size: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.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;
}
.btn-attention-block-large:hover {
  background: #FF7E00;
}
.btn-attention-block-large:active, .btn-attention-block-large:focus {
  -webkit-filter: saturate(80%);
          filter: saturate(80%);
}
.btn-attention-block-large::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid;
  border-radius: 2px;
  border-color: #FFF #FFF transparent transparent;
  position: absolute;
  right: 14px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
}

.btn-box.__center {
  text-align: center;
}
.btn-box.__flex .btn-large + .btn-large {
  margin-top: 20px;
}

@media screen and (max-width: 320px) {
  .btn-large, .btn-attention-large {
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .btn-large, .btn-attention-large {
    max-width: 360px;
    width: 100%;
  }
  .btn-large.__fit-content, .btn-attention-large.__fit-content {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
  .btn-large.__pc-height, .btn-attention-large.__pc-height {
    padding: 17px 30px;
  }
  .btn-block-large {
    max-width: 430px;
  }
  .btn-attention-block-large {
    max-width: 430px;
  }
  .btn-box.__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .btn-box.__flex .btn-large {
    width: 100%;
  }
  .btn-box.__flex .btn-large + .btn-large {
    margin: 0 0 0 30px;
  }
}
@media (max-width: 767px) {
  .btn-large, .btn-attention-large {
    min-width: 75.46%;
  }
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 15px 20px;
    font-size: 20px;
  }
}
/* ボーダーボタン */
.home-btn {
  margin: 20px auto 10px;
}

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

/* ------------------------------
　　カード
------------------------------ */
.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.card-list.__3col {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.card-list.__3col .card-title {
  font-size: 16px;
  font-weight: normal;
}
.card-list._biggerImg .card-img-wrap {
  margin-bottom: 0;
}
.card-list._biggerImg .card-img-wrap::before {
  padding-top: 100%;
}
.card-list._biggerImg .card-txt-wrap {
  padding-top: 15px;
}
.card-list._biggerImg .card-title {
  margin-top: 0;
}

.card {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.card-link {
  display: block;
  margin: 0 -15px;
  padding: 0 15px;
  color: #333;
}
.card-link:hover {
  text-decoration: none;
}
.card-link:hover, .card-link:visited, .card-link:active, .card-link:focus {
  color: #333;
}

.card-link:hover .card-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.card-img-wrap {
  width: 100%;
  position: relative;
  z-index: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 0 20px;
  overflow: hidden;
}
.card-img-wrap::before {
  content: "";
  display: block;
  padding-top: 66.56%;
}

.card-img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -webkit-transition: 0.6s all;
  transition: 0.6s all;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.card-title {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.7;
}

.card-time {
  font-size: 12px;
  vertical-align: text-bottom;
  margin-right: 15px;
}

.card-category {
  float: right;
  font-size: 12px;
  font-weight: bold;
  color: #0099FF;
  margin: 0;
}

.card-badge-news {
  margin: 0 0 0 10px;
  padding: 0 10px;
  color: #E02B5C;
  border: 1px solid #E02B5C;
}

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

@media (max-width: 767px) {
  .card-item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .card-list.__3col .card-title {
    font-size: 18px;
  }
  .card-list._biggerImg .card {
    border: 1px solid #ddd;
    margin-bottom: 40px;
  }
  .card-list._biggerImg .card-item:nth-last-child(-n+4) .card {
    margin-bottom: 30px;
  }
  .card-list._biggerImg .card-link {
    padding: 0 10px;
  }
  .card-list._biggerImg .card-txt-wrap {
    padding: 20px;
  }
  .card-list._biggerImg .card-title {
    margin-top: 0;
  }
  .card-list._biggerImg .card-category {
    float: none;
    display: inline-block;
    vertical-align: text-bottom;
    font-weight: normal;
  }
  .card-time {
    font-size: 14px;
  }
  .card-category {
    font-size: 14px;
  }
}
/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  border-bottom: 2px solid #DDD;
}

.headline-link {
  color: #333;
  padding: 15px 0;
  display: block;
  -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 .headline-title {
  text-decoration: underline;
}

.headline-dat {
  font-size: 14px;
}

.headline-cate {
  font-size: 14px;
  font-weight: 500;
  color: #0A89DE;
  margin-left: 15px;
}

.headline-title {
  display: block;
}

@media screen and (max-width: 479px) { /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-title {
    display: block;
    margin: 0;
  }
}
/* ------------------------------
　　リスト
------------------------------ */
.summary-list-item:first-child {
  margin-top: 60px;
}
.summary-list-item + .summary-list-item {
  margin-top: 60px;
}

.summary-list-header h2 {
  font-size: 24px;
  font-weight: 500;
  margin: -12px 0 30px;
}

a.list-link.acms-list-group-item {
  padding: 16px 35px 16px 20px;
  position: relative;
}
a.list-link.acms-list-group-item::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid;
  border-color: #555 #555 transparent transparent;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(45deg);
  transform: translate(0, -50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 15px 20px 15px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-item:hover {
    padding: 15px 10px 15px 20px;
    -webkit-transition: padding 0.25s ease-out;
    transition: padding 0.25s ease-out;
  }
  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 15px 30px 15px 10px;
    -webkit-transition: padding 0.15s ease-out;
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-label-parent:hover {
    padding: 15px 30px 15px 20px;
  }
  .summary-list-item:first-child {
    margin-top: 0;
  }
}
/* 検索結果 */
.list-results-wrap {
  margin: 15px 0 15px 0;
  padding: 10px;
  border: 1px solid #CCC;
}

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

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

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

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

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

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}
.module-header + .thumbnail, .module-header + .summary-default, .module-header + .entry-column, .module-header + .card, .module-header + .search-form, .module-header + .banner {
  margin-top: 10px;
}

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

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
  font-size: 16px;
}
a.module-index-link [class*=acms-icon-] {
  color: #CCC;
  font-size: 14px;
}

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

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

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

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

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: 160px;
  color: #FFF;
  background: #0099FF;
}

.page-title-filter {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

.page-title {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.page-title span {
  font-size: 14px;
  font-weight: normal;
  text-transform: uppercase;
  display: block;
  padding-top: 10px;
}
.page-title a {
  color: #FFF;
}

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

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 180px;
  }
  .page-title {
    font-size: 32px;
  }
  .page-title span {
    padding-top: 13px;
  }
}
/* ------------------------------
　　ページャー
------------------------------ */
.pager-display {
  font-size: 16px;
  margin: 30px 0;
}

.pager {
  margin: 0 -5px;
  padding: 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline-block;
  margin: 0 5px;
  line-height: 13.33vw;
}
.pager li.cur { /* 現在いる位置 */
  width: 13.33vw;
  height: 13.33vw;
  line-height: 13.33vw;
  color: #fff;
  background: #0A89DE;
  border: 2px solid #0A89DE;
  font-size: 18px;
  font-weight: bold;
}
.pager li.back-link svg, .pager li.last-page svg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.pager-link {
  width: 50px;
  height: 50px;
  display: block;
  line-height: 48px;
  color: #0A89DE;
  border: 2px solid #0A89DE;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .pager-link {
    line-height: 44px;
  }
}
.pager-link:visited, .pager-link:focus, .pager-link:active {
  color: #0A89DE;
}
.pager-link:hover {
  color: #fff;
  text-decoration: none;
  background: #0A89DE;
}
.pager-link:hover svg {
  fill: #fff;
}
.pager-link:hover svg line {
  stroke: #fff;
}
.back-link .pager-link, .forward-link .pager-link {
  width: auto;
  position: relative;
}
.back-link .pager-link svg, .forward-link .pager-link svg {
  position: absolute;
  top: 16px;
}
.back-link .pager-link {
  padding: 0 15px 0 30px;
}
.back-link .pager-link svg {
  left: 12px;
}
.forward-link .pager-link {
  padding: 0 30px 0 15px;
}
.forward-link .pager-link svg {
  right: 12px;
}
.pager-link svg {
  fill: #0A89DE;
}
.pager-link svg line {
  stroke: #0A89DE;
}

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

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

@media screen and (max-width: 320px) {
  .pager li {
    margin: 0;
  }
}
@media screen and (min-width: 768px) {
  .pager-display {
    font-size: 18px;
  }
  .pager li {
    line-height: 50px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .pager li {
    line-height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .pager li.cur { /* 現在いる位置 */
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .pager-link {
    width: 50px;
    height: 50px;
    line-height: 45px;
  }
}
@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .pager-link {
    line-height: 44px;
  }
}
@media screen and (min-width: 768px) {
  .first-page .pager-link, .last-page .pager-link {
    width: auto;
    position: relative;
  }
  .first-page .pager-link svg, .last-page .pager-link svg {
    position: absolute;
    top: 16px;
  }
  .first-page .pager-link {
    padding: 0 15px 0 30px;
  }
  .first-page .pager-link svg {
    left: 12px;
  }
  .last-page .pager-link {
    padding: 0 30px 0 15px;
  }
  .last-page .pager-link svg {
    right: 12px;
  }
}
/* 前後リンク */
.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-prev svg {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.serial-nav .serial-nav-item-prev span {
  padding-left: 10px;
}
.serial-nav .serial-nav-item-next {
  text-align: right;
}
.serial-nav .serial-nav-item-next span {
  padding-right: 10px;
}
.serial-nav a {
  display: block;
  padding: 15px 0;
  color: #333;
  border-bottom: 1px solid #DDD;
}
.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: #FAFAFA;
}
.serial-nav a span {
  vertical-align: text-bottom;
}

@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-prev span {
    padding-left: 10px;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    display: inline;
    padding: 25px 0;
    border: 0;
  }
  .serial-nav a:hover {
    text-decoration: underline;
    background: 0;
  }
  .serial-nav a span {
    vertical-align: 2px;
  }
}
/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #FFF;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  -webkit-filter: none;
          filter: none; /* IEでのグラデーションを上書き */
  font-size: 16px;
}
.search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
  background: #666;
}
.search-form input[type=search] {
  height: 40px;
  padding: 9px 10px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 矢印ナビゲーション */
.slick-prev,
.slick-next {
  position: absolute;
  top: calc(50% - 30px);
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -29px;
  padding: 0;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.slick-prev:focus,
.slick-next:focus {
  border: 1px dotted #FFF;
}
.slick-prev:hover,
.slick-next:hover {
  opacity: 0.7;
}

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

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

.js-slider-emg {
  max-width: 1190px;
  margin: 0 auto;
}
.js-slider-emg .slick-slide {
  margin: 0 11px;
}
.js-slider-emg .slider-item p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin: 16px 0;
}
@media (max-width: 767px) {
  .js-slider-emg .slick-slide.slick-cloned:nth-child(2) {
    display: none;
  }
}
@media (max-width: 1200px) {
  .js-slider-emg .slick-list {
    position: relative;
  }
  .js-slider-emg .slick-list::before, .js-slider-emg .slick-list::after {
    content: "";
    width: 15.74%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
  }
  .js-slider-emg .slick-list::before {
    left: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(0.1%, #FFF), to(transparent));
    background: linear-gradient(to right, #FFF 0.1%, transparent);
  }
  .js-slider-emg .slick-list::after {
    right: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(0.1%, #FFF), to(transparent));
    background: linear-gradient(to left, #FFF 0.1%, transparent);
  }
}

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  .slick-slide {
    margin: 0 13px;
  }
  .slick-prev {
    left: 0;
  }
  .slick-next {
    right: 0;
  }
  .slick-dots li button {
    width: 16px;
    height: 16px;
    margin: 0 5px;
  }
  .fix-height {
    height: 400px; /* はじめのちらつき防止 */
  }
  .main-slider-image {
    height: 400px;
  }
  .main-slider-main-copy {
    font-size: 40px;
  }
  .main-slider-side-copy {
    font-size: 24px;
  }
}
/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #FAFAFA;
  border-left: 1px solid #FAFAFA;
}
.summary-default:before, .summary-default:after {
  display: table;
  content: " ";
}
.summary-default:after {
  clear: both;
}
.summary-default.slick-initialized {
  margin-right: -20px;
  margin-left: -20px;
  overflow: hidden;
  border: 0;
}
.summary-default .slick-list {
  padding: 0 0 0 20px;
  overflow: inherit;
}
.summary-default .slick-dots {
  margin: 0;
}
.summary-default .slick-dots button {
  background: #FAFAFA;
}
.summary-default .slick-dots .slick-active button {
  background: #0099FF;
}

.summary-default-item {
  display: block;
  padding: 0 15px;
  color: #333;
  border-right: 1px solid #FAFAFA;
  border-bottom: 1px solid #FAFAFA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.25s ease-out;
  transition: background-color 0.25s ease-out;
}
.acms-entry .summary-default-item {
  padding: 15px;
}
.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  -webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
}

.summary-default-link {
  display: block;
  margin: 0 -15px;
  padding: 10px;
  color: #333;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.summary-default-link:hover, .summary-default-link:visited, .summary-default-link:active, .summary-default-link:focus {
  color: #333;
}
.summary-default-link:hover {
  text-decoration: none;
  background: #F1F1F1;
}

.summary-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-item {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.thumbnail-item:hover {
  opacity: 0.75;
}

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

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

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

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  margin-top: 80px;
  padding: 10px 0;
  background: #F0F6FA;
}

.topicpath-list {
  max-width: 1300px;
  margin: 0 auto;
  list-style: none;
}

.topicpath-item {
  line-height: 1.7;
  font-size: 14px;
  float: left;
  padding: 0 0 0 33px;
  background: url("../../images/marker/icon_arrow.png") no-repeat left 13px top 7px;
  background-size: 10px;
  position: relative;
}
.topicpath-item:first-child {
  padding: 0 0 0 25px;
  background: 0;
}

.icon-home {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 2px;
  left: 0;
}
.icon-home svg {
  fill: #0A89DE;
}

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

@media (min-width: 768px) {
  .topicpath {
    padding: 16px 0;
  }
  .topicpath-item {
    padding: 0 0 0 46px;
    background-position: left 19px top 7px;
  }
}
@media screen and (min-width: 1025px) {
  .topicpath {
    margin-top: 169px;
  }
}
/* ------------------------------
 ユニットグループ
------------------------------- */
/* ------------------------------
 フロート解除
------------------------------ */
.clearHidden {
  display: block;
  clear: both;
  height: 0;
  margin: 0;
  border: none;
  visibility: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* 画像・メディア・画像URLの共通設定 */
[class*=column-image],
[class*=column-media],
[class*=column-eximage] {
  display: block;
}
[class*=column-image].caption,
[class*=column-media].caption,
[class*=column-eximage].caption {
  margin-bottom: 10px;
}
[class*=column-image] a,
[class*=column-media] a,
[class*=column-eximage] a {
  display: block;
}
[class*=column-image] img,
[class*=column-media] img,
[class*=column-eximage] img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
[class*=column-image] .caption,
[class*=column-media] .caption,
[class*=column-eximage] .caption {
  margin: 5px 0 0 0;
}

/* 画像ユニットの設定 */
[class*=column-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]):not([href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}

.column-media-right {
  float: right;
  text-align: right;
}
.column-media-right *:not([href*=media-download]):not([href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  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]):not([href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}

.column-media-auto {
  float: none;
}
.column-media-auto *:not([href*=media-download]):not([href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.highlight2 {
  background-color: #a0FFFF;
}

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

.highlight4 {
  background-color: #FF9999;
}

.highlight5 {
  background-color: #FF66FF;
}

.highlight6 {
  background-color: #880000;
}

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

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

.entry-info {
  margin: 0 0 10px;
  font-size: 16px;
}
.entry-info time {
  font-size: 16px;
  margin: 0 15px 0 0;
}

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

.entry-category {
  color: #0A89DE;
  font-weight: 500;
}
.entry-category:first-of-type {
  color: #0A89DE;
}
.entry-category:nth-of-type(n+2) {
  display: none;
}
.entry-category:hover, .entry-category:visited {
  color: #0A89DE;
}

/* タイトル */
.entry-title {
  margin: 10px 0;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 500;
}
.entry-title a {
  color: #333;
}
.acms-entry h2 .entry-title {
  padding: 0;
}

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

@media screen and (min-width: 768px) {
  .entry-title {
    font-size: 32px;
  }
}
/* エントリーのスタイル */
.entry-column {
  color: #333;
  word-wrap: break-word;
}
.entry-column h2 {
  margin: 25px 15px 25px 15px;
  padding: 5px 0 5px 10px;
  font-size: 24px;
  font-weight: 500;
  border-left: 4px solid #0099FF;
}
.entry-column h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}
.entry-column h3 {
  margin: 0 15px 20px 15px;
  padding: 5px 10px;
  font-size: 18px;
  color: #333;
  color: #333;
  background: #FAFAFA;
}
.entry-column h4 {
  margin: 0 15px 20px 15px;
  font-size: 18px;
  color: #333;
}
.entry-column a:link {
  text-decoration: none;
}
.entry-column a:hover, .entry-column a:focus, .entry-column a:active {
  text-decoration: underline;
}
.entry-column a:visited {
  color: #0A89DE;
  text-decoration: none;
}

/* 本文 */
.entry-column p {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.7;
}
.entry-column p.entry-danger-text {
  color: #c41134;
  font-weight: bold;
}
.entry-column p.summary-title {
  margin: 0 0 10px 0;
}
.entry-column p.summary-detail {
  margin: 0 0 10px 0;
  font-size: 14px;
}

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

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

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

/* テーブル */
.entry-column table {
  width: 100%;
  border-collapse: collapse;
}
.entry-column th,
.entry-column td {
  display: block;
  padding: 5px 10px;
  color: #333;
  line-height: 1.5;
  text-align: left;
  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: #F2F2F2;
}
.entry-column .entry-custom-table {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .entry-column table {
    border-bottom: 1px solid #ddd;
  }
  .entry-column th,
  .entry-column td {
    display: table-cell;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    border-top: 1px solid #ddd;
  }
}
/* リスト */
.entry-column ul {
  margin: 0 0 25px 0;
  padding: 0 0 0 2em;
  list-style: disc;
}
.entry-column ul li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}
.entry-column ul.summary-default {
  padding: 0;
}
.entry-column ul.summary-default li {
  margin: 0;
}

/* 番号付きリスト */
.entry-column ol {
  margin: 0 0 25px 0;
  padding: 0 0 0 2.5em;
  list-style: decimal;
}
.entry-column ol li {
  margin: 0 0 5px 0;
  font-size: 16px;
  line-height: 1.5;
}

/* 定義リスト */
.entry-column dl {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}
.entry-column dt {
  margin: 0 0 5px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
}
.entry-column dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
  font-size: 16px;
}

/* 引用 */
.entry-column blockquote {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px 20px 20px;
  line-height: 1.8;
  background: #F5F5F5;
  border-left: 5px solid #DEDEDE;
  font-size: 16px;
}
.entry-column .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #D0D0D0;
}
.entry-column .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media screen and (min-width: 480px) {
  /* 引用 */
  .entry-column blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-column .column-quote-auto blockquote {
    padding: 15px;
  }
}
/* ソースコード */
.entry-column pre {
  width: 100%;
  margin: 0 0 30px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.entry-column pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}
.entry-column pre ol li {
  line-height: 1.5;
}

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

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

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

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

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

/* ユニットグループ */
.ug-bg-color {
  margin: 0 15px 25px 15px;
  padding: 20px 10px;
  background: #F5F5F5;
}
.ug-bg-color *:last-child {
  margin-bottom: 0;
}
.ug-bg-color h2 {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}
.ug-bg-color h3,
.ug-bg-color h4 {
  margin-bottom: 10px;
}

@media screen and (min-width: 480px) {
  .ug-bg-color {
    padding: 25px 15px;
  }
}
/* スタッフ紹介 */
.entry-column .staff-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 15px 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #EEE;
}
.entry-column .staff-item {
  width: 50%;
  margin: 0;
}
.entry-column .staff-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 10px;
  border-bottom: 1px solid #EEE;
}
.entry-column .staff-body {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 20px 0;
}
.entry-column .staff-name {
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 1.3;
  text-align: center;
  background: 0;
  font-size: 20px;
}
.entry-column .staff-job {
  margin: 15px 0 5px 0;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
}
.entry-column .staff-profile {
  margin: 0;
  font-size: 14px;
}
.entry-column .staff-img-wrap {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.entry-column .staff-img {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
}

@media screen and (min-width: 768px) {
  .entry-column .staff-item {
    width: 25%;
  }
  .entry-column .staff-body {
    margin: 0;
  }
}
/* エントリーフッター */
.entry-footer {
  margin: 0 0 20px 0;
  padding: 10px;
  background: #f5f5f5;
}

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }
  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }
}
/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
  /* 色付きボタン */
}
.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #0099FF;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}
.entry-column .entry-btn-default:hover, .entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  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;
}
.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #999;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#C1C1C1), to(#999));
  background-image: linear-gradient(to bottom, #C1C1C1, #999);
}
.entry-column .entry-btn-default:active, .entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #878787;
}
.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #FFA500;
  color: #FFF;
  font-weight: 500;
  line-height: 1.3;
  border: 0;
  position: relative;
  text-decoration: none;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 3px;
}
.entry-column .entry-btn-attention:hover, .entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  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;
}
.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #FFA500;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA500));
  background-image: linear-gradient(to bottom, #FDD87D, #FFA500);
}
.entry-column .entry-btn-attention:active, .entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #EDA800;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 1025px) {
  .main.__top {
    margin-top: 169px;
  }
}
/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
  margin-top: 0;
  font-size: 18px;
}

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.realestate-map {
  overflow: hidden;
}

.realestate-map .js-s2d-ready,
.realestate-map [class*=column-map-] {
  width: auto !important;
  max-width: 100%;
}

.realestate-map img[class*=column-map-] {
  width: auto !important;
  max-width: 100%;
  height: auto;
}

.realestate-map-entry {
  margin: 0 10px;
}

.entry-column table.realestate-search {
  margin: 20px 0 30px 0;
}

@media screen and (min-width: 1024px) {
  .table-nowrap {
    white-space: nowrap;
  }
}
/* 物件情報 */
.realestate-search input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .realestate-search th, .realestate-search td {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .realestate-search input {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px 0;
}
.contact-box .message-text {
  color: #0099FF;
  font-weight: bold;
}
.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
  font-size: 30px;
}
.contact-box .contact-no a {
  color: inherit;
}
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0 0;
  color: #0099FF;
}
.contact-box p {
  line-height: 1.6;
}

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

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

.contact-form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background: #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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

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

@media screen and (min-width: 768px) {
  .contact-form {
    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: #FAFAFA;
  /* カウンターの設定 */
  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: #0099FF;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 5px;
}
.contact-box textarea {
  font-size: 16px;
  padding: 5px 5px 4px;
}
.contact-box select {
  background-color: #f7f7f7;
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 16px;
  vertical-align: top;
}

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

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

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

/* ------------------------------
　　ヘッダー
------------------------------ */
.header {
  width: 100%;
  background: #FFF;
  top: 0;
  z-index: 9999;
  position: fixed;
  top: 0;
}

/* サイト名 */
.site-name {
  font-size: 24px;
  color: #0099FF;
  font-weight: bold;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header-stack .site-name {
  margin: 12px 0 12px 20px;
  width: 164px;
}
.site-name a {
  color: #0099FF;
}
.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #0099FF;
}
.site-name .siteNameText {
  text-indent: 100%;
  height: 0;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

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

.site-name-text {
  display: inline;
  vertical-align: middle;
}

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

.header-nav {
  position: relative;
  display: none;
  border-top: 2px solid #DDD;
  border-bottom: 2px solid #DDD;
  background: #FFF;
}

@media screen and (min-width: 1025px) {
  .site-name {
    font-size: 24px;
  }
  .header-stack.fixed .site-name {
    margin: 12px 0;
    width: 164px;
  }
  .header-stack .site-name {
    margin: 20px 0;
    width: 220px;
  }
  .site-logo {
    width: 210px;
  }
  .header {
    display: table;
    width: 100%;
  }
  .header-stack .header {
    display: block;
  }
  .header-logo {
    width: 100%;
    vertical-align: middle;
  }
  .header-stack .header-logo {
    display: block;
  }
  .header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-nav {
    display: none;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .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-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-btn-wrap .join-btn, .header-btn-wrap .donation-btn {
  width: 240px;
  padding: 14px 25px 14px 10px;
  height: 56px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
}
.header-btn-wrap .join-btn img, .header-btn-wrap .donation-btn img {
  margin-right: 16px;
}
.header-btn-wrap .join-btn img {
  width: 34px;
}
.header-btn-wrap .donation-btn {
  margin-left: 20px;
}
.header-btn-wrap .donation-btn img {
  width: 27px;
}

@media screen and (max-width: 1024px) {
  .header-btn-wrap {
    display: none;
  }
}
/* ------------------------------
　　ナビゲーション
------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  padding: 0 5px;
  background: #FFF;
  border-top: 4px solid #333;
  border-bottom: 1px solid #CCC;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  width: 80px;
  height: 80px;
  padding: 18px 8px;
  font-size: 20px;
  color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-left: 1px solid #0099FF;
  box-sizing: border-box;
}
.nav-menu-btn.__close {
  border-left: none;
  margin: 0 0 0 auto;
  height: 80px;
}
a .nav-menu-btn {
  color: #333;
}
.nav-menu-btn:hover {
  color: #333;
  text-decoration: none;
}
.nav-menu-btn:focus {
  outline: dotted;
}
.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}

.nav-menu-btn-text, .nav-menu-btn-text2 {
  display: block;
  padding: 8px 0 0 0;
  color: #0099FF;
  font-weight: 500;
  font-size: 14px;
}

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

@media screen and (max-width: 1024px) {
  .header-logo > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
  }
}
@media screen and (min-width: 1025px) {
  .mobile-header {
    display: none;
  }
  .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    float: right;
    padding: 0;
    list-style: none;
    position: relative;
  }
  .header-stack .navbar > ul {
    display: table;
    float: none;
    width: 100%;
    table-layout: fixed;
  }
  .navbar li {
    position: relative;
    float: left;
    margin: 0 10px;
    text-align: center;
    vertical-align: middle;
  }
  .navbar li.js-main-menu a {
    padding: 12px 30px 12px 10px;
  }
  .navbar li.js-main-menu a::before, .navbar li.js-main-menu a::after {
    content: "";
    -webkit-transition: 0.25s;
    transition: 0.25s;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .navbar li.js-main-menu a::before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #0099FF;
    right: 7px;
  }
  .navbar li.js-main-menu a::after {
    width: 4px;
    height: 4px;
    border: 1px solid;
    border-radius: 2px;
    border-color: transparent transparent #0099FF #0099FF;
    top: calc(50% - 1px);
    right: 12px;
    -webkit-transform: translate(0, -50%) rotate(-45deg);
            transform: translate(0, -50%) rotate(-45deg);
  }
  .navbar li.js-main-menu li a::before, .navbar li.js-main-menu li a::after {
    content: none;
  }
  .navbar li.__open a::before {
    background: #0099FF;
  }
  .navbar li.__open a::after {
    border-color: #FFF #FFF transparent transparent !important;
    top: calc(50% + 1px) !important;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    display: table-cell;
    float: none;
  }
  .navbar li:last-child::after {
    content: "";
    width: 1px;
    height: 32px;
    background: #DDD;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .navbar li::before {
    content: "";
    width: 1px;
    height: 32px;
    background: #DDD;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .navbar li ul { /* 二階層目 */
    padding-top: 2px;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    z-index: 10;
    display: none;
    min-width: 200px;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
  }
  .navbar li li::before, .navbar li li::after {
    content: none !important;
  }
  .navbar li a { /* 一階層目のリンクのみ */
    padding: 0;
    -webkit-transition: border 0.25s ease-out;
    transition: border 0.25s ease-out;
    cursor: pointer;
    position: relative;
  }
  .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:hover a { /* 一階層目のリンクのみ */ }
  .navbar li:hover a::before {
    background: #0099FF;
  }
  .navbar li:hover a::after {
    border-color: transparent transparent #FFF #FFF;
  }
  .navbar li:hover a.btn-attention {
    border: 0;
  }
  .navbar li:hover li a {
    border: 0;
  }
  .navbar li li { /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #FFF;
    border: 0;
    color: #0099FF;
    border-top: 1px solid #DDD;
  }
  .navbar li li:first-child {
    border: 0;
  }
  .navbar li li a {
    margin: 0;
    padding: 10px 15px;
    color: #333;
    font-weight: normal;
    text-align: center;
    border: 0;
    white-space: nowrap;
  }
  .navbar li li a:hover {
    color: #FFF;
    background: #0099FF;
    border: 0;
  }
  .navbar li li a::before, .navbar li li a::after {
    content: none;
  }
  .navbar a.btn-attention { /* ボタン（色付き） */
    background: #FFA500;
    color: #FFF;
    font-weight: 500;
    line-height: 1.3;
    border: 0;
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 3px;
    border: 0;
  }
  .navbar a.btn-attention:hover, .navbar a.btn-attention:visited {
    color: #FFF;
    text-decoration: none;
  }
  .navbar a.btn-attention:focus, .navbar a.btn-attention:active {
    color: #FFF;
  }
  .navbar a.btn-attention:hover {
    color: #FFF;
    background-color: #FFA500;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#FDD87D), to(#FFA500));
    background-image: linear-gradient(to bottom, #FDD87D, #FFA500);
    border: 0;
  }
  .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
    background: #EDA800;
  }
}
@media (min-width: 768px) {
  .header-logo {
    padding: 0;
  }
  .navbar ul li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px;
  }
}
/* ------------------------------
　　サイドメニュー
------------------------------ */
.navbar-side {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 11px;
  text-align: right;
}

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

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

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

/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 21px;
  height: 3px;
  margin: 7px 0;
  vertical-align: middle;
  background-color: #0099FF;
  border-radius: 1px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.icon-toggle-menu:before, .icon-toggle-menu:after {
  position: absolute;
  display: block;
  width: 21px;
  height: 3px;
  background-color: #0099FF;
  border-radius: 1px;
  -webkit-transition: 0.3s all;
  transition: 0.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: 24px;
  -webkit-transform: translate(-2px, 7px) rotate(45deg);
          transform: translate(-2px, 7px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
  width: 24px;
  -webkit-transform: translate(-2px, -7px) rotate(-45deg);
          transform: translate(-2px, -7px) rotate(-45deg);
}

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

@media screen and (max-width: 320px) {
  .mobile-nav .suggest-btn {
    padding: 0 15px;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    position: fixed;
  }
  .is-locked {
    overflow: hidden;
  }
  .mobile-nav-area {
    display: block;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    display: none;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 100%;
    background: rgba(51, 51, 51, 0.5);
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .mobile-nav.is-active {
    display: block;
  }
  .mobile-nav.is-opened {
    opacity: 1;
  }
  .mobile-nav.is-opened .mobile-nav-wrap {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  .mobile-nav .suggest-text {
    color: #0099FF;
  }
  .mobile-nav .suggest-btn .btn-large {
    font-size: 18px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .mobile-nav .suggest-btn.__tel .btn-large {
    background: #0099FF;
  }
  .mobile-nav-wrap {
    width: 90.666%;
    height: 100%;
    background: #F0F6FA;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transform: translate(100%);
            transform: translate(100%);
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .mobile-nav-inner {
    width: 100%;
    height: 100%;
    padding: 0 0 120px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-navbar-list {
    margin: 0;
    padding: 0;
    line-height: 2.4;
    list-style: none;
    border-top: 1px solid #DDD;
    font-size: 16px;
    font-weight: 500;
  }
  .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 {
    display: block;
    color: #333;
  }
  .mobile-navbar-list .mobile-navbar-list {
    display: none;
    font-weight: normal;
  }
  .mobile-navbar-list .mobile-navbar-list li:last-child {
    border: none;
  }
  .mobile-navbar-list .mobile-navbar-list a {
    padding: 4px 20px 4px 30px;
  }
  .mobile-navbar-list li {
    border-bottom: 1px solid #DDD;
  }
  .mobile-navbar-list li a {
    padding: 4px 20px;
    position: relative;
  }
  .mobile-navbar-list li a::before, .mobile-navbar-list li a::after {
    content: "";
    -webkit-transition: 0.25s;
    transition: 0.25s;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .mobile-navbar-list li a::before {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #0099FF;
    border: 1px solid #0099FF;
    right: 13px;
  }
  .mobile-navbar-list li a::after {
    width: 4px;
    height: 4px;
    border: 1px solid;
    border-radius: 2px;
    border-color: #FFF #FFF transparent transparent;
    top: 50%;
    right: 19px;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
  }
  .mobile-navbar-list li.js-main-menu > a::before {
    background: transparent;
  }
  .mobile-navbar-list li.js-main-menu > a::after {
    border-color: transparent transparent #0099FF #0099FF;
    top: calc(50% - 1px);
    right: 18px;
    -webkit-transform: translate(0, -50%) rotate(-45deg);
            transform: translate(0, -50%) rotate(-45deg);
  }
  .mobile-navbar-list li.js-main-menu > a.is-open::after {
    border-color: #0099FF #0099FF transparent transparent;
    top: calc(50% + 1px);
  }
  .mobile-nav-side {
    margin: 20px 0;
    text-align: center;
  }
  .mobile-nav-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-nav-side-item {
    display: block;
    margin: 0 0 10px 0;
  }
  .mobile-nav-side-link {
    color: #333;
  }
  .mobile-nav-side-link:hover, .mobile-nav-side-link:visited, .mobile-nav-side-link:active, .mobile-nav-side-link:focus {
    color: #333;
  }
  .mobile-navbar-footer {
    margin: 15px 0 0 0;
  }
}
/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.suggest-box {
  background: url(../../images/suggest-bg_sp.jpg) no-repeat center/cover;
  color: #FFF;
  padding: 50px 0 40px;
}
.suggest-box .narrow-container {
  max-width: 1030px;
}

.suggest-box-ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.875;
  text-align: center;
  margin: 0;
}

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

.suggest-half + .suggest-half {
  margin-top: 35px;
}

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

.suggest-text {
  margin: 0 0 15px 0;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

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

.suggest-btn {
  max-width: 295px;
  text-align: center;
  margin: 0 auto;
}
.suggest-btn .btn-large {
  max-width: 295px;
  width: 100%;
  height: 56px;
  padding: 13px 40px;
  border: 2px solid #FFF;
}
.suggest-btn .btn-large img {
  margin-right: 13px;
  height: auto;
  vertical-align: -3px;
}
.suggest-btn.__tel .btn-large {
  background: #0099FF;
}
.suggest-btn.__tel .btn-large img {
  width: 28px;
}
.suggest-btn.__donation .btn-large {
  background: #FFA500;
}
.suggest-btn.__donation .btn-large img {
  width: 24px;
}

@media screen and (min-width: 768px) {
  .suggest-box {
    background: url(../../images/suggest-bg.jpg) no-repeat center/cover;
    padding: 100px 0;
  }
  .suggest-box-ttl {
    font-size: 32px;
    margin-bottom: 80px;
  }
  .suggest-inner {
    padding: 0;
  }
  .suggest-item {
    padding: 30px 10px 17px;
  }
  .suggest-half {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  .suggest-half + .suggest-half {
    border-left: 1px solid #DDD;
  }
  .suggest-text {
    margin: 0 0 20px 0;
    font-size: 22px;
  }
  .suggest-btn {
    max-width: 360px;
  }
  .suggest-btn .btn-large {
    max-width: 100%;
    width: 100%;
    height: 90px;
    padding: 20px 50px 20px 40px;
    border-radius: 60px;
    font-size: 24px;
    border: 3px solid #FFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .suggest-btn .btn-large::before {
    width: 16px;
    height: 16px;
    border: 2px solid;
    border-radius: 3px;
    border-color: #FFF #FFF transparent transparent;
    right: 8.8%;
  }
  .suggest-btn .btn-large img {
    margin-right: 24px;
  }
  .suggest-btn.__tel .btn-large img {
    width: 56px;
  }
  .suggest-btn.__donation .btn-large img {
    width: 45px;
  }
}
/* フッター内会社情報 */
.foot-wrapper {
  padding: 88px 0 0;
  background: #F0F6FA;
  position: relative;
}
.foot-wrapper .footer {
  max-width: 1310px;
}

.company-about {
  margin: 0 0 40px 0;
  color: #333;
  text-align: center;
}

.company-logo img {
  width: 220px;
}

.company-name {
  margin: 10px 0 15px 0;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.5;
}

.company-detail {
  margin: 0 0 10px 0;
  padding: 0;
  color: #333;
  font-size: 14px;
  font-style: normal;
  line-height: 1.71;
}
.company-detail a {
  color: #333;
}
.company-detail a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1000px) {
  .footer [class*=acms-col] {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .foot-wrapper {
    padding: 43px 0 0;
  }
  .footer {
    margin-bottom: 13.194vw;
    margin-left: 2.7%;
  }
  .company-about {
    margin: 0 0 40px 0;
    text-align: left;
  }
  .company-logo img {
    width: 210px;
  }
  .company-name {
    margin: 2px 0 20px 0;
  }
  .company-detail {
    margin: 0 0 5px 0;
  }
}
/* フッターナビゲーション */
.footer-nav {
  float: right;
  max-width: 100%;
  margin: 0 -10px;
}

.footer-nav-group {
  margin-top: 10px;
}
.footer-nav-group li {
  display: block;
  width: 100%;
  line-height: 1.7;
  font-size: 14px;
  float: left;
  margin: 0 0 10px 0;
  padding: 0 10px;
  white-space: nowrap;
}
.footer-nav-group li a {
  display: block;
  position: relative;
}
.footer-nav-group li a:hover {
  opacity: 0.6;
}
.footer-nav-group > li {
  font-weight: bold;
}
.footer-nav-group .footer-nav-group {
  margin: 10px 0 0;
}
.footer-nav-group .footer-nav-group li {
  font-weight: normal;
  padding-left: 1em;
}
.footer-nav-group .footer-nav-group li:last-child {
  margin-bottom: 0;
}

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

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

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

.sp-footer-nav {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/* ページの上に戻るボタン */
.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;
  background: #0099FF;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
.no-js .page-top-btn {
  /* jsが無効の環境のとき */
  opacity: 0.6;
}

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

@media screen and (max-width: 767px) {
  .page-top {
    position: absolute;
    width: 100%;
    height: 40px;
    top: 0;
    left: 0;
    margin: 0;
  }
  .page-top-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 40px;
    border-radius: 0;
    fill: none;
    color: #0099FF;
    opacity: 1;
  }
  .page-top-btn img {
    width: 16px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 768px) {
  .page-top-btn {
    border-radius: 50%;
  }
  .page-top-btn:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
  }
  .page-top-btn img {
    display: block;
  }
}
/* フッター内各SNSアカウントのリンク集 */
.sns-list {
  margin: 0 -5px 30px 15px;
  padding: 0;
  list-style: none;
}

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

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

@media screen and (min-width: 768px) {
  .sns-list {
    float: right;
    margin: 0 -10px;
  }
  .sns-list-item {
    margin: 10px;
  }
  .sns-list-item a:hover {
    opacity: 0.8;
    -webkit-transition: opacity 0.25s linear;
    transition: opacity 0.25s linear;
  }
}
/* 著作権表示 */
.copyright {
  margin: 0;
  padding: 30px 0 25px;
  color: #333;
}

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

@media screen and (min-width: 768px) {
  .copyright {
    padding: 13px 0;
    color: #FFF;
    background: #333;
  }
}
/* ------------------------------
　　TOP
------------------------------ */
.top-kv-section {
  padding: 40px 0 20px;
  background: #F0F6FA;
}

.top-emg-section {
  max-width: 1230px;
  margin: 0 auto;
  padding: 60px 0 80px;
  overflow-x: hidden;
}
.top-emg-section h2 {
  font-size: 28px;
  font-weight: 500;
  color: #E02B5C;
  text-align: center;
  margin: 0 0 40px;
}
.top-emg-section h2 img {
  margin-right: 10px;
  vertical-align: -3px;
}
.top-emg-section .btn-box {
  margin: 48px 5.33% 0;
}
.top-emg-section .btn-attention-block-large {
  max-width: 295px;
  height: 56px;
  font-size: 18px;
  background: #E02B5C;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-emg-section .btn-attention-block-large:hover {
  background: #333;
}
.top-emg-section .btn-attention-block-large img {
  margin-right: 13px;
  width: 24px;
  height: auto;
}

.top-headline {
  padding: 70px 0 80px;
  background: #FAFAFA;
}
.top-headline h2 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 15px;
}
.top-headline h2 span {
  display: inline-block;
  padding-bottom: 15px;
  position: relative;
}
.top-headline h2 span::before {
  content: "";
  width: 100%;
  height: 4px;
  background: #0099FF;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.top-headline .btn-box {
  margin-top: 30px;
}

.top-headline-contents + .top-headline-contents {
  margin-top: 50px;
}

.top-about {
  padding: 80px 0;
}

.top-about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.top-about-item + .top-about-item {
  margin-top: 64px;
}
.top-about-item figure {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.top-about-item .btn-box {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.top-about-item .btn-large {
  max-width: 300px;
}

.top-about-ttl {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 25px 0 30px;
}

.top-about-txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 14px;
  line-height: 1.71;
  margin: 0 0 35px;
}

.top-activities {
  padding: 60px 0;
  background: #F0F6FA;
}

.activities-item-list li {
  border: 1px solid #0099FF;
  background: #FFF;
  padding: 40px 5.33%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.activities-item-list li + li {
  margin-top: 20px;
}
.activities-item-list li figure {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  max-width: 180px;
  margin: 0 auto;
}
.activities-item-list li .btn-box {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.activities-item-list li .btn-large {
  width: 240px;
  padding: 13px 40px;
}

.activities-ttl {
  font-size: 24px;
  font-weight: 500;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  line-height: 1.5;
  margin: 15px 0 20px;
}

.activities-txt {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 30px;
  text-align: left;
}

.page-link-area {
  max-width: 1030px;
  margin: 0 auto;
  padding: 80px 5.33% 75px;
}
.page-link-area .page-link-item + .page-link-item {
  margin-top: 20px;
}
.page-link-area .page-link-item a {
  display: block;
}
.page-link-area .page-link-item a:hover {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .top-about-item .btn-large {
    min-width: 83.58%;
  }
}
@media (min-width: 768px) {
  .top-emg-section {
    padding: 80px 15px;
  }
  .top-emg-section h2 {
    font-size: 32px;
    padding: 0 0 30px;
    border-bottom: 4px solid #E02B5C;
    margin-bottom: 50px;
  }
  .top-emg-section .btn-attention-block-large {
    max-width: 430px;
    height: 90px;
    font-size: 24px;
    border-radius: 50px;
  }
  .top-emg-section .btn-attention-block-large::before {
    width: 15px;
    height: 15px;
    border: 2px solid;
    border-radius: 3px;
    border-color: #FFF #FFF transparent transparent;
    right: 32px;
  }
  .top-emg-section .btn-attention-block-large img {
    width: 45px;
    margin-right: 24px;
  }
  .top-headline {
    padding: 40px 0 80px;
  }
  .top-headline > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-headline h2 {
    text-align: left;
    font-size: 32px;
  }
  .top-headline h2 span {
    padding-bottom: 10px;
  }
  .top-headline .btn-box {
    margin-top: 48px;
  }
  .top-headline-contents {
    width: 50%;
    padding: 15px 4.17% 0 0;
  }
  .top-headline-contents + .top-headline-contents {
    margin-top: 0;
    border-left: 2px solid #DDD;
    padding: 15px 0 0 4.17%;
  }
  .top-about {
    padding: 100px 0 90px;
  }
  .top-about-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .top-about-item {
    width: 48.33%;
  }
  .top-about-item + .top-about-item {
    margin: 0;
  }
  .top-about-ttl {
    font-size: 28px;
    line-height: 1.6;
    margin: 25px 0;
  }
  .top-about-txt {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 30px;
  }
  .top-activities {
    padding: 100px 0;
  }
  .activities-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .activities-item-list li {
    width: 23.79%;
    padding: 40px 2.5% 96px;
    position: relative;
  }
  .activities-item-list li + li {
    margin: 0;
  }
  .activities-item-list li figure {
    max-width: 120px;
  }
  .activities-item-list li .btn-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 78.8%;
  }
  .activities-item-list li .btn-large {
    width: 100%;
  }
  .page-link-area {
    padding: 90px 0 80px;
  }
  .page-link-area .page-link-item {
    width: 48.5%;
  }
  .page-link-area .page-link-item + .page-link-item {
    margin: 0;
  }
  .page-link-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 1050px) and (min-width: 768px) {
  .activities-item-list li {
    width: 49.2%;
  }
  .activities-item-list li:nth-child(n+3) {
    margin-top: 20px;
  }
  .activities-item-list li .btn-large {
    width: 240px;
  }
}
/* ------------------------------
　　共通パーツ
------------------------------ */
.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.card-list.__4col li {
  width: 100%;
  padding: 40px 5.33%;
  border: 1px solid #DDD;
  background: #FFF;
  border-radius: 4px;
}
.card-list.__4col li + li {
  margin-top: 30px;
}
.card-list.__4col .btn-large {
  width: 100%;
  margin-top: 15px;
}
.bgc-blue .card-list.__2col {
  padding: 60px 0;
}
.card-list.__2col li {
  width: 100%;
  padding: 40px 5.33%;
  background: #FFF;
  border: 1px solid #0099FF;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-list.__2col li + li {
  margin-top: 30px;
}
.card-list.__2col li figure {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  width: 86.96%;
  margin: 0 auto 20px;
}
.card-list.__2col li .card-title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 0;
}
.card-list.__2col li p {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.card-list.__2col li .btn-box {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.card-list.__2col .btn-large {
  width: 100%;
  margin-top: 15px;
}

.card-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 20px;
}
.card-title img {
  display: block;
  margin: 0 auto 20px;
}

.dl-layout {
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.dl-layout.__no-border {
  border-bottom: none;
}
.dl-layout dt {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 25px;
}

.anchor-link {
  padding: 50px 0;
}
.anchor-link ul {
  max-width: 783px;
  margin: 0 auto;
  padding: 0 5.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.anchor-link ul li {
  width: 100%;
}
.anchor-link ul li a {
  font-size: 16px;
  font-weight: 500;
  background: #FFF;
  border: 1px solid #DDD;
  border-radius: 4px;
  padding: 5px 50px 5px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.anchor-link ul li a::after {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid;
  border-color: transparent transparent #0099FF #0099FF;
  border-radius: 2px;
  position: absolute;
  top: calc(50% - 7px);
  right: 16px;
  -webkit-transform: translate(0, -50%) rotate(-45deg);
          transform: translate(0, -50%) rotate(-45deg);
}
.anchor-link ul li a:hover {
  opacity: 0.65;
}
.anchor-link ul li img {
  width: 48px;
  height: auto;
  margin-right: 10px;
}
.anchor-link ul li + li {
  margin-top: 15px;
}

.flow-list li {
  border: 1px solid #0099FF;
  border-radius: 4px;
  padding: 25px 5%;
  position: relative;
}
.flow-list li::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 32px solid #0099FF;
  position: absolute;
  left: 50%;
  bottom: -55px;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.flow-list li + li {
  margin-top: 70px;
}
.flow-list li:last-child::after {
  content: none;
}

.flow-list-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 20px;
}

.flow-list-txt {
  margin: 0;
}

.cap-img-item {
  max-width: 580px;
  margin: 0 auto;
}
.cap-img-item p {
  font-size: 16px;
  font-weight: 500;
  margin: 15px 0 0;
  text-align: center;
}
.cap-img-item + .cap-img-item {
  margin-top: 30px;
}

/* ------------------------------
　　ページ別のStyle
------------------------------ */
.bokin-program .display-flex .btn-large {
  max-width: 240px;
}

.learn-program figure {
  max-width: 640px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .card-list.__4col.__out-link li {
    padding: 40px 2.5% 161px;
  }
  .card-list.__4col.__out-link li .btn-box {
    bottom: 90px;
  }
  .card-list.__4col.__out-link li .__notes {
    width: 78.8%;
    position: absolute;
    bottom: 26px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .card-list.__4col li {
    width: 23.75%;
    padding: 40px 2.5% 111px;
    position: relative;
  }
  .card-list.__4col li + li {
    margin: 0 0 0 1.66%;
  }
  .card-list.__4col li .btn-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 78.8%;
  }
  .card-list.__2col {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .card-list.__2col li {
    width: 47.5%;
    padding: 50px 2.5% 111px;
    position: relative;
  }
  .card-list.__2col li + li {
    margin: 0;
  }
  .card-list.__2col li .btn-box {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    min-width: 300px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .card-list.__2col li:nth-last-child(n+3) {
    margin-bottom: 30px;
  }
  .dl-layout dt {
    font-size: 20px;
    text-align: center;
  }
  .anchor-link ul {
    padding: 0;
  }
  .anchor-link ul li {
    width: 47.381%;
  }
  .anchor-link ul li a {
    padding: 16px 50px 16px 16px;
    max-height: 80px;
  }
  .anchor-link ul li + li {
    margin-top: 0;
  }
  .anchor-link ul li:nth-child(even) {
    margin-left: 5.1%;
  }
  .anchor-link ul li:nth-last-child(n+3) {
    margin-bottom: 20px;
  }
  .flow-list li {
    padding: 30px;
  }
  .flow-list li::after {
    bottom: -60px;
  }
  .flow-list li + li {
    margin-top: 80px;
  }
  /* ------------------------------
  　　ページ別のStyle
  ------------------------------ */
  .bokin-program .display-flex + .display-flex {
    margin-top: 40px;
  }
  .bokin-program .color-table-layout th {
    padding: 14px 15px;
    text-align: center;
  }
}
@media screen and (max-width: 1050px) and (min-width: 768px) {
  .card-list.__4col li {
    width: 49.2%;
    margin: 0 0 20px 0;
  }
  .card-list.__4col li + li {
    margin: 0 0 20px 0;
  }
  .card-list.__4col li:nth-child(even) {
    margin-left: 1.6%;
  }
  .card-list.__4col li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .card-list.__4col .btn-large {
    width: 240px;
  }
}
/*# sourceMappingURL=site.min.css.map */