@charset "UTF-8";
/* stylelint-disable value-keyword-case */
/* stylelint-disable max-line-length */
/* stylelint-enable max-line-length */
#adminBox {
  margin-top: 20px;
}

/* ------------------------------
　　ベース
------------------------------ */
html {
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: var(--line-height-lg);
  background: var(--color-white);
  scroll-behavior: smooth;
}
@media screen and (min-width: 48rem) {
  html {
    scroll-padding-top: var(--header-height-fixed);
  }
  html:has(.nav-bottom.sticky) {
    scroll-padding-top: 12rem;
  }
  html:has(.logo-center.sticky) {
    scroll-padding-top: 10rem;
  }
}

/* リンクの設定 */
a {
  border: none;
}

::-webkit-input-placeholder {
  color: var(--color-gray60) !important;
}

::-moz-placeholder {
  color: var(--color-gray60) !important;
}

:-ms-input-placeholder {
  color: var(--color-gray60) !important;
}

::-ms-input-placeholder {
  color: var(--color-gray60) !important;
}

::placeholder {
  color: var(--color-gray60) !important;
}

/* コンテナー */
.acms-container {
  max-width: var(--container);
  padding-right: calc(var(--col-gutter) / 2);
  padding-left: calc(var(--col-gutter) / 2);
  padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) / 2);
  padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) / 2);
}
@media screen and (min-width: 64rem) {
  .acms-container {
    padding-right: calc(var(--col-gutter) * 1.5);
    padding-left: calc(var(--col-gutter) * 1.5);
    padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) * 1.5);
    padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) * 1.5);
  }
}
.acms-container .acms-container {
  padding: 0;
}

.container-md {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: var(--container-md);
  margin: 0 auto;
  padding-right: calc(var(--col-gutter) / 2);
  padding-left: calc(var(--col-gutter) / 2);
  padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) / 2);
  padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) / 2);
}
@media screen and (min-width: 64rem) {
  .container-md {
    padding-right: calc(var(--col-gutter) * 1.5);
    padding-left: calc(var(--col-gutter) * 1.5);
    padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) * 1.5);
    padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) * 1.5);
  }
}
.container-md .container-md {
  padding: 0;
}

.container-sm {
  --gutter: var(--gutter-sm);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: var(--container-sm);
  margin: 0 auto;
  padding-right: calc(var(--col-gutter) / 2);
  padding-left: calc(var(--col-gutter) / 2);
  padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) / 2);
  padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) / 2);
}
@media screen and (min-width: 64rem) {
  .container-sm {
    padding-right: calc(var(--col-gutter) * 1.5);
    padding-left: calc(var(--col-gutter) * 1.5);
    padding-right: calc(env(safe-area-inset-right) + var(--col-gutter) * 1.5);
    padding-left: calc(env(safe-area-inset-left) + var(--col-gutter) * 1.5);
  }
}

.content-wrapper {
  padding: var(--page-title-margin-bottom) 0 0;
}
.content-wrapper.is-_top {
  padding: 0;
}

@media screen and (min-width: 64rem) {
  .content-wrapper {
    padding: var(--page-title-margin-bottom-md) 0 0;
  }
  .content-wrapper.two-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/* グリッド */
.acms-grid {
  margin: 0 calc(var(--unit-gutter-var) / -2);
}

[class*=acms-col] {
  padding-right: calc(var(--unit-gutter-var) / 2);
  padding-left: calc(var(--unit-gutter-var) / 2);
}

/* 2カラム */
.side-container {
  padding-top: 1rem;
}

@media screen and (min-width: 64rem) {
  .main-container {
    width: var(--width-main-container);
    padding-top: 1rem;
  }
  .side-container {
    width: var(--width-side-container);
  }
}
/* 固定コンテンツ */
.sticky-contents {
  position: fixed;
  bottom: 0;
  z-index: var(--zindex-fixed-contents);
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1rem 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, transform 0.2s;
  transition: opacity 0.3s, transform 0.2s, -webkit-transform 0.2s;
}
.sticky-contents.is-centered {
  text-align: center;
}
.sticky-contents.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.sticky-contents.is-active {
  display: block;
}
.sticky-contents.is-bg {
  background-color: var(--color-footer-sticky);
}

/* モジュール */
/* スクリーンリーダー */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* その他上書き */
.js-open-street-map {
  z-index: 0;
}

/* ------------------------------
　　組み込みJSの上書き
------------------------------ */
/* モーダルビデオ
------------------------------ */
.modal-video-body {
  padding: 0 0.5rem;
}

.modal-video-close-btn {
  top: -3rem !important;
  right: 0 !important;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@-webkit-keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-drop {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-drop {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-card {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-card {
  0% {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* ------------------------------
　　バッジ
------------------------------ */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  min-width: 2.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-text-2nd);
  background: var(--color-gray10);
  border-radius: var(--border-radius-sm);
  text-align: center;
  font-size: 0.8rem;
}
.badge.-pill {
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-round);
}
.badge.-day {
  padding: 0;
  min-width: initial;
  width: 2rem;
  height: 2rem;
  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;
  border-radius: var(--border-radius-round);
}

/* ------------------------------
　　ラベル
------------------------------ */
.label {
  display: inline-block;
  color: var(--color-text);
  background: var(--color-gray10);
  border-radius: var(--border-radius-md);
  font-size: 0.8rem;
  padding: 0 0.5rem;
}
.label.is-md {
  padding: 0.25rem 0.5rem;
}
.label.is-white {
  background: var(--color-white);
}
.label.is-gray {
  color: var(--color-white);
  background: var(--color-gray60);
}
.label.is-dark {
  color: var(--color-white);
  background: var(--color-gray80);
}
.label.is-required {
  color: var(--color-danger);
  background: var(--color-danger-light);
}

/* ------------------------------
　　バナー
------------------------------ */
.banner-list {
  padding: 0;
  list-style: none;
}
.js .js-animation .banner-list {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .banner-list {
  -webkit-animation: fade-in 0.4s 0.5s 1 both;
          animation: fade-in 0.4s 0.5s 1 both;
}

.banner-item {
  margin: 0 0 var(--col-gutter);
}

.banner-link {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.banner-img {
  display: block;
  width: 100%;
  border-radius: var(--border-radius-lg);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.banner-img:hover {
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

/* ------------------------------
　　ボタン
------------------------------ */
.button {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  background: var(--color-primary);
  border: 0;
  border-radius: var(--border-radius-md);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  line-height: 1.5;
}
.button:-moz-any-link {
  color: var(--color-white);
  text-decoration: none;
}
.button:any-link {
  color: var(--color-white);
  text-decoration: none;
}
.button:hover {
  background: var(--color-primary-hover);
}
.button.is-sm {
  display: inline-block;
  font-size: 0.8rem;
  margin: 0 auto;
  padding: 0.25rem 0.5rem;
  min-width: initial;
}
.button.is-lg {
  min-width: 15rem;
  display: inline-block;
  margin: 0 auto;
  padding: 0.75rem 2rem;
}
.button.is-block {
  width: 100%;
  min-width: initial;
}
.button.is-xl {
  min-width: 18rem;
  width: 100%;
}
.button.is-width-lg {
  min-width: 15rem;
  max-width: 100%;
}
.button.is-inverse {
  color: var(--color-text);
  background: var(--color-white);
}
.button.is-inverse:-moz-any-link {
  color: var(--color-text);
}
.button.is-inverse:any-link {
  color: var(--color-text);
}
.button.is-inverse:hover {
  background: var(--color-hover-bg);
}
.button.is-bordered {
  color: var(--color-text);
  background: transparent;
  border: var(--border-width-sm) solid var(--color-gray30);
}
.button.is-bordered:-moz-any-link {
  color: var(--color-text);
}
.button.is-bordered:any-link {
  color: var(--color-text);
}
.button.is-bordered:hover {
  background: var(--color-hover-bg);
}
.button.is-rounded {
  border-radius: var(--border-radius-round);
}
@media screen and (min-width: 48rem) {
  .button.is-xl {
    width: initial;
    min-width: 18rem;
    padding: 1rem;
    font-size: 1.5625rem;
  }
}
.button:focus {
  border-color: #137af3;
  -webkit-box-shadow: var(--box-shadow-focus);
          box-shadow: var(--box-shadow-focus);
}

/* ------------------------------
　　もっと見るボタン
------------------------------ */
.read-more-pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1rem 2rem;
}

.button-read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: currentcolor;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
}
.button-read-more .icon-button {
  margin: 0 0 0 0.5rem;
}
.js .js-animation .button-read-more {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .button-read-more {
  -webkit-animation: fade-in 0.2s 1.2s 1 both;
          animation: fade-in 0.2s 1.2s 1 both;
}

/* ------------------------------
　　アイコン
------------------------------ */
.icon-button {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1.25rem;
  height: 1.25rem;
  vertical-align: middle;
}
.icon-button svg {
  margin-right: 0.5rem;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 6px;
  background: var(--color-icon-bg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.icon-button svg path {
  stroke: var(--color-white);
}
a:hover .icon-button svg {
  background: var(--color-icon-bg-hover);
}
.icon-button.is-sm svg {
  padding: 4px;
}
.icon-button .bg {
  fill: var(--color-icon-bg);
}
.icon-button .arrow {
  stroke: var(--color-white);
}
.icon-button.is-sm {
  width: 1rem;
  height: 1rem;
}
.icon-button.is-xl {
  width: 3rem;
  height: 3rem;
}
.icon-button.is-2xl {
  width: 4rem;
  height: 4rem;
}
.icon-button.is-left, .icon-button.is-prev {
  rotate: 180deg;
}
.icon-button.is-down {
  rotate: 90deg;
}

/* ------------------------------
　　ローディングアイコン
------------------------------ */
.content-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  padding: 10px;
}

.content-loading-icon {
  width: 8px;
  height: 8px;
  background: var(--color-gray40);
  border-radius: 50%;
  -webkit-animation: bounce 0.6s infinite ease-in-out;
          animation: bounce 0.6s infinite ease-in-out;
}
.content-loading-icon:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.content-loading-icon:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
  }
}
/* ------------------------------
　　カレンダー
------------------------------ */
.calendar,
.event-calendar {
  width: 100%;
}
.calendar .is-week-0,
.event-calendar .is-week-0 {
  color: var(--color-text-sunday);
}
.calendar .is-week-6,
.event-calendar .is-week-6 {
  color: var(--color-text-saturday);
}

.calendar-label {
  padding: 0.5rem 0;
  color: var(--color-text-2nd);
  font-weight: normal;
}

.calendar-day {
  padding: 0.5rem 0;
  color: var(--color-text-2nd);
}

.calendar-day-has {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -0.5rem auto;
  padding: 0.5rem 0;
  color: currentColor;
  font-weight: bold;
  text-decoration: none;
  background: var(--color-gray10);
  border-radius: 0.25rem;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.calendar-day-has:hover {
  background: var(--color-hover-bg-2nd);
}

@media screen and (min-width: 48rem) {
  .calendar-label {
    width: 3.5rem;
    padding: 0 0 0.75rem;
  }
  .calendar-day {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
  }
  .section-side .calendar-day {
    width: 2.5rem;
    height: 2.5rem;
  }
  .calendar-day-has {
    width: 2rem;
    height: 2rem;
    padding: 0;
  }
  .section-side .calendar-day-has {
    width: 1.75rem;
    height: 1.75rem;
  }
}
/* 　年間カレンダーレイアウト
------------------------------ */
.calendar-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: var(--col-gutter);
  margin: 0;
  padding: 0 1rem 2rem;
  list-style: none;
}
.calendar-group > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.calendar-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  margin: 0 0 1rem;
  text-align: center;
}

.calendar-group-item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  padding: 0 0 0.5rem;
}

@media screen and (min-width: 48rem) {
  .calendar-group {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .calendar-group-item {
    margin: 0;
  }
}
@media screen and (min-width: 64rem) {
  .calendar-group {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
/* 　イベントカレンダー
------------------------------ */
.event-calendar-table {
  width: 100%;
  padding-bottom: var(--entry-el-margin-md);
}
.event-calendar-table tr {
  border-bottom: 1px solid #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 0 0.5rem 1rem;
}
.event-calendar-table th {
  width: 5rem;
  padding-top: 1rem;
  vertical-align: top;
}
.event-calendar-table td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.event-calendar-item {
  padding: 1rem;
}
.event-calendar-item:last-of-type {
  padding-bottom: 2rem;
}

.event-calendar-day {
  display: inline-block;
  width: 2rem;
  margin-right: 1rem;
  text-align: right;
  font-weight: bold;
  line-height: 2rem;
  font-size: 1.5625rem;
  vertical-align: bottom;
}

.event-calendar-table .event-calendar-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: var(--color-text);
}
.event-calendar-table .calendar-item-img-wrap {
  width: 10rem;
  aspect-ratio: 16/9;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.event-calendar-table .calendar-item-img-wrap img {
  -o-object-fit: cover;
     object-fit: cover;
}

.calendar-item-title {
  margin: 0;
}

.calendar-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  margin: 0;
}

/* 　カレンダー ヘッダー
------------------------------ */
.calendar-header {
  margin: 0 0 0.5rem;
}

.calendar-header-title {
  margin: 0;
  padding: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.calendar-header-title a {
  color: var(--color-text);
  text-decoration: none;
}
.calendar-header-title a:hover {
  text-decoration: underline;
}

/* 　カレンダー ページネーション
------------------------------ */
.calendar-pagination-wrap {
  text-align: center;
  position: relative;
  padding: 1rem 1rem 2rem;
}

.calendar-pagination-title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.953125rem;
}
.calendar-pagination-title.is-return {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.calendar-pagination-group {
  position: static;
  margin: 0;
  padding: 0;
  list-style: none;
}

.calendar-pagination-item-previous,
.calendar-pagination-item-next {
  position: absolute;
  top: 1.5rem;
}

.calendar-pagination-item-previous {
  left: 1rem;
}
.calendar-pagination-item-previous .icon-button {
  margin-right: 0.5rem;
}

.calendar-pagination-item-next {
  right: 1rem;
}
.calendar-pagination-item-next .icon-button {
  margin-left: 0.5rem;
}

.calendar-pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: bold;
}

@media screen and (min-width: 48rem) {
  .calendar-pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 4.5rem;
  }
  .calendar-pagination-title {
    font-size: 1.953125rem;
  }
  .calendar-pagination-title.is-return {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------
　　カード
------------------------------ */
.card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -1rem -1rem 2rem;
  padding: 0;
  list-style: none;
}

.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.card-item[class*=acms-col] {
  padding-right: 0;
  padding-left: 0;
}

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

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop,
  .card {
    display: block;
  }
}
.card-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  padding: 1rem;
  color: var(--color-text);
}
.card-link:visited {
  color: var(--color-text);
}
.card-link:hover {
  background-color: var(--color-hover-bg-2nd);
}
.card-link:hover, .card-link:active, .card-link:focus {
  color: var(--color-text);
  text-decoration: none;
}
@media (hover: hover) {
  .card-link:hover {
    border-radius: var(--border-radius-lg);
  }
  .card-link:hover .card-img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .card-link:hover .card-read-more::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.card-img-wrap {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}
.card-img-wrap .card-category-label {
  position: absolute;
  background: var(--label-on-image-bg);
  color: var(--label-on-image-text);
  padding: 0 0.5rem;
  height: 1.25rem;
  font-size: 0.8rem;
  border-radius: var(--border-radius-md);
}
.card-img-wrap .card-category-label.left-top {
  top: 10px;
  left: 10px;
}
.card-img-wrap .card-category-label.right-top {
  top: 10px;
  right: 10px;
}
.card-img-wrap .card-category-label.right-bottom {
  bottom: 10px;
  right: 10px;
}
.card-img-wrap .card-category-label.left-bottom {
  bottom: 10px;
  left: 10px;
}

.card-img {
  width: 100%;
  -webkit-transition: 0.4s 0.2s ease-out;
  transition: 0.4s 0.2s ease-out;
  will-change: transform;
}
.js .js-animation-row .card-img {
  opacity: 0;
  will-change: opacity;
}
.js .js-animation-row.is-show .card-img {
  opacity: 1;
}

.card-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.card-text-header .card-category {
  margin-top: 0.25rem;
}

.card-title,
.entry-style .card-title {
  margin: 0;
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}
.js .js-animation-row .card-title,
.js .js-animation-row .entry-style .card-title {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation-row.is-show .card-title,
.js .js-animation-row.is-show .entry-style .card-title {
  -webkit-animation: fade-in 0.2s 0.7s 1 both;
          animation: fade-in 0.2s 0.7s 1 both;
}

.card-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

.card-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin: 0;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}

.card-category {
  margin: 0;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}

.card-badge-news {
  margin: 0 0 0 0.5rem;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: var(--line-height-ss);
}

.card-text,
.entry-style .card-text {
  margin: 0;
  font-size: 1rem;
  line-height: var(--line-height-lg);
  color: var(--color-text-2nd);
}
.card-text:not(.card-text.full,
.entry-style .card-text.full),
.entry-style .card-text:not(.card-text.full,
.entry-style .card-text.full) {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.js .js-animation-row .card-text,
.js .js-animation-row .entry-style .card-text {
  opacity: 0;
}
.js .js-animation-row.is-show .card-text,
.js .js-animation-row.is-show .entry-style .card-text {
  -webkit-animation: fade-in 0.2s 1s 1 both;
          animation: fade-in 0.2s 1s 1 both;
}
.card-text .label,
.entry-style .card-text .label {
  margin-right: 1rem;
}

.card-tag-wrap {
  margin: 0;
}

.card-tag {
  margin: 0 0.5rem 0 0;
}

.card-action {
  margin-top: auto;
}

.card-read-more,
.entry-style .card-read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}
.js .js-animation-row .card-read-more,
.js .js-animation-row .entry-style .card-read-more {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation-row.is-show .card-read-more,
.js .js-animation-row.is-show .entry-style .card-read-more {
  -webkit-animation: fade-in 0.2s 1.2s 1 both;
          animation: fade-in 0.2s 1.2s 1 both;
}

.card-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-size: 0.8rem;
}

.card-author-img {
  margin: 0 0.5rem 0 0;
  border-radius: var(--border-radius-round);
}

.card-scrollbar {
  position: relative;
  width: 100%;
  height: 4px;
  overflow: hidden;
  background: var(--color-gray40);
  border-radius: 4px;
}

.card-scrollbar-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  min-width: 50px;
  background-color: var(--color-primary);
}

@media screen and (max-width: 47.99875rem) {
  .card-carousel {
    margin-right: -1rem;
    overflow-x: auto;
  }
  .card-carousel .card-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 0;
  }
  .card-carousel .card-item {
    margin-bottom: 0;
  }
  .card-carousel .card-link {
    width: 258px;
  }
}
@media screen and (min-width: 48rem) {
  .card-img-wrap {
    margin: 0 0 1rem;
  }
  .card-img-wrap .card-read-more,
  .card-img-wrap .entry-style .card-read-more {
    font-size: 1rem;
  }
  .card-img-wrap .card-read-more::before,
  .card-img-wrap .entry-style .card-read-more::before {
    bottom: -0.5rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .card.is-lg .card-title {
    font-size: 1.25rem;
  }
  .card-text {
    font-size: 1rem;
  }
  .card-text.is-bold {
    font-weight: bold;
  }
  .card-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 64rem) {
  .card-list {
    margin-bottom: 2rem;
  }
  .blog1-top .card-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* ボーダー付きカード */
.card-bordered-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem 0;
  margin: 0 -1rem;
  padding: 0;
  list-style: none;
}
.blog1-top .card-bordered-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.card-bordered {
  width: 100%;
}

.card-bordered-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  color: var(--color-text);
}
.card-bordered-link:visited {
  color: var(--color-text);
}
.card-bordered-link:hover {
  background-color: var(--color-hover-bg-2nd);
}
.card-bordered-link:hover, .card-bordered-link:active, .card-bordered-link:focus {
  color: var(--color-text);
  text-decoration: none;
}
@media (hover: hover) {
  .card-bordered-link:hover {
    -webkit-box-shadow: var(--box-shadow);
            box-shadow: var(--box-shadow);
  }
  .card-bordered-link:hover .card-bordered-img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .card-bordered-link:hover .card-bordered-read-more::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.card-bordered-img-wrap {
  margin: 0;
  overflow: hidden;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.card-bordered-img {
  width: 100%;
  -webkit-transition: 0.4s 0.2s ease-out;
  transition: 0.4s 0.2s ease-out;
  will-change: transform;
}
.js .js-animation-row .card-bordered-img {
  opacity: 0;
}
.js .js-animation-row.is-show .card-bordered-img {
  opacity: 1;
}

.card-bordered-title,
.entry-style .card-bordered-title {
  margin: 0 0 1rem;
  color: var(--color-black);
  font-size: 1.25rem;
  line-height: var(--line-height-sm);
}

.card-bordered-read-more,
.entry-style .card-bordered-read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}
.card-bordered-read-more::before,
.entry-style .card-bordered-read-more::before {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.js .js-animation-row .card-bordered-read-more,
.js .js-animation-row .entry-style .card-bordered-read-more {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation-row.is-show .card-bordered-read-more,
.js .js-animation-row.is-show .entry-style .card-bordered-read-more {
  -webkit-animation: fade-in 0.2s 1.2s 1 both;
          animation: fade-in 0.2s 1.2s 1 both;
}

.card-bordered-text-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}
.card-bordered-text-inline .card-bordered-title,
.card-bordered-text-inline .entry-style .card-bordered-title,
.card-bordered-text-inline .card-bordered-text,
.card-bordered-text-inline .card-bordered-read-more {
  margin: 0;
}
.card-bordered-text-inline .card-bordered-read-more {
  margin-left: auto;
}

@media screen and (min-width: 48rem) {
  .card-bordered-text-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1.5rem;
  }
  .card-bordered-title,
  .entry-style .card-bordered-title {
    margin: 0;
    font-size: 1.5625rem;
  }
  .card-bordered-text {
    margin: 0 0 2rem;
    font-size: 1rem;
  }
  .card-bordered-read-more,
  .entry-style .card-bordered-read-more {
    font-size: 1rem;
  }
  .card-bordered-read-more::before,
  .entry-style .card-bordered-read-more::before {
    bottom: -0.5rem;
  }
}
@media screen and (min-width: 64rem) {
  .card-bordered-text-inline {
    padding: 2rem;
  }
}
.label-triangle {
  position: absolute;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  top: 0;
  left: 0;
}
.label-triangle svg .st1 {
  fill: var(--color-icon-bg);
}
.label-triangle.right-top {
  top: 0;
  right: 0;
  left: initial;
  rotate: 90deg;
}
.label-triangle.right-bottom {
  top: initial;
  right: 0;
  bottom: 0;
  left: initial;
  rotate: 180deg;
}
.label-triangle.left-bottom {
  top: initial;
  bottom: 0;
  rotate: 270deg;
}

/* ------------------------------
　　関連サイト
------------------------------ */
.news-banner-carousel {
  padding: 0 1rem;
}
.news-banner-carousel.splide .splide__slide {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}
.news-banner-carousel.splide .splide__slide img {
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.news-banner-carousel.splide .splide__pagination {
  bottom: -1rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.news-banner-carousel.splide .splide__pagination > li {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news-banner-carousel.splide .splide__arrow--prev {
  left: -0.5rem;
}

@media screen and (min-width: 48rem) {
  .news-banner-carousel {
    padding: 0;
  }
  .news-banner-carousel .splide__pagination {
    bottom: -2.75rem;
    gap: 0.25rem;
    padding: 1rem 0 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ------------------------------
　　CTA（コール・トゥ・アクション）
------------------------------ */
.cta {
  padding: 1.5rem 0;
  text-align: center;
}
.cta.is-bg {
  margin: 0;
  padding: 1.5rem 0;
  background: var(--color-primary);
}

@media screen and (min-width: 48rem) {
  .cta {
    padding: 4.5rem 0 6.5rem;
  }
  .blog1-top .cta {
    padding: 6.5rem 0;
  }
}
/* シンプルなCTA */
.cta-general {
  padding: 3rem 1rem;
  background: var(--color-gray10);
  border-radius: var(--border-radius-xl);
  line-height: var(--line-height-base);
}

.cta-general-title {
  margin: 0 0 1.5rem;
  color: var(--color-text);
  font-size: 1.5625rem;
}

.cta-general-button-wrap {
  font-weight: bold;
}
.js .js-animation .cta-general-button-wrap {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .cta-general-button-wrap {
  -webkit-animation: fade-in 0.4s 0.5s 1 both;
          animation: fade-in 0.4s 0.5s 1 both;
}

.cta-general-micro-copy {
  margin: 1rem 0 0;
}
.cta-general-micro-copy a[href^="tel:"] {
  color: var(--color-text);
  text-decoration: none;
  border-bottom: var(--border-width-sm) dotted var(--color-text);
}
.text-btn .cta-general-micro-copy a[href^="tel:"] {
  color: var(--color-white);
}
.cta-general-micro-copy a[href^="tel:"]:hover {
  text-decoration: none;
  border: 0;
}

@media screen and (min-width: 48rem) {
  .cta-general {
    margin-top: 1rem;
    padding: 5rem 2rem;
    border-radius: var(--border-radius-xxl);
  }
  .cta-general-title {
    margin: 0 0 2rem;
    font-size: 1.953125rem;
  }
  .cta-general-button {
    font-size: 1.25rem;
  }
}
/* 背景画像付きのCTA */
.cta-visual {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  padding: 4rem 0 3rem;
  color: var(--color-white);
  text-align: center;
  background: no-repeat center;
  background-size: cover;
}
.cta-visual a {
  color: var(--color-white);
}
.cta-visual a[href^="tel:"] {
  text-decoration: none;
  border-bottom: var(--border-width-sm) dotted var(--color-white);
}
.cta-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  content: "";
}
.cta-visual p:last-child {
  margin-bottom: 0;
}

.cta-visual-comment {
  position: relative;
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.25rem 1.5rem;
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: var(--line-height-base);
  background: var(--color-white);
  border-radius: var(--border-radius-round);
}
.cta-visual-comment::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 10px;
  background-color: var(--color-white);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.cta-visual-title {
  position: relative;
  margin: 0 0 1rem;
  font-size: 1.5625rem;
  line-height: var(--line-height-base);
}

.cta-visual-text {
  position: relative;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: var(--line-height-base);
}
.cta-visual-text a {
  color: var(--color-white);
}

.cta-visual-read-more {
  position: relative;
}
.js .js-animation .cta-visual-read-more {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .cta-visual-read-more {
  -webkit-animation: fade-in 0.4s 0.5s 1 both;
          animation: fade-in 0.4s 0.5s 1 both;
}

.cta-visual-micro-copy {
  color: var(--color-white);
}

@media screen and (min-width: 48rem) {
  .cta-visual {
    margin-top: 0;
    padding: 5rem 0;
  }
  .cta-visual:has(+ .footer) {
    margin-top: 4.5rem;
  }
  .cta-visual-title {
    font-size: 2.44140625rem;
  }
  .cta-visual-text {
    font-size: 1rem;
  }
  .cta-visual-comment {
    margin: 0 0 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 1.3671875rem;
  }
}
/* ------------------------------
　　グローバルナビゲーション
------------------------------ */
.global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
}
@media (max-width: 63.99875rem) {
  .global-nav {
    display: none;
  }
}

.global-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  font-weight: bold;
  list-style: none;
}

.global-nav-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-nav-link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: var(--header-height);
  margin: 0 1.5rem;
  color: var(--color-text);
  text-decoration: none;
}
.global-nav-link:visited, .global-nav-link:active, .global-nav-link:hover, .global-nav-link:focus {
  color: var(--color-text);
}
.global-nav-link:has(+ ul) {
  padding: 0 1.75rem 0 0;
}
.global-nav-link:has(+ ul)::before {
  position: absolute;
  right: 0;
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-top: 2px solid var(--color-gray100);
  border-right: 2px solid var(--color-gray100);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  content: "";
}
.global-nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--color-primary);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  content: "";
}
.global-nav-link:hover {
  text-decoration: none;
}
.global-nav-link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.global-nav-item.stay > .global-nav-link::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.global-nav-link.is-cta {
  height: var(--header-height);
  padding: 0 2rem;
  color: var(--color-white);
  background: var(--color-primary);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.global-nav-link.is-cta::after {
  content: none;
}
.global-nav-link.is-cta:hover {
  background: var(--color-primary-hover);
}
.global-nav-link.is-cta:last-child {
  margin-right: 0;
}
.global-nav-item:last-child .global-nav-link.is-cta {
  margin-right: 0;
}

.global-nav-item > .global-nav-list {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 14rem;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.global-nav-item > .global-nav-list .global-nav-item {
  width: 100%;
  margin: 0;
  border-top: var(--border-width-sm) solid var(--color-gray20);
  background-color: #fff;
}
.global-nav-item > .global-nav-list .global-nav-link {
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 1rem 1.5rem;
  color: var(--color-text-2nd);
  background: #fff;
}
.global-nav-item > .global-nav-list .global-nav-link:visited {
  color: var(--color-text-2nd);
}
.global-nav-item > .global-nav-list .global-nav-link:focus-visible::before {
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-focus);
  content: "";
}
.global-nav-item > .global-nav-list .global-nav-link:hover, .global-nav-item > .global-nav-list .global-nav-link:active, .global-nav-item > .global-nav-list .global-nav-link:focus {
  color: var(--color-text);
  background-color: var(--color-hover-bg);
}
.global-nav-item > .global-nav-list .global-nav-link:hover::after {
  content: none;
}
.global-nav-item > .global-nav-list .global-nav-link:focus-visible {
  outline: 0;
}

.global-nav-item:hover > .global-nav-list,
.global-nav-item:focus-within > .global-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.global-nav-item:last-child .global-nav-link.is-cta + .global-nav-list {
  right: 0;
  left: inherit;
}

/* ロゴ中央・グローバルナビが下
------------------------------ */
.nav-bottom .global-nav,
.logo-center .global-nav {
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container);
}
@media screen and (min-width: 64rem) {
  .nav-bottom .global-nav,
  .logo-center .global-nav {
    padding: calc(var(--col-gutter) * 0.75) var(--col-gutter) 1.5rem;
  }
}
.nav-bottom .global-nav-list,
.logo-center .global-nav-list {
  width: 100%;
  border-left: 1px solid var(--color-gray30);
}
.nav-bottom .global-nav-item,
.logo-center .global-nav-item {
  width: 100%;
  border-right: var(--border-width-sm) solid var(--color-gray30);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.nav-bottom .global-nav-item > .global-nav-list,
.logo-center .global-nav-item > .global-nav-list {
  left: 0;
  min-width: initial;
}
.nav-bottom .global-nav-link,
.logo-center .global-nav-link {
  height: 3rem;
}
.nav-bottom .global-nav-link.is-cta,
.logo-center .global-nav-link.is-cta {
  width: 100%;
  height: 3rem;
  margin: 0;
}

@media screen and (min-width: 64rem) {
  .nav-bottom .global-nav,
  .logo-center .global-nav {
    padding-right: calc(var(--col-gutter) * 1.5);
    padding-left: calc(var(--col-gutter) * 1.5);
  }
  .nav-bottom .global-nav > .global-nav-list .global-nav-item,
  .logo-center .global-nav > .global-nav-list .global-nav-item {
    border-right: var(--border-width-sm) solid var(--color-gray30);
  }
  .logo-center .global-nav-item:hover:has(ul) {
    position: static;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list {
    overflow: initial;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.5rem 1fr 0.5rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr 0.5rem 1fr;
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
    margin: auto;
    max-width: var(--container);
    padding: 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: 0;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(5) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list > *:nth-child(6) {
    -ms-grid-row: 3;
    -ms-grid-column: 5;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list:after {
    position: absolute;
    display: inline-block;
    content: "";
    background-color: var(--color-gray30);
    width: 200vw;
    height: 100%;
    left: 0;
    z-index: -1;
    top: 0;
    margin: 0 -50vw;
  }
  .logo-center .global-nav-item:hover:has(ul) .global-nav-list .global-nav-item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 0;
  }
}
/* ------------------------------
  モバイルメニュー
------------------------------ */
.global-nav-mobile-menu-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--header-height-fixed);
  height: var(--header-height-fixed);
  text-decoration: none;
  background: var(--color-primary);
}
.global-nav-mobile-menu-btn:active, .global-nav-mobile-menu-btn:focus {
  outline: 0;
}

.global-nav-mobile-menu-text {
  margin: 0.5rem 0 0;
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: bold;
  line-height: var(--line-height-ss);
}

/* トグルメニューアイコン */
.global-nav-mobile-icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  margin: 0.5rem auto;
  vertical-align: middle;
  background-color: var(--color-white);
  border-radius: 1px;
  -webkit-transition: 0.1s all;
  transition: 0.1s all;
}
.global-nav-mobile-icon-toggle-menu::before, .global-nav-mobile-icon-toggle-menu::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 1px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  content: "";
}
.global-nav-mobile-icon-toggle-menu::before {
  top: -0.4rem;
}
.global-nav-mobile-icon-toggle-menu::after {
  bottom: -0.4rem;
}
[aria-expanded=true] .global-nav-mobile-icon-toggle-menu {
  background: transparent;
}
[aria-expanded=true] .global-nav-mobile-icon-toggle-menu::before {
  width: 1.25rem;
  -webkit-transform: translate(0, 0.4rem) rotate(45deg);
          transform: translate(0, 0.4rem) rotate(45deg);
}
[aria-expanded=true] .global-nav-mobile-icon-toggle-menu::after {
  width: 1.25rem;
  -webkit-transform: translate(0, -0.4rem) rotate(-45deg);
          transform: translate(0, -0.4rem) rotate(-45deg);
}

@media (max-width: 63.99875rem) {
  .is-locked {
    overflow: hidden;
  }
}
.global-nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: var(--zindex-mobile-nav);
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-top: var(--header-height);
  overflow-y: scroll;
  background: var(--color-globalnav-bg);
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}
.global-nav-mobile.is-active {
  display: block;
}
.global-nav-mobile.is-opened {
  opacity: 1;
}
.global-nav-mobile .footer-sns-item img {
  width: 30px;
}

@media (min-width: 64rem) {
  .global-nav-mobile.is-active,
  .global-nav-mobile-menu {
    display: none;
  }
}
/* モバイルメニュー開いた時
------------------------------ */
.global-nav-mobile-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 1rem;
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: var(--border-radius-lg);
}
@media (min-width: 30rem) {
  .global-nav-mobile-inner {
    margin: 2rem auto;
    padding: 2rem;
    max-width: 44rem;
  }
}

.global-nav-mobile-menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--zindex-mobile-nav);
}

.global-nav-mobile-navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem 0;
  width: 100%;
}

.global-nav-mobile-group {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav-mobile-navbar > .global-nav-mobile-group {
  border-top: var(--border-width-sm) solid var(--color-gray30);
}

.global-nav-mobile-item {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
}
.global-nav-mobile-item.level-1 {
  border-bottom: var(--border-width-sm) solid var(--color-gray30);
}
.global-nav-mobile-item:has(.global-nav-mobile-group) {
  position: relative;
}
.global-nav-mobile-item:has(.global-nav-mobile-group) .icon-expand {
  display: inline-block;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  top: calc(50% - 12px);
  background: url(../images/icon-chevron-right.svg);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}
.global-nav-mobile-item:has(.global-nav-mobile-group) .icon-expand:hover {
  cursor: pointer;
}
.global-nav-mobile-item:has(.global-nav-mobile-group) .icon-expand.is-close {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.global-nav-mobile-item .global-nav-mobile-group {
  display: none;
  padding: 0.5rem 0 1rem;
}
.global-nav-mobile-item .global-nav-mobile-item {
  font-size: 0.8rem;
}
.global-nav-mobile-item .global-nav-mobile-item .icon-expand {
  display: none;
}
.global-nav-mobile-item .global-nav-mobile-item .icon-expand::before, .global-nav-mobile-item .global-nav-mobile-item .icon-expand::after {
  content: none;
}
.global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link {
  padding: 0.75rem 0 0.75rem 1rem;
  border-bottom: 0;
}
.global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link:link, .global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link:visited, .global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link:hover, .global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link:active, .global-nav-mobile-item .global-nav-mobile-item .global-nav-mobile-link:focus {
  color: var(--color-text-2nd);
}

.global-nav-mobile-link {
  position: relative;
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
}
.global-nav-mobile-link:link, .global-nav-mobile-link:visited, .global-nav-mobile-link:hover, .global-nav-mobile-link:active, .global-nav-mobile-link:focus {
  color: var(--color-text);
  text-decoration: none;
}
.global-nav-mobile-link.is-cta {
  margin: 1rem 0 0;
  color: var(--color-text-inverse);
  text-align: center;
  background: var(--color-primary);
  border-radius: var(--border-radius-lg);
  padding: var(--btn-padding-y) var(--btn-padding-x);
}
.global-nav-mobile-link.is-cta .icon-expand {
  right: 2rem;
}
.global-nav-mobile-link.is-cta .icon-expand::before {
  border-color: var(--color-text-inverse);
}
.global-nav-mobile-item:has(.global-nav-mobile-group) .global-nav-mobile-item .global-nav-mobile-link::before {
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 0;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAgNi42MDI3OEw0IDEwLjEwMjhMNCAzLjEwMjc4TDEwIDYuNjAyNzhaIiBmaWxsPSIjQ0FDQUNBIi8+PC9zdmc+);
  content: "";
}

.global-nav-mobile .icon-expand {
  position: absolute;
  top: 1px;
  right: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.global-nav-mobile .icon-expand:hover {
  background-color: var(--color-hover-bg);
}
.global-nav-mobile .form-search {
  width: 100%;
}

.global-nav-mobile-tel {
  width: 100%;
  text-align: center;
}

.global-nav-mobile-side-group {
  width: 100%;
  padding: 0;
  font-weight: bold;
  list-style: none;
}
.global-nav-mobile-side-group .global-nav-mobile-side-group {
  margin: 0 0 1.25rem;
}

.global-nav-mobile-side-item {
  font-size: 0.8rem;
}

.global-nav-mobile-side-link {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  color: currentcolor;
  text-decoration: none;
}
.global-nav-mobile-side-link:hover {
  color: inherit;
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.js .headline.js-animation-row {
  opacity: 0;
  will-change: transform, opacity;
}
.js .headline.js-animation-row.is-show {
  -webkit-animation: fade-in 0.2s 0.3s 1 both;
          animation: fade-in 0.2s 0.3s 1 both;
}

.headline-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  line-height: var(--line-height-base);
}
.headline-item:first-child .headline-link {
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}
.headline-item:last-child {
  border: 0;
}
.headline-item:last-child .headline-link {
  border-bottom-right-radius: var(--border-radius-lg);
  border-bottom-left-radius: var(--border-radius-lg);
}

.headline-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-white);
  border-bottom: var(--border-width-sm) solid var(--color-gray10);
}
.headline-item:last-child .headline-link {
  border: 0;
}
.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: var(--color-text);
}
.headline-link:hover {
  position: relative;
  background: var(--color-hover-bg-2nd);
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}

.headline-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0.75rem;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
  line-height: var(--line-height-sm);
}

.headline-date {
  margin-right: 0.5rem;
  color: var(--color-text-2nd);
}

.headline-category {
  margin-right: 0.75rem;
  padding-left: 0.75rem;
}

.headline-text {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
}

.headline-badge-news {
  display: inline-block;
  margin: 0.25rem 0.5rem 0 0;
  font-weight: bold;
  font-size: 0.8rem;
  line-height: var(--line-height-ss);
  vertical-align: text-top;
}

@media screen and (min-width: 48rem) {
  .headline-link {
    padding: 2rem;
  }
  .headline-text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 64rem) {
  .headline-text {
    font-size: 1.25rem;
  }
}
/* ------------------------------
　　よくあるご質問
------------------------------ */
.faq {
  border-radius: var(--border-radius-md);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.faq:hover {
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}
.faq:hover .faq-question {
  background: var(--color-hover-bg-2nd);
}
.faq:hover .faq-answer {
  border-top: 1px solid transparent;
}

.faq-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 2rem;
  margin: 0;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

.faq-question-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.faq-question-button.toggle-button {
  padding: 2rem 1rem;
}

.faq-question {
  margin: 0;
  font-size: 1rem;
}
.faq-question .faq-icon {
  color: var(--color-primary);
  line-height: 1;
}
.faq-question .faq-title {
  margin: 0;
  font-weight: bold;
  line-height: var(--line-height-base);
}

.faq-answer {
  margin: 0 1rem;
  padding: 2rem 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 10px;
  border-top: 1px solid var(--color-gray30);
}
.faq-answer .faq-icon,
.faq-answer .faq-icon a {
  color: var(--color-gray90);
  text-decoration: none;
  line-height: 1;
}
.faq-answer .entry-style {
  margin-bottom: -1rem;
}

@media screen and (min-width: 48rem) {
  .faq-question {
    font-size: 1.25rem;
  }
  .faq-question-button.toggle-button {
    padding: 2rem;
  }
  .faq-icon {
    font-size: 1.953125rem;
  }
  .faq-answer {
    margin: 0 2rem;
  }
}
/* 質問リスト */
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-list li {
  margin-bottom: var(--entry-el-margin-md);
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
/* ステップ
------------------------------ */
.form-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 3rem;
  padding: 0;
  /* カウンターの設定 */
  counter-reset: mailStep;
}

.form-step-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
  font-size: 1rem;
  list-style: none;
}
.form-step-item::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 0 0.5rem;
  color: var(--color-text);
  line-height: var(--line-height-lg);
  background: var(--color-gray10);
  border-radius: 50%;
  content: counter(mailStep);
  /* カウンターの設定 */
  counter-increment: mailStep;
}
.form-step-item.is-current {
  font-weight: bold;
}
.form-step-item.is-current::before {
  color: var(--color-white);
  background: var(--color-primary);
}
.form-step-item:not(:last-child) {
  margin: 0 1.25rem 0 0;
}

@media screen and (min-width: 48rem) {
  .form-step {
    padding: 1rem 1rem 1rem 0;
  }
  .form-step-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 1.25rem;
  }
  .form-step-item::before {
    width: 2.5rem;
    height: 2.5rem;
    margin: 0 0.5rem 0 0;
    font-size: 1.25rem;
  }
  .form-step-item:not(:last-child) {
    margin: 0 2rem 0 0;
  }
}
@media screen and (max-width: 47.99875rem) {
  .form-step {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* フォームレイアウト
------------------------------ */
.form-input-wrap {
  padding-bottom: 3rem;
}

.form-group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.form-group-list.is-confirm {
  padding-bottom: var(--gutter-lg);
}

.form-group-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}

.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

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

.form-control {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  line-height: var(--line-height-lg);
}
.form-control.form-item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.form-button-group .button {
  margin: 0;
}

@media screen and (min-width: 48rem) {
  .form-label {
    vertical-align: top;
  }
}
.form-button-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 48rem) {
  .form-button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .form-button:not(:last-child) {
    margin: 0 1.25rem 0 0;
  }
}
@media screen and (max-width: 47.99875rem) {
  .form-button {
    width: 100%;
    margin: 0 0 1rem;
  }
  .form-button .button {
    width: 100%;
  }
  .form-button-return {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
/* ラベル
------------------------------ */
.label-required {
  margin: 0 0 0 1rem;
  padding: 0.25rem 0.5rem;
  color: var(--color-danger);
  font-size: 0.8rem;
  vertical-align: middle;
  background: var(--color-danger-light);
  border-radius: var(--border-radius-sm);
}

.label-optional {
  margin: 0 0 0 0.25rem;
  padding: 0.25rem 0.5rem;
  color: var(--color-text);
  font-size: 0.8rem;
  vertical-align: middle;
  background: var(--color-gray10);
  border-radius: var(--border-radius-sm);
}
.label-optional:first-child {
  margin: 0 0.25rem 0 0;
}

@media screen and (min-width: 48rem) {
  .label-optional {
    margin: 0 0 0 1rem;
  }
  .label-optional:first-child {
    margin: 0 0.5rem 0 0;
  }
}
/* フォーム要素
------------------------------ */
input::-webkit-input-placeholder {
  color: red;
}
input::-moz-placeholder {
  color: red;
}
input:-ms-input-placeholder {
  color: red;
}
input::-ms-input-placeholder {
  color: red;
}
input::placeholder {
  color: red;
}

/* IE */
input:-ms-input-placeholder {
  color: red;
}

/* Edge */
input::-ms-input-placeholder {
  color: red;
}

.form-group {
  display: block;
  border: 0;
}
.form-group select[required]:required {
  border: var(--border-width-sm) solid var(--color-error);
}
.form-group select.focused:invalid {
  border: var(--border-width-sm) solid var(--color-error);
}
.form-group select[required]:valid {
  border: var(--border-width-sm) solid var(--color-gray30);
}
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=datetime],
.form-group input[type=datetime-local],
.form-group input[type=date],
.form-group input[type=month],
.form-group input[type=time],
.form-group input[type=week],
.form-group input[type=number],
.form-group input[type=email],
.form-group input[type=url],
.form-group input[type=search],
.form-group input[type=tel],
.form-group textarea,
.form-group select {
  background-color: var(--color-white);
  color: var(--color-text);
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-group input[type=text][required]:required,
.form-group input[type=password][required]:required,
.form-group input[type=datetime][required]:required,
.form-group input[type=datetime-local][required]:required,
.form-group input[type=date][required]:required,
.form-group input[type=month][required]:required,
.form-group input[type=time][required]:required,
.form-group input[type=week][required]:required,
.form-group input[type=number][required]:required,
.form-group input[type=email][required]:required,
.form-group input[type=url][required]:required,
.form-group input[type=search][required]:required,
.form-group input[type=tel][required]:required,
.form-group textarea[required]:required,
.form-group select[required]:required {
  background-color: var(--color-white);
}
.form-group input[type=text].focused:invalid, .form-group input[type=text].invalid,
.form-group input[type=password].focused:invalid,
.form-group input[type=password].invalid,
.form-group input[type=datetime].focused:invalid,
.form-group input[type=datetime].invalid,
.form-group input[type=datetime-local].focused:invalid,
.form-group input[type=datetime-local].invalid,
.form-group input[type=date].focused:invalid,
.form-group input[type=date].invalid,
.form-group input[type=month].focused:invalid,
.form-group input[type=month].invalid,
.form-group input[type=time].focused:invalid,
.form-group input[type=time].invalid,
.form-group input[type=week].focused:invalid,
.form-group input[type=week].invalid,
.form-group input[type=number].focused:invalid,
.form-group input[type=number].invalid,
.form-group input[type=email].focused:invalid,
.form-group input[type=email].invalid,
.form-group input[type=url].focused:invalid,
.form-group input[type=url].invalid,
.form-group input[type=search].focused:invalid,
.form-group input[type=search].invalid,
.form-group input[type=tel].focused:invalid,
.form-group input[type=tel].invalid,
.form-group textarea.focused:invalid,
.form-group textarea.invalid,
.form-group select.focused:invalid,
.form-group select.invalid {
  background-color: var(--color-white);
  border-color: var(--color-error);
  -webkit-box-shadow: var(--box-shadow-error), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-error), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-group input[type=text][required]:valid,
.form-group input[type=password][required]:valid,
.form-group input[type=datetime][required]:valid,
.form-group input[type=datetime-local][required]:valid,
.form-group input[type=date][required]:valid,
.form-group input[type=month][required]:valid,
.form-group input[type=time][required]:valid,
.form-group input[type=week][required]:valid,
.form-group input[type=number][required]:valid,
.form-group input[type=email][required]:valid,
.form-group input[type=url][required]:valid,
.form-group input[type=search][required]:valid,
.form-group input[type=tel][required]:valid,
.form-group textarea[required]:valid,
.form-group select[required]:valid {
  background-color: var(--color-white);
}
.form-group input[type=text]:focus,
.form-group input[type=password]:focus,
.form-group input[type=datetime]:focus,
.form-group input[type=datetime-local]:focus,
.form-group input[type=date]:focus,
.form-group input[type=month]:focus,
.form-group input[type=time]:focus,
.form-group input[type=week]:focus,
.form-group input[type=number]:focus,
.form-group input[type=email]:focus,
.form-group input[type=url]:focus,
.form-group input[type=search]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus,
.form-group select:focus {
  background-color: var(--color-white);
  border-color: var(--color-focus);
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=datetime],
.form-group input[type=datetime-local],
.form-group input[type=date],
.form-group input[type=month],
.form-group input[type=time],
.form-group input[type=week],
.form-group input[type=number],
.form-group input[type=email],
.form-group input[type=url],
.form-group input[type=search],
.form-group input[type=tel] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.75rem;
  font-size: 1rem;
  line-height: var(--line-height-base);
  border: var(--border-width-sm) solid rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-md);
}
.form-group textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
}
.form-group select {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 3rem;
  padding: 0.75rem 3rem 0.75rem 1rem;
  font-size: 1rem;
  line-height: var(--line-height-base);
  vertical-align: top;
  border-radius: var(--border-radius-sm);
}
.form-group .form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.form-group .form-checkbox label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  cursor: pointer;
}
.form-group .form-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 24px;
  height: 24px;
  margin: 0;
}
.form-group .form-checkbox input[type=checkbox]:checked + .ico-checkbox {
  background-color: var(--color-primary);
  background-image: url("../images/icon-check.svg");
  border-color: var(--color-primary);
}
.form-group .form-checkbox input[type=checkbox]:focus + .ico-checkbox {
  border-color: var(--color-primary);
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-group .form-checkbox .ico-checkbox {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gray30);
  display: inline-block;
  margin-right: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
  border-radius: var(--border-radius-md);
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
  pointer-events: none;
  background-color: var(--color-white);
  vertical-align: middle;
}
.form-group .form-checkbox .ico-checkbox.invalid {
  border-color: var(--color-danger);
}
.form-group .form-checkbox-only {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0.75rem 1rem;
  line-height: 1.5;
  background: var(--color-gray10);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}
.form-group .form-checkbox-only:hover {
  background: var(--color-gray20);
}
.form-group .form-checkbox-only:focus-within {
  background-color: var(--color-gray10);
  border-color: #0061d1;
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-group .form-checkbox-only-label {
  vertical-align: middle;
}
.form-group .form-checkbox-only-label a {
  color: var(--color-text);
}
.form-group .form-checkbox-only-label a:link,
.form-group .form-checkbox-only-label a:hover,
.form-group .form-checkbox-only-label a:visited,
.form-group .form-checkbox-only-label a:active,
.form-group .form-checkbox-only-label a:focus {
  text-decoration: none;
  border-bottom: 1px dashed;
}

@media screen and (min-width: 48rem) {
  .form-group input[type=text],
  .form-group input[type=password],
  .form-group input[type=datetime],
  .form-group input[type=datetime-local],
  .form-group input[type=date],
  .form-group input[type=month],
  .form-group input[type=time],
  .form-group input[type=week],
  .form-group input[type=number],
  .form-group input[type=email],
  .form-group input[type=url],
  .form-group input[type=search],
  .form-group input[type=tel] {
    padding: 0.75rem;
  }
  .form-group textarea {
    padding: 0.75rem;
  }
  .form-group select {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.form-radio label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  cursor: pointer;
}
.form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 24px;
  height: 24px;
  margin: 0;
}
.form-radio input[type=radio]:checked + .ico-radio {
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNOS44MDAxOSA1LjAwMjY0QzkuODAwMTkgNy42NTM2IDcuNjUxMTYgOS44MDI2NCA1LjAwMDE5IDkuODAyNjRDMi4zNDkyMyA5LjgwMjY0IDAuMjAwMTk1IDcuNjUzNiAwLjIwMDE5NSA1LjAwMjY0QzAuMjAwMTk1IDIuMzUxNjcgMi4zNDkyMyAwLjIwMjYzNyA1LjAwMDE5IDAuMjAyNjM3QzcuNjUxMTYgMC4yMDI2MzcgOS44MDAxOSAyLjM1MTY3IDkuODAwMTkgNS4wMDI2NFoiIGZpbGw9IndoaXRlIi8+PC9zdmc+");
  border-color: var(--color-primary);
  background-size: 10px 10px;
}
.form-radio input[type=radio]:focus + .ico-radio {
  border-color: var(--color-primary);
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-radio .ico-radio {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-gray30);
  display: inline-block;
  margin-right: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70% auto;
  border-radius: var(--border-radius-round);
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
  pointer-events: none;
}

/* ヘルパーテキスト
------------------------------ */
.form-helper-text {
  margin: 1rem 0 0;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}
.acms-entry .form-helper-text {
  margin: 1rem 0;
}

/* バリデーター
------------------------------ */
.form-group .valid-mark {
  display: none;
}
.form-group .valid-mark.valid {
  display: inline;
  float: right;
  color: #5cb85c;
}
.form-group .invalid {
  border-color: var(--color-error);
  -webkit-box-shadow: var(--box-shadow-error), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-error), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-group [class*=acms-col] {
  margin-bottom: 1.5rem;
}
.form-group .form-error-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 1rem 0 0;
  color: var(--color-error);
  font-size: 0.8rem;
}
.form-helper-text + .validator-result-0 .form-group .form-error-text {
  margin-top: 0;
}
.form-group .form-error-text .error-icon {
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1.25rem;
          flex: 0 0 1.25rem;
  padding: 1.5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.form-group .form-error-text .error-icon svg {
  width: 100%;
  height: auto;
}
.form-group .form-error-text .error-icon svg path {
  stroke: var(--color-error);
}
.form-group .transaction-notice-,
.form-group .v-result-,
.form-group .v-result-1,
.form-group .validator-result-,
.form-group .validator-result-1 {
  display: none;
}

/* メッセージ
------------------------------ */
.form-message {
  margin: 0 0 3rem;
  font-weight: bold;
}

.form-message-back {
  text-align: center;
}

.form-privacy-body {
  background: var(--color-gray10);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 0 1rem;
  padding: 1rem 0;
  border-radius: var(--border-radius-lg);
  height: 20rem;
  overflow-y: auto;
}

/* 動的フォーム
------------------------------ */
.entry-form-wrapper {
  padding: 2rem 1rem;
  border: 1px solid var(--color-gray10);
  border-radius: var(--border-radius-xl);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.entry-form-wrapper .heading-lg {
  margin-top: 0;
  padding-top: 0;
}

@media screen and (min-width: 48rem) {
  .entry-form-wrapper {
    margin: 2rem 0;
    padding: 4rem 5rem;
    border-radius: var(--border-radius-xxl);
  }
}
/* ------------------------------
　　リスト
------------------------------ */
.list-inline {
  display: inline-block;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

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

.list-inline-item:not(:last-child) {
  margin-right: 0.25rem;
}

/* ------------------------------
　　リストグループ
------------------------------ */
.list-group {
  margin: 0 calc(var(--unit-gutter-var) / -4);
  padding: 0;
  list-style: none;
}

.list-group-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem 0.5rem;
  color: currentcolor;
  font-weight: normal;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.list-group-item + .list-group {
  border: 0;
  margin: 0;
}
.list-group-item.level-2 svg {
  width: 12px;
  height: auto;
  margin-right: 0.75rem;
}
.list-group-item.level-2 svg path {
  fill: var(--color-gray30);
}
.list-group-item:hover {
  background: var(--color-hover-bg-2nd);
}
.list-group-item:hover .badge {
  background: var(--color-white);
}
.list-group-item .badge {
  margin-left: auto;
}

/* ------------------------------
　　ローカルナビゲーション
------------------------------ */
.local-nav-wrap {
  position: relative;
  padding: 0 0 2rem;
}
.local-nav-wrap::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 1rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(var(--color-white)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--color-white));
  content: "";
}
.page-title-wrapper + .local-nav-wrap {
  margin-top: -var(--page-title-margin-bottom);
}

.local-nav-inner {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
}

.local-nav {
  font-weight: bold;
}

.local-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.local-nav-item {
  padding: 0 1.5rem 0 0;
}

.local-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-text);
  text-decoration: none;
}
.local-nav-link .icon-button {
  margin: 0 0 0 0.5rem;
}
.local-nav-link:hover, .local-nav-link:visited, .local-nav-link:active {
  color: var(--color-text);
  text-decoration: none;
}

@media screen and (min-width: 48rem) {
  .local-nav-wrap {
    padding: 0 0 3rem;
  }
  .page-title-wrapper + .local-nav-wrap {
    margin-top: -var(--page-title-margin-bottom-md);
  }
}
/* ------------------------------
　　メインビジュアル（デフォルト）
------------------------------ */
.main-visual {
  position: relative;
  height: var(--mv-height-sp, calc(100svh - 3.5rem));
  min-height: 20rem;
  margin-bottom: 5rem;
}
.main-visual .main-visual-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
}
.main-visual .main-visual-bg {
  width: 100%;
  height: 100%;
}
.main-visual .main-visual-bg .is-alone {
  -webkit-animation: zoom 3s 0.3s 1 both;
          animation: zoom 3s 0.3s 1 both;
  -webkit-animation-duration: ease-out;
          animation-duration: ease-out;
}
.main-visual .main-visual-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual .main-visual-box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -ms-grid;
  display: grid;
  gap: var(--col-gutter);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100vw - 2rem);
  max-width: 480px;
  padding: 2rem;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.9);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  place-content: center;
}
.main-visual .main-visual-catch {
  margin: 0;
  font-size: 2.44140625rem;
  line-height: var(--line-height-sm);
  -webkit-animation: fade-in 0.3s 0.8s 1 both;
          animation: fade-in 0.3s 0.8s 1 both;
  will-change: transform, opacity;
}
.main-visual .main-visual-catch-sub {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: var(--line-height-lg);
  -webkit-animation: fade-in 0.3s 1.3s 1 both;
          animation: fade-in 0.3s 1.3s 1 both;
  will-change: transform, opacity;
}
.main-visual .main-visual-links {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
}
.main-visual .main-visual-links .button.is-bordered:not(:hover) {
  background: var(--color-white);
}
.main-visual .main-visual-scroll {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: bold;
  text-align: center;
  -webkit-animation: fade-in 0.3s 2.8s 1 both;
          animation: fade-in 0.3s 2.8s 1 both;
  will-change: transform, opacity;
}
.main-visual .main-visual-scroll-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.main-visual .main-visual-scroll-link:link, .main-visual .main-visual-scroll-link:visited, .main-visual .main-visual-scroll-link:active, .main-visual .main-visual-scroll-link:focus {
  color: var(--color-white);
}
.main-visual .main-visual-scroll-link:hover {
  opacity: 0.6;
}
.main-visual .main-visual-scroll-link::after {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  margin: 0.25rem 0 0;
  background-image: url(../images/icon-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  content: "";
}
.main-visual .splide__pagination {
  position: static;
}
.main-visual .splide__pagination > li {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 48rem) {
  .main-visual {
    height: var(--mv-height-pc, 48rem);
  }
  .main-visual .main-visual-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    max-width: 40rem;
    padding: 5rem 6.5rem;
  }
  .main-visual .main-visual-box.is-left {
    left: 0;
    text-align: left;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .main-visual .main-visual-box.is-center {
    text-align: center;
  }
  .main-visual .main-visual-box.is-right {
    right: 0;
    left: auto;
    text-align: right;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .main-visual .main-visual-catch {
    font-size: 3.8146972656rem;
  }
  .main-visual .main-visual-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: calc(var(--col-gutter) / 2);
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    width: 100%;
  }
  .main-visual .main-visual-links .button {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .main-visual-box.is-left .main-visual .main-visual-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-visual-box.is-right .main-visual .main-visual-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/* ------------------------------
　　メインビジュアル（top-main-visual-ex01.html）
------------------------------ */
.main-visual-extend01 {
  position: relative;
  height: var(--mv-extend-height-sp);
  min-height: 20rem;
  overflow: hidden;
}
.main-visual-extend01 .main-visual-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, #000000 100%);
}
.main-visual-extend01 .main-visual-bg {
  width: 100%;
  height: 100%;
}
.main-visual-extend01 .main-visual-bg .is-alone {
  -webkit-animation: zoom 3s 0.3s 1 both;
          animation: zoom 3s 0.3s 1 both;
  -webkit-animation-duration: ease-out;
          animation-duration: ease-out;
}
.main-visual-extend01 .main-visual-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual-extend01 .main-visual-box {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100vw - 2rem);
  max-width: 480px;
  color: var(--color-white);
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.main-visual-extend01 .main-visual-box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.main-visual-extend01 .main-visual-catch {
  margin: 0;
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: var(--line-height-base);
  -webkit-animation: fade-in 0.3s 1.3s 1 both;
          animation: fade-in 0.3s 1.3s 1 both;
  will-change: transform, opacity;
}
.main-visual-extend01 .main-visual-catch-sub {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: var(--line-height-sm);
  -webkit-animation: fade-in 0.3s 0.8s 1 both;
          animation: fade-in 0.3s 0.8s 1 both;
  will-change: transform, opacity;
}
.main-visual-extend01 .main-visual-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.main-visual-extend01 .main-visual-links .main-visual-ex-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
}
.main-visual-extend01 .main-visual-links .main-visual-ex-button .icon-button {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}
.main-visual-extend01 .main-visual-links .main-visual-ex-button svg {
  border: 1px solid var(--color-white);
  background-color: transparent;
}
.main-visual-extend01 .main-visual-links .main-visual-ex-button svg path {
  stroke: var(--color-white);
}
.main-visual-extend01 .main-visual-scroll {
  display: none;
}
.main-visual-extend01 .splide__controls {
  position: absolute;
  z-index: 10;
  padding: 1.5rem 0;
  gap: 0;
  z-index: 10;
  right: auto;
  bottom: 0;
  left: 1rem;
}
.main-visual-extend01 .splide__pagination {
  position: relative;
  bottom: 0;
  padding-left: 0;
}
.main-visual-extend01 .pagination-page-extend01 {
  width: 40px;
  height: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNCIgdmlld0JveD0iMCAwIDI0IDQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PG1hc2sgaWQ9InBhdGgtMS1pbnNpZGUtMV85MTE4XzE0OCIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0wIDBIMjRWNEgwVjBaIi8+PC9tYXNrPjxwYXRoIGQ9Ik0wIDBWLTFILTFWMEgwWk0yNCAwSDI1Vi0xSDI0VjBaTTI0IDRWNUgyNVY0SDI0Wk0wIDRILTFWNUgwVjRaTTAgMUgyNFYtMUgwVjFaTTIzIDBWNEgyNVYwSDIzWk0yNCAzSDBWNUgyNFYzWk0xIDRWMEgtMVY0SDFaIiBmaWxsPSJ3aGl0ZSIgbWFzaz0idXJsKCNwYXRoLTEtaW5zaWRlLTFfOTExOF8xNDgpIi8+PC9zdmc+") center no-repeat;
}
.main-visual-extend01 .pagination-page-extend01.is-active {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iNCIgdmlld0JveD0iMCAwIDI0IDQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjQiIGZpbGw9IndoaXRlIi8+PC9zdmc+");
}
.main-visual-extend01 .main-visual-scroll-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}
.main-visual-extend01 .main-visual-scroll-link:link, .main-visual-extend01 .main-visual-scroll-link:visited, .main-visual-extend01 .main-visual-scroll-link:active, .main-visual-extend01 .main-visual-scroll-link:focus {
  color: var(--color-white);
}
.main-visual-extend01 .main-visual-scroll-link:hover {
  opacity: 0.6;
}
.main-visual-extend01 .main-visual-scroll-link::after {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  margin: 0.25rem 0 0;
  background-image: url(../images/icon-button.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  content: "";
}

@media screen and (min-width: 48rem) {
  .main-visual-extend01 {
    height: var(--mv-height-pc, 48rem);
  }
  .main-visual-extend01.logo-center {
    height: var(--mv-logo-center-height-pc);
  }
  .main-visual-extend01.nav-bottom {
    height: var(--mv-nav-bottom-height-pc);
  }
  .main-visual-extend01 .main-visual-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    max-width: 100%;
    padding: 1.5rem 5rem 2rem;
  }
  .main-visual-extend01 .main-visual-box.is-left {
    left: 0;
    text-align: left;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .main-visual-extend01 .main-visual-box.is-right {
    right: 0;
    left: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .main-visual-extend01 .main-visual-catch {
    font-size: 3.0517578125rem;
  }
  .main-visual-extend01 .main-visual-catch-sub {
    font-size: 1.25rem;
  }
  .main-visual-extend01 .main-visual-links {
    gap: var(--col-gutter);
  }
  .main-visual-extend01 .main-visual-links .main-visual-ex-button {
    height: 3rem;
    font-weight: bold;
  }
  .main-visual-extend01 .main-visual-links .main-visual-ex-button .icon-button {
    width: 3rem;
    height: 3rem;
  }
  .main-visual-extend01 .main-visual-links .main-visual-ex-button:hover .icon-button svg {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .main-visual-box.is-left .main-visual-extend01 .main-visual-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-visual-box.is-right .main-visual-extend01 .main-visual-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .main-visual-extend01 .splide__controls {
    left: 5rem;
  }
  .main-visual-extend01 .main-visual-scroll {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto 2rem;
    z-index: 10;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: bold;
    text-align: center;
  }
}
/* ------------------------------
　　メインビジュアル（top-main-visual-ex02.html）
------------------------------ */
.main-visual-extend02 {
  position: relative;
  height: var(--mv-height-sp, calc(100svh - 3.5rem));
  min-height: 20rem;
  overflow: hidden;
}
.main-visual-extend02 .main-visual-bg {
  width: 100%;
  height: 100%;
}
.main-visual-extend02 .main-visual-bg .is-alone {
  -webkit-animation: zoom 3s 0.3s 1 both;
          animation: zoom 3s 0.3s 1 both;
  -webkit-animation-duration: ease-out;
          animation-duration: ease-out;
}
.main-visual-extend02 .main-visual-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual-extend02 .main-visual-box {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -ms-grid;
  display: grid;
  gap: var(--col-gutter);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc(100vw - 2rem);
  max-width: 480px;
  color: var(--color-primary);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  place-content: center;
}
.main-visual-extend02 .main-visual-catch {
  display: inline;
  margin: 0;
  background: var(--color-primary);
  color: var(--color-white);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 1.953125rem;
  line-height: var(--line-height-base);
  -webkit-animation: fade-in 0.3s 0.8s 1 both;
          animation: fade-in 0.3s 0.8s 1 both;
  will-change: transform, opacity;
}
.main-visual-extend02 .main-visual-text-grid {
  display: block;
  margin-top: 1rem;
}
.main-visual-extend02 .main-visual-catch-sub {
  display: inline;
  margin: 0;
  padding: 0.25rem 0.5rem;
  background: var(--color-gray100);
  color: var(--color-white);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.8;
  -webkit-animation: fade-in 0.3s 1.3s 1 both;
          animation: fade-in 0.3s 1.3s 1 both;
  will-change: transform, opacity;
}
.main-visual-extend02 .main-visual-links {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.main-visual-extend02 .main-visual-links .main-visual-ex-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2rem;
  text-decoration: none;
  color: var(--color-white);
  font-weight: bold;
}
.main-visual-extend02 .main-visual-links .main-visual-ex-button .icon-button {
  width: 2rem;
  height: 2rem;
  margin-left: 1rem;
}
.main-visual-extend02 .main-visual-links .main-visual-ex-button svg {
  border: 1px solid var(--color-white);
  background-color: transparent;
}
.main-visual-extend02 .main-visual-links .main-visual-ex-button svg path {
  stroke: var(--color-white);
}
.main-visual-extend02 .splide__pagination {
  position: relative;
  bottom: 0;
}
.main-visual-extend02 .splide__pagination > li {
  width: 1.75rem;
  height: 1.75rem;
  padding: 0.5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (min-width: 48rem) {
  .main-visual-extend02 {
    height: var(--mv-height-pc, 48rem);
  }
  .main-visual-extend02 .main-visual-bg img {
    width: 70% !important;
    display: block;
    margin-left: auto;
  }
  .main-visual-extend02 .main-visual-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: auto;
    min-width: 434px;
    max-width: 100%;
    padding: 5.5rem 6.5rem;
  }
  .main-visual-extend02 .main-visual-box.is-left {
    left: 0;
    text-align: left;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .main-visual-extend02 .main-visual-box.is-center {
    text-align: center;
  }
  .main-visual-extend02 .main-visual-box.is-right {
    right: 0;
    left: auto;
    text-align: right;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
  .main-visual-extend02 .main-visual-catch {
    font-size: 3.0517578125rem;
  }
  .main-visual-extend02 .main-visual-catch-sub {
    font-size: 1.25rem;
  }
  .main-visual-extend02 .main-visual-links {
    -ms-grid-columns: 1fr 1rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 434px;
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button {
    height: 3rem;
    color: var(--color-primary);
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button .icon-button {
    width: 3rem;
    height: 3rem;
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button .icon-button svg {
    border: 1px solid var(--color-primary);
    background-color: var(--color-white);
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button .icon-button svg path {
    stroke: var(--color-primary);
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button:hover .icon-button svg {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }
  .main-visual-extend02 .main-visual-links .main-visual-ex-button:hover .icon-button svg path {
    stroke: var(--color-white);
  }
  .main-visual-box.is-left .main-visual-extend02 .main-visual-links {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-visual-box.is-right .main-visual-extend02 .main-visual-links {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .main-visual-extend02 .splide__controls {
    position: absolute;
    left: 5rem;
    bottom: 0;
    z-index: 10;
  }
}
/* ------------------------------
　　メディア
------------------------------ */
.media-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--col-gutter);
  margin: -1rem 0 0;
  padding: 0 0 1rem;
  list-style: none;
}

.media-item-amount {
  margin: 0;
  padding: 1rem 0 2rem;
  font-weight: bold;
}

.media-link {
  display: block;
  padding: 0;
  color: var(--color-text);
  text-decoration: none;
}
.media-link:link, .media-link:hover, .media-link:active, .media-link:visited, .media-link:focus {
  color: var(--color-text);
}
.media-link:hover {
  background: var(--color-hover-bg-2nd);
}
.media-link:hover .media-img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.media-link:hover .media-read-more::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.media-item-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.media-time {
  display: inline-block;
  margin: 0 0 0.25rem;
  color: var(color-gray90);
  line-height: var(--line-height-base);
}

.media-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: var(--line-height-base);
}

.media-item-img {
  margin: 0 0 1rem;
}

.media-img-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.media-img {
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  will-change: transform;
}

.media-text {
  margin: 0;
  color: var(--color-text-2nd);
  font-size: 1rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.media-read-more {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0.25rem 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: bold;
  font-size: 1rem;
}
.media-read-more::before {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-secondary);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  content: "";
}
.media-read-more .icon-button {
  margin: 0 0 0 0.5rem;
}

@media screen and (min-width: 30rem) {
  .media-list {
    display: block;
    margin: -1rem -1rem 0;
  }
  .media-link {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 180px;
    grid-template-columns: 1fr 180px;
    padding: 1rem;
  }
  .media-link.is-noimage {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .media-item {
    margin: 0;
  }
  .media-item .label {
    margin-left: 0.25rem;
  }
  .media-item-img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / 3;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2 / 3;
    margin: 0;
  }
  .media-time {
    font-size: 0.8rem;
  }
  .media-category {
    margin: 0 0 0 1rem;
    font-size: 0.8rem;
  }
  .media-title {
    font-size: 1.25rem;
  }
  .media-title::before {
    content: none;
  }
}
@media screen and (min-width: 48rem) {
  .media-link {
    -ms-grid-columns: 1fr 2rem 280px;
    grid-template-columns: 1fr 280px;
    gap: 0 2rem;
  }
  .media-title {
    font-size: 1.5625rem;
  }
  .media-text {
    font-size: 1rem;
  }
  .media-read-more {
    padding: 0.5rem 0;
  }
}
/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: var(--page-title-height);
  color: var(--color-text);
  background: var(--color-page-title-bg);
  background-position: center;
  background-size: cover;
}
.page-title-wrapper[style] {
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-white);
}
.page-title-wrapper[style] .page-title-filter {
  display: block;
}
.page-title-wrapper[style] .page-title-en {
  color: var(--color-white);
}

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

.page-title-filter {
  position: absolute;
  inset: 0;
  display: none;
  background: var(--page-title-filter);
}

.page-title {
  margin: 0;
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: var(--line-height-sm);
  word-break: break-all;
}

.page-title-text-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.page-title-text-wrap.left {
  margin-right: auto;
  text-align: left;
}
.page-title-text-wrap.center {
  margin: 0 auto;
  text-align: center;
}
.page-title-text-wrap.right {
  margin-left: auto;
  text-align: right;
}

.page-title-en {
  margin: 0;
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 0.8rem;
  line-height: var(--line-height-sm);
  text-transform: capitalize;
}

@media (min-width: 48rem) {
  .page-title-wrapper {
    height: var(--page-title-height-md);
  }
  .page-title {
    font-size: 1.953125rem;
  }
  .page-title-en {
    font-size: 1.25rem;
  }
}
/* ------------------------------
　　ページサブタイトル
------------------------------ */
.page-sub-title {
  font-size: 1.953125rem;
  color: var(--color-text);
  margin: 0 0 2rem;
}

.category-header {
  margin-bottom: 3rem;
}

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem 1rem 2rem;
  font-size: 1.25rem;
  list-style: none;
}
.pager li {
  display: inline-block;
}
.pager li.cur {
  /* 現在いる位置 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  color: var(--color-primary);
  background: var(--color-white);
  border: var(--border-width-md) solid var(--color-primary);
  border-radius: var(--border-radius-lg);
}
.pager li span:not([class]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
}

.pager-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 3rem;
  height: 3rem;
  padding: 0.25rem;
  color: var(--color-white);
  font-weight: bold;
  text-decoration: none;
  background: var(--color-primary);
  border: 2px solid transparent;
  border-radius: var(--border-radius-lg);
}
.pager-link svg path {
  stroke: var(--color-white);
}
.pager-link:-moz-any-link {
  color: var(--color-white);
}
.pager-link:any-link {
  color: var(--color-white);
}
.pager-link:hover {
  color: var(--color-white);
  text-decoration: none;
  background: var(--color-primary-hover);
}
.pager-link .svg-arrow-line {
  fill: var(--color-white);
}

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

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

/* 前後リンク */
.serial-nav {
  margin: 2rem 0;
}

.serial-nav-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1rem auto 1rem 1fr;
  grid-template-rows: 1fr auto 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
  list-style: none;
}

.serial-nav-item {
  line-height: var(--line-height-base);
}
.serial-nav-item a {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  padding: 0.75rem 1rem 1rem;
  color: var(--color-text);
  text-decoration: none;
  border: var(--border-width-sm) solid var(--color-gray30);
  border-radius: var(--border-radius-lg);
}
.serial-nav-item a:hover, .serial-nav-item a:visited, .serial-nav-item a:focus, .serial-nav-item a:active {
  color: inherit;
  text-decoration: none;
}
.serial-nav-item a:hover {
  text-decoration: none;
  background: var(--color-hover-bg-2nd);
}

.serial-nav-item-prev,
.serial-nav-item-next {
  min-width: 0;
}

.serial-nav-item-prev {
  text-align: left;
}
.serial-nav-item-prev a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.serial-nav-item-prev .icon-button {
  margin: 0 0.5rem 0 0;
  rotate: -180deg;
}

.serial-nav-item-next {
  text-align: right;
}
.serial-nav-item-next a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.serial-nav-item-next .icon-button {
  margin: 0 0 0 0.5rem;
}

.serial-nav-item-index {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: bold;
  font-size: 1rem;
}
.serial-nav-item-index a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.serial-nav-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0.5rem 0;
  font-weight: bold;
  font-size: 1rem;
}

.serial-nav-index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}
.serial-nav-index a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--color-text);
}
.serial-nav-index a:hover, .serial-nav-index a:visited, .serial-nav-index a:focus, .serial-nav-index a:active {
  color: inherit;
  text-decoration: none;
}
.serial-nav-index a:hover {
  text-decoration: none;
  background: var(--color-hover-bg);
}

.serial-nav-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  min-width: 0;
  /* ← これがないと省略が効かない */
  display: inline-block;
}

@media screen and (min-width: 48rem) {
  .serial-nav-list {
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 1fr 2rem auto 2rem 1fr;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem 2rem;
  }
  .serial-nav-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .serial-nav-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .serial-nav-list > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .serial-nav-item-index {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  .serial-nav-item-index a {
    padding: 2rem 0.5rem;
    display: block;
    border: 0;
  }
  .serial-nav-item-next {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  .serial-nav-index {
    display: none;
  }
}
/* ------------------------------
　　プロフィール
------------------------------ */
.profile {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1.5rem 1rem;
  background: var(--color-gray10);
  border-radius: var(--border-radius-sm);
}

.profile-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.profile-item-img {
  padding: 0 1rem 0 0;
}

.profile-img {
  width: 4.5rem;
  height: 4.5rem;
  vertical-align: top;
  border-radius: 50%;
}

.profile-item-info {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.profile-position {
  margin: 0 0.5rem 0 0;
  font-size: 0.8rem;
  line-height: var(--line-height-sm);
}

.profile-name {
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
  line-height: var(--line-height-sm);
}

.profile-text {
  margin: 0;
  font-size: 1rem;
  line-height: var(--line-height-lg);
}

.profile-footer {
  margin: 1.5rem 0 0;
}

.profile-author-link {
  margin: 1rem 0 0;
  text-align: right;
}
.profile-author-link a {
  font-size: 0.8rem;
  color: var(--color-text);
  font-weight: bold;
  text-decoration: none;
}
.profile-author-link a:hover {
  text-decoration: underline;
}
.profile-author-link a svg {
  width: 1rem;
  height: 1rem;
}
.profile-author-link .icon-button {
  margin-left: 0.5rem;
}

.profile-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.profile-sns a {
  display: block;
  width: 30px;
  height: 30px;
}
.profile-sns a img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 48rem) {
  .profile {
    position: relative;
    padding: 2rem;
  }
  .profile-item-img {
    padding: 0 2rem 0 0;
  }
  .profile-img {
    width: 5.5rem;
    height: 5.5rem;
  }
  .profile-name {
    font-size: 1rem;
  }
  .profile-footer {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    margin: 0;
  }
}
/* 検索フォーム（大）
------------------------------ */
.form-search .form-search-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 0.5rem;
  text-align: center;
}
.form-search .form-search-label {
  font-size: 0.8rem;
  font-weight: bold;
  margin-right: 1rem;
  line-height: 3rem;
  white-space: nowrap;
}
.form-search input.form-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 3rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background: var(--color-white);
  border: var(--border-width-sm) solid var(--color-gray30);
  border-radius: var(--border-radius-md);
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-search input.form-search-input:hover {
  background: var(--color-white);
  border-color: var(--color-gray50);
}
.form-search input.form-search-input:focus {
  background: var(--color-white);
  border-color: #137af3;
  outline: none;
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.form-search .form-search-side-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
.form-search .form-search-button {
  width: initial;
  padding: 0.75rem 2rem;
}
@media screen and (min-width: 48rem) {
  .form-search .form-search-button {
    padding: 0.75rem 2rem;
  }
}

/* 検索結果 */
.search-result-heading .form-search-label {
  display: none;
}

@media screen and (min-width: 48rem) {
  .search-result-heading .form-search-action {
    max-width: 50%;
  }
  .search-result-heading .form-search-button {
    min-width: initial;
  }
}
.result-text {
  margin-bottom: 1.5rem;
  font-weight: bold;
}

.result-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 1rem 2rem;
}

/* ------------------------------
　　splide.cssの上書き
------------------------------ */
.main-visual-slider,
.news-banner-carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}
.main-visual-slider .splide__slide,
.news-banner-carousel .splide__slide {
  overflow: hidden;
}
.main-visual-slider .splide__pagination__page,
.news-banner-carousel .splide__pagination__page {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 1px solid var(--color-white);
}
.main-visual-slider .splide__pagination,
.news-banner-carousel .splide__pagination {
  bottom: 0;
}
.main-visual-slider .splide__pagination > li,
.news-banner-carousel .splide__pagination > li {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.main-visual-slider .splide__pagination__page,
.news-banner-carousel .splide__pagination__page {
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  opacity: 1;
  margin: 0;
}
.main-visual-slider .splide__pagination__page:hover,
.news-banner-carousel .splide__pagination__page:hover {
  background-color: var(--color-primary);
}
.main-visual-slider .splide__pagination__page.is-active,
.news-banner-carousel .splide__pagination__page.is-active {
  background-color: var(--color-white);
  border: 1px solid var(--color-primary);
  -webkit-transform: none;
          transform: none;
}
.main-visual-slider .splide__controls,
.news-banner-carousel .splide__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem 0;
}
.main-visual-slider .splide__arrow,
.news-banner-carousel .splide__arrow {
  width: 3rem;
  height: 3rem;
  background: var(--color-white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  top: 50%;
  -webkit-transform: translateY(-1.5rem);
          transform: translateY(-1.5rem);
  opacity: 1;
}
.main-visual-slider .splide__arrow.splide__arrow--prev,
.news-banner-carousel .splide__arrow.splide__arrow--prev {
  left: -1.5rem;
}
.main-visual-slider .splide__arrow.splide__arrow--next,
.news-banner-carousel .splide__arrow.splide__arrow--next {
  right: -1.5rem;
}
.main-visual-slider .splide__arrow svg,
.news-banner-carousel .splide__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}
.main-visual-slider .splide__arrow svg path,
.news-banner-carousel .splide__arrow svg path {
  stroke: var(--color-gray80);
  fill: transparent;
}
.splide__arrow--prev .main-visual-slider .splide__arrow svg,
.splide__arrow--prev .news-banner-carousel .splide__arrow svg {
  -webkit-transform-origin: top;
          transform-origin: top;
}
.main-visual-slider .splide__track,
.main-visual-slider .splide__list,
.main-visual-slider .splide__slide,
.main-visual-slider .splide__slide picture,
.main-visual-slider .splide__slide img,
.news-banner-carousel .splide__track,
.news-banner-carousel .splide__list,
.news-banner-carousel .splide__slide,
.news-banner-carousel .splide__slide picture,
.news-banner-carousel .splide__slide img {
  width: 100%;
  height: 100%;
}
.main-visual-slider .splide__slide picture,
.main-visual-slider .splide__slide img,
.news-banner-carousel .splide__slide picture,
.news-banner-carousel .splide__slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.main-visual-slider .splide__toggle,
.news-banner-carousel .splide__toggle {
  border: none;
  background-color: var(--color-primary);
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main-visual-slider .splide__toggle .splide__toggle__play,
.main-visual-slider .splide__toggle .splide__toggle__pause,
.news-banner-carousel .splide__toggle .splide__toggle__play,
.news-banner-carousel .splide__toggle .splide__toggle__pause {
  width: 100%;
  height: 100%;
  content: "";
  -webkit-filter: brightness(20);
          filter: brightness(20);
}
.main-visual-slider .splide__toggle .splide__toggle__play:hover,
.main-visual-slider .splide__toggle .splide__toggle__pause:hover,
.news-banner-carousel .splide__toggle .splide__toggle__play:hover,
.news-banner-carousel .splide__toggle .splide__toggle__pause:hover {
  cursor: pointer;
}
.main-visual-slider .splide__toggle .splide__toggle__play,
.news-banner-carousel .splide__toggle .splide__toggle__play {
  background: url(../images/icon-triangle.svg) no-repeat center center;
  background-size: 1rem;
}
.main-visual-slider .splide__toggle .splide__toggle__pause,
.news-banner-carousel .splide__toggle .splide__toggle__pause {
  background: url(../images/icon-stop.svg) no-repeat center center;
  background-size: 1rem;
}

/* ------------------------------
　　タグ
------------------------------ */
.tag-wrapper {
  margin: 0 0 1.5rem;
}

.tag-title-inline {
  margin: 0 0 1rem;
  font-size: 1rem;
}

.tag-box {
  padding: 1rem 0.5rem 0.25rem;
  background: var(--color-gray20);
}

.tag-filter {
  margin-bottom: 3rem;
}

.tag-filter-heading {
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1.953125rem;
}

.tag-filter-selected {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}
.tag-filter-selected li {
  font-weight: bold;
}

.tag-filter-heading-more {
  font-weight: normal;
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
}

.tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tag-filter .tag-list {
  gap: 1rem;
  padding: 0;
}
.tag-filter .tag-list .tag-link {
  border-bottom: 1px dotted var(--color-text);
}

.tag-item {
  color: var(--color-text-2nd);
  font-size: 1rem;
}
.tag-list.is-sm .tag-item {
  font-size: 0.8rem;
}

.tag-link {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-text);
  text-decoration: none;
  background: var(--color-white);
}
.tag-link:link, .tag-link:visited {
  color: currentcolor;
}
.tag-link:active, .tag-link:focus {
  color: var(--color-text);
}
.tag-link:-moz-any-link:hover {
  color: var(--color-text);
  border-color: transparent;
  border-radius: var(--border-radius-lg);
}
.tag-link:any-link:hover {
  color: var(--color-text);
  border-color: transparent;
  border-radius: var(--border-radius-lg);
}

@media screen and (min-width: 48rem) {
  .tag-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
  }
  .tag-title-inline {
    margin: 0.5rem 2rem 0.5rem 0;
  }
  .tag-box {
    padding: 2rem 2rem 1.25rem;
  }
  .tag-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.25rem 1rem;
    margin: 0;
  }
  .tag-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1rem;
  }
}
[class^=tag-item-level] .tag-link {
  padding: 0.25rem 0.5rem;
}

.tag-item-level1,
.tag-item-level2,
.tag-item-level3,
.tag-item-level4,
.tag-item-level5,
.tag-item-level6,
.tag-item-level7,
.tag-item-level8 {
  font-size: 0.8rem;
}

.tag-item-level9,
.tag-item-level10,
.tag-item-level11,
.tag-item-level12,
.tag-item-level13,
.tag-item-level14,
.tag-item-level15,
.tag-item-level16 {
  font-size: 1rem;
}

.tag-item-level17,
.tag-item-level18,
.tag-item-level19,
.tag-item-level20,
.tag-item-level21,
.tag-item-level22,
.tag-item-level23,
.tag-item-level24,
.tag-item-level25 {
  font-size: 1.25rem;
}

/* ------------------------------
　　アコーディオン
------------------------------ */
.toggle-button {
  width: 100%;
  padding: 0;
  color: var(--color-text);
  font-family: inherit;
  text-align: left;
  background: none;
  border: 0;
}
.toggle-button.js-post-include-disabled {
  color: inherit;
  opacity: 1;
}

.toggle-icon {
  margin-left: auto;
  line-height: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.toggle-button.is-active .toggle-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.toggle-icon img {
  width: 1.75rem;
  height: 1.75rem;
}

.toggle-body {
  display: none;
}

@media screen and (min-width: 48rem) {
  .toggle-icon img {
    width: 2rem;
    height: 2rem;
  }
}
/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  position: relative;
  padding: 0.5rem 0;
  overflow: hidden;
}
.topicpath::after {
  display: inline-block;
  content: "";
  width: 5rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.topicpath-list {
  margin: 0;
  padding: 0;
  list-style: none;
  white-space: nowrap;
  overflow-x: auto;
}

.topicpath-item {
  display: inline-block;
}

.topicpath-item:not(:last-child)::after {
  display: inline-block;
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.5rem;
  background: url(../images/icon-topicpath.svg) center center no-repeat;
  background-size: contain;
}

.topicpath-link {
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.8rem;
}
.topicpath-link:hover {
  text-decoration: underline;
}

/* ------------------------------
　　タイポグラフィ
------------------------------ */
.heading-lg {
  margin: 2rem 0 var(--entry-el-margin-sm) 0;
  padding-top: 2rem;
  font-size: 1.5625rem;
  line-height: var(--line-height-sm);
}
.heading-lg.heading-line {
  padding-bottom: 1rem;
  border-bottom: var(--border-width-md) solid var(--color-gray100);
}
.heading-lg.heading-primary {
  position: relative;
  margin-bottom: calc(var(--entry-el-margin-xxs) + 0.25rem + var(--entry-el-margin-sm));
}
.heading-lg.heading-primary::before {
  position: absolute;
  bottom: -1rem;
  left: 0;
  display: block;
  width: 3.5rem;
  height: var(--border-width-lg);
  background: var(--color-primary);
  content: "";
}
@media screen and (min-width: 48rem) {
  .heading-lg {
    margin-bottom: var(--entry-el-margin-sm);
    font-size: 1.953125rem;
  }
  .heading-lg.heading-primary {
    margin-bottom: calc(var(--entry-el-margin-md) + 0.25rem + var(--entry-el-margin-sm));
  }
  .heading-lg.heading-primary::before {
    bottom: -1.5rem;
  }
}

.heading-md {
  margin: 0 0 var(--entry-el-margin-sm) 0;
  padding-top: 2rem;
  font-size: 1.25rem;
  line-height: var(--line-height-sm);
}
.heading-md.heading-line {
  padding-bottom: 1rem;
  border-bottom: var(--border-width-md) solid var(--color-gray100);
}
@media screen and (min-width: 48rem) {
  .heading-md {
    margin: 0 0 var(--entry-el-margin-md) 0;
    font-size: 1.5625rem;
  }
  .heading-md.heading-line {
    margin: 0 0 var(--entry-el-margin-sm)0.5rem 0;
  }
}

.heading-sm {
  margin: 0 0 var(--entry-el-margin-sm) 0;
  padding-top: 2rem;
  font-size: 1rem;
}
.heading-sm.heading-line {
  padding-bottom: 1rem;
  border-bottom: var(--border-width-md) solid var(--color-gray100);
}
@media screen and (min-width: 48rem) {
  .heading-sm {
    margin: 0 0 var(--entry-el-margin-sm) 0;
    font-size: 1.25rem;
  }
}

.heading-ss {
  margin: 0 0 var(--entry-el-margin-sm) 0;
  padding-top: 2rem;
  font-size: 1rem;
}
.heading-ss.heading-line {
  padding-bottom: 1rem;
  border-bottom: var(--border-width-md) solid var(--color-gray100);
}
@media screen and (min-width: 48rem) {
  .heading-ss {
    margin: 0 0 var(--entry-el-margin-sm) 0;
    font-size: 1rem;
  }
}

.heading-lg.heading-padding-top-none,
.heading-md.heading-padding-top-none,
.heading-sm.heading-padding-top-none,
.heading-ss.heading-padding-top-none {
  padding-top: 0;
}

.paragraph {
  margin: 0 0 var(--entry-el-margin-md) 0;
  line-height: var(--line-height-lg);
}
@media screen and (min-width: 48rem) {
  .paragraph {
    margin: 0 0 var(--entry-el-margin-lg) 0;
  }
}
.paragraph a {
  text-decoration: none;
  color: var(--color-text);
  border-bottom: var(--border-width-sm) dotted var(--color-text);
}
.paragraph a:hover {
  border-bottom: 0;
}

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

.unordered-list {
  margin: 0 0 var(--entry-el-margin-md) 0;
  padding: 0 0 0 2rem;
}
.unordered-list li {
  position: relative;
  clear: both;
  margin: 0 0 0.5rem;
  line-height: var(--line-height-base);
  list-style: none;
}
.unordered-list li::before {
  position: absolute;
  top: 0.5rem;
  left: -1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-secondary);
  border-radius: 50%;
  content: "";
}

/* ------------------------------
　　ビデオ
------------------------------ */
.video-modal {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.video-modal-thumbnail {
  position: relative;
  display: block;
  max-width: 31rem;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.video-modal-thumbnail .video-modal-play-icon {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.video-modal-thumbnail:hover {
  -webkit-box-shadow: var(--box-shadow-hover);
          box-shadow: var(--box-shadow-hover);
}
.video-modal-thumbnail:hover .video-modal-play-icon {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.video-modal-play-icon-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -2rem;
  margin-left: -2rem;
}
.js .js-animation .video-modal-play-icon-wrap {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .video-modal-play-icon-wrap {
  -webkit-animation: fade-in 0.2s 0.8s 1 both;
          animation: fade-in 0.2s 0.8s 1 both;
}

.video-modal-play-icon {
  position: relative;
  display: block;
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  border-radius: 50%;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.video-modal-play-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  margin-top: -0.75rem;
  margin-left: -0.375rem;
  border: 0.75rem solid transparent;
  border-left: 1rem solid #fff;
  content: "";
}

@media screen and (min-width: 30rem) {
  .video-modal-thumbnail {
    margin: 0 0 2rem;
  }
}
@media screen and (min-width: 48rem) {
  .video-modal {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 10% 0 0;
  }
}
@media screen and (min-width: 64rem) {
  .video-modal {
    margin: 0 0 0 auto;
  }
  .video-modal-thumbnail {
    max-width: 42rem;
    margin: 3rem auto;
  }
  .video-modal-play-icon-wrap {
    margin-top: -2.5rem;
    margin-left: -2.5rem;
  }
  .video-modal-play-icon {
    width: 5rem;
    height: 5rem;
  }
  .video-modal-play-icon::before {
    margin-top: -1rem;
    margin-left: -0.5rem;
    border: 1rem solid transparent;
    border-left: 1.5rem solid #fff;
  }
}
@media screen and (max-width: 47.99875rem) {
  .modal-video-inner {
    padding: 0 1.25rem;
  }
  .modal-video-close-btn {
    top: -3rem;
    right: -5px;
  }
}
/* ------------------------------
 エントリー内 主な要素
------------------------------ */
.entry-style [class*=acms-col-] {
  padding: 0;
}

/* ------------------------------
 テキストユニットの設定
------------------------------ */
.entry-style h2 {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style h3 {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style h4 {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style h5 {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style h6 {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style dl {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style p {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}
.entry-style blockquote {
  margin: 0 0 2rem 0;
  padding: 0.5rem 1.25rem;
  border-left: solid 5px #ccc;
}

/* ------------------------------
各種ユニットの設定
------------------------------ */
.entry-style [class*=column-image] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-file] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-map] {
  border-right: calc(var(--unit-gutter-var) / 2) solid transparent;
  border-left: calc(var(--unit-gutter-var) / 2) solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-yolp] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-street-view]:not(.column-street-view-inner) {
  padding-right: calc(var(--unit-gutter-var) / 2);
  padding-left: calc(var(--unit-gutter-var) / 2);
}

.entry-style [class*=column-youtube] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-video] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-eximage] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-media] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.entry-style [class*=column-quote] {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}

.entry-style [class*=column-module] {
  padding-left: calc(var(--unit-gutter-var) / 2);
  padding-right: calc(var(--unit-gutter-var) / 2);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: calc(var(--unit-gutter-var) / 2);
  margin-left: calc(var(--unit-gutter-var) / 2);
}

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

.highlight2 {
  background-color: #a0ffff;
}

.highlight3 {
  background-color: #9f9;
}

.highlight4 {
  background-color: #f99;
}

.highlight5 {
  background-color: #f6f;
}

.highlight6 {
  background-color: #800;
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entryFormLiteEditor .text-word-break {
  display: inline-block;
}
.entryFormLiteEditor .text-word-break::after {
  margin: 0 2px;
  color: var(--color-gray40);
  content: "|";
}
.entryFormLiteEditor em {
  font-weight: normal;
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-highlight)));
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
}
.entryFormLiteEditor strong {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-highlight)));
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
}
.entryFormLiteEditor a {
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
}
.entryFormLiteEditor a:not(:has(img)) {
  border-bottom: 1px dotted var(--color-text);
}
.entryFormLiteEditor a:hover {
  border-color: transparent;
  text-decoration: none;
}

.acms-admin-table-admin-edit {
  border-collapse: collapse;
}
.acms-admin-table-admin-edit .sortable-item {
  border-top: 1px solid #ccc;
}
.acms-admin-table-admin-edit .sortable-item:first-child {
  border: 0;
}

/* ------------------------------
　　エントリー
------------------------------ */
/*
　ヘッダー
------------------------------ */
.entry-header {
  margin: 0 0 var(--entry-el-margin-md);
  line-height: 1.5;
}
.entry-header .tag-list {
  margin: 0.5rem 0 0;
}
.entry-header .tag-link {
  font-size: 0.8rem;
  border-bottom: 1px dotted var(--color-text);
}

.entry-header-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}

.entry-header-date.-event {
  font-size: 1rem;
}
.entry-header-date.-event .entry-header-date-label {
  color: var(--color-primary);
  font-weight: bold;
}

.entry-header-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.entry-header-category a:link,
.entry-header-category a:visited,
.entry-header-category a:active,
.entry-header-category a:focus {
  padding: 0.25rem 0.5rem;
  color: var(--color-text-2nd);
  text-decoration: none;
}
.entry-header-category a:link:hover,
.entry-header-category a:visited:hover,
.entry-header-category a:active:hover,
.entry-header-category a:focus:hover {
  background-color: var(--color-hover-bg-2nd);
}
.entry-header-category .is-bordered {
  border: 1px solid var(--color-gray30);
  border-radius: var(--border-radius-md);
}
.entry-header-category .entry-header-category-item {
  font-weight: bold;
}

.entry-header-title {
  position: relative;
  margin: 0 0 1.5rem;
  padding: 0 0 1rem;
  font-size: 1.25rem;
  border-bottom: var(--border-width-lg) solid var(--color-gray10);
}
.entry-header-title::before {
  position: absolute;
  bottom: calc(var(--border-width-lg) * -1);
  width: 3.5rem;
  height: var(--border-width-lg);
  background: var(--color-primary);
  content: "";
}

.entry-header-title-link {
  color: currentcolor;
  text-decoration: none;
}
.entry-header-title-link:hover {
  opacity: 0.7;
}

@media screen and (min-width: 48rem) {
  .entry-header {
    margin: 0 0 3rem;
  }
  .entry-header-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
  .entry-header-title {
    margin: 0 0 1.5rem;
    padding: 0 0 1.5rem;
    font-size: 1.953125rem;
  }
}
/*
　エントリーヘッダービジュアルあり
------------------------------ */
.entry-header-visual {
  position: relative;
  background-color: var(--color-gray20);
}

.entry-header-visual-inner {
  position: relative;
}

.entry-header-visual-img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.entry-header-visual-box {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 1rem;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.7);
}

.entry-header-visual-title {
  margin: 0 0 1.5rem;
  font-size: 1.5625rem;
}

.entry-header-visual-desc {
  margin: 0 0 1.5rem;
  font-size: 0.8rem;
  line-height: var(--line-height-lg);
}

.entry-header-visual-btn-wrap {
  margin: 0;
}
.entry-header-visual-btn-wrap a {
  width: 100%;
}

@media screen and (min-width: 48rem) {
  .entry-header-visual {
    overflow: hidden;
  }
  .entry-header-visual-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .entry-header-visual {
    padding: 2rem 0;
  }
  .entry-header-visual-box {
    width: 50%;
    max-width: 35rem;
    margin: 0 calc(var(--unit-gutter-var) / 2);
    padding: 2.5rem 2.5rem 2rem;
  }
  .entry-header-visual-img {
    width: 100%;
    height: 100%;
    vertical-align: bottom;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .entry-header-visual-title {
    font-size: 1.5625rem;
  }
  .entry-header-visual-desc {
    margin: 0 0 var(--entry-el-margin-sm) 0;
    font-size: 1rem;
  }
  .entry-header-visual-btn-wrap {
    margin: 0;
  }
  .entry-header-visual-btn-wrap a {
    width: 15rem;
  }
}
@media screen and (min-width: 64rem) {
  .entry-header-visual-title {
    font-size: 1.953125rem;
  }
  .entry-header-visual-desc {
    font-size: 1rem;
  }
}
/*
　エントリーのコンテンツ
------------------------------ */
.entry-style-grid {
  margin: 0 calc(var(--unit-gutter-var) / -2);
}

/* インライン要素 */
.entry-style {
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
  /* 配置のスタイル */
}
.entry-style em {
  font-weight: normal;
  font-style: normal;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-highlight)));
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
}
.entry-style strong {
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-highlight)));
  background: linear-gradient(transparent 60%, var(--color-highlight) 60%);
}
.entry-style a:not([class]) {
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
}
.entry-style a:not([class]):not(:has(img)) {
  border-bottom: 1px dotted var(--color-text);
}
.entry-style a:not([class]):hover {
  border-color: transparent;
  text-decoration: none;
}
.entry-style .column-image-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-image-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-file-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-file-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-map-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-map-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-yolp-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-yolp-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-street-view-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-street-view-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-youtube-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-youtube-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-video-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-video-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-eximage-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-eximage-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-media-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-media-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-quote-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-quote-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-module-left + .entry-text-unit {
  overflow: hidden;
}
.entry-style .column-module-right + .entry-text-unit {
  overflow: hidden;
}
.entry-style code {
  margin: 0 0.25rem;
  padding: 0.25rem;
  color: var(--color-primary);
  background: var(--color-white);
  border: var(--border-width-sm) solid currentcolor;
  border-radius: var(--border-radius-sm);
}

/* 見出し
----------------------------- */
.entry-style .entry-style-grid > .is-h2:first-of-type h2 {
  padding-top: 0;
}

.entry-style .entry-text-unit h2,
.entry-style .entry-text-unit h3,
.entry-style .entry-text-unit h4 {
  margin: 0 calc(var(--unit-gutter-var) / 2) 0;
  padding: var(--entry-el-padding-md) 0 var(--entry-el-padding-sm);
  line-height: var(--line-height-base);
}
.entry-style .entry-text-unit h2.heading-primary,
.entry-style .entry-text-unit h3.heading-primary,
.entry-style .entry-text-unit h4.heading-primary {
  position: relative;
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-sm);
  padding: var(--entry-el-padding-md) 0 calc(var(--entry-el-padding-xs) + 0.25rem);
}
.entry-style .entry-text-unit h2.heading-primary::before,
.entry-style .entry-text-unit h3.heading-primary::before,
.entry-style .entry-text-unit h4.heading-primary::before {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 2em;
  height: var(--border-width-lg);
  background: var(--color-primary);
  content: "";
}
.entry-style .entry-text-unit h2.heading-line,
.entry-style .entry-text-unit h3.heading-line,
.entry-style .entry-text-unit h4.heading-line {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-sm);
  padding-bottom: var(--entry-el-padding-xs);
  border-bottom: var(--border-width-md) solid var(--color-gray100);
}
.entry-style .entry-text-unit h2 {
  font-size: 1.5625rem;
}
.entry-style .entry-text-unit h3 {
  font-size: 1.25rem;
}
.entry-style .entry-text-unit h4 {
  font-size: 1rem;
}
@media screen and (min-width: 48rem) {
  .entry-style .entry-text-unit h2 {
    font-size: 1.953125rem;
  }
  .entry-style .entry-text-unit h3 {
    font-size: 1.5625rem;
  }
  .entry-style .entry-text-unit h4 {
    font-size: 1.25rem;
  }
}

/* 本文
----------------------------- */
.entry-style p {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md);
  line-height: var(--line-height-lg);
}
.entry-style p.text-info {
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}
.entry-style p.text-danger {
  color: var(--color-error);
  font-size: 0.8rem;
}
.entry-style .is-p + .is-p .text-info,
.entry-style .is-p + .is-p .text-danger,
.entry-style .is-table + .is-p .text-info,
.entry-style .is-table + .is-p .text-danger,
.entry-style [class*=column-table-] + .is-p .text-info,
.entry-style [class*=column-table-] + .is-p .text-danger {
  margin-top: -1rem;
}
@media screen and (min-width: 48rem) {
  .entry-style p {
    margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md);
  }
}

/* リード文 */
.entry-style p.text-lead-primary {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: var(--line-height-base);
}
.entry-style p.text-lead-info {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md);
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: var(--line-height-base);
}
.entry-style p.text-lead-info.is-margin-small {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-xxs);
}
@media screen and (min-width: 48rem) {
  .entry-style p.text-lead-primary {
    margin: 0 calc(var(--unit-gutter-var) / 2) 3rem;
    font-size: 2.44140625rem;
  }
  .entry-style p.text-lead-info {
    margin: 0 calc(var(--unit-gutter-var) / 2) 3rem;
    font-size: 1.953125rem;
  }
  .entry-style p.text-lead-info.is-margin-small {
    margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-xxs);
  }
}

/* ボタン */
.entry-style p.text-btn a {
  display: inline-block;
  padding: var(--btn-padding-y) var(--btn-padding-x);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  background: var(--color-primary);
  border-radius: var(--border-radius-md);
  border-bottom: 0;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.entry-style p.text-btn a:hover, .entry-style p.text-btn a:visited, .entry-style p.text-btn a:active, .entry-style p.text-btn a:focus {
  color: var(--color-white);
  opacity: 1;
}
.entry-style p.text-btn a:hover {
  background: var(--color-primary-hover);
}
.entry-style p.text-btn a.outer-link:after {
  margin-left: 0.5rem;
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--color-text-inverse);
  -webkit-mask-image: url(../images/icon-target_blank.svg);
          mask-image: url(../images/icon-target_blank.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  content: "";
  vertical-align: baseline;
}
.entry-style p.text-btn a[href^="tel:"] {
  color: #FFF;
}
.entry-style p.text-btn a[href^="tel:"]:hover {
  border-color: transparent;
}

/* リスト */
.entry-style .entry-text-unit ul {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md) calc(var(--unit-gutter-var) / 2);
  padding: 0 0 0 1.875rem;
}
.entry-style .entry-text-unit ul li {
  position: relative;
  clear: both;
  margin: 0 0 0.5rem;
  line-height: var(--line-height-lg);
  list-style: none;
}
.entry-style .entry-text-unit ul li::before {
  position: absolute;
  top: 0.5rem;
  left: -1.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-secondary);
  border-radius: 50%;
  content: "";
}

/* 番号付きリスト */
.entry-style .entry-text-unit:not(.is-pre) ol {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md) calc(var(--unit-gutter-var) / 2);
  padding: 0 0 0 1.5rem;
  counter-reset: order-list;
}
.entry-style .entry-text-unit:not(.is-pre) ol li {
  position: relative;
  clear: both;
  margin: 0 0 0.5rem;
  padding-left: 0.375rem;
  line-height: var(--line-height-lg);
  list-style: none;
}
.entry-style .entry-text-unit:not(.is-pre) ol li::before {
  position: absolute;
  top: 2px;
  left: -1.5rem;
  font-weight: bold;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-text-2nd);
  border-radius: 50%;
  content: counter(order-list) ".";
  counter-increment: order-list;
}

/* 記述リスト */
.entry-style .entry-text-unit dl {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md);
}
.entry-style .entry-text-unit dl dt {
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  line-height: var(--line-height-sm);
}
.entry-style .entry-text-unit dl dd {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: var(--line-height-lg);
}
.entry-style .entry-text-unit dl.box-bordered {
  border: var(--border-width-sm) solid var(--color-gray30);
}
.entry-style .entry-text-unit dl.box-bordered dt {
  padding: var(--entry-el-padding-sm) var(--entry-el-padding-sm) 0 var(--entry-el-padding-sm);
  border-top: var(--border-width-sm) solid var(--color-gray30);
}
.entry-style .entry-text-unit dl.box-bordered dt:first-child {
  border: 0;
}
.entry-style .entry-text-unit dl.box-bordered dd {
  margin: 0;
  padding: 0 var(--entry-el-padding-sm) var(--entry-el-padding-sm) var(--entry-el-padding-sm);
}
@media screen and (min-width: 48rem) {
  .entry-style .entry-text-unit dl dt {
    margin: 0 0 0.5rem;
  }
  .entry-style .entry-text-unit dl.box-bordered dt {
    padding: var(--entry-el-padding-sm) var(--entry-el-padding-sm) 0 var(--entry-el-padding-sm);
  }
  .entry-style .entry-text-unit dl.box-bordered dd {
    padding: 0 var(--entry-el-padding-sm) var(--entry-el-padding-sm) var(--entry-el-padding-sm);
  }
}

/* テーブル */
.entry-style .entry-text-unit table,
.entry-style [class^=column-table] table {
  width: 100%;
  margin: 0 0 var(--entry-el-margin-md) 0;
  border-top: var(--border-width-sm) solid rgb(235, 235, 235);
  border-left: var(--border-width-sm) solid rgb(235, 235, 235);
  border-collapse: collapse;
}
.entry-style .entry-text-unit table th,
.entry-style .entry-text-unit table td,
.entry-style [class^=column-table] table th,
.entry-style [class^=column-table] table td {
  padding: var(--entry-el-padding-xs);
  font-size: 1rem;
  line-height: var(--line-height-base);
  border-right: var(--border-width-sm) solid rgb(235, 235, 235);
  border-bottom: var(--border-width-sm) solid rgb(235, 235, 235);
}
.entry-style .entry-text-unit table th,
.entry-style [class^=column-table] table th {
  text-align: left;
  vertical-align: top;
  background: var(--color-gray10);
}
@media screen and (min-width: 48rem) {
  .entry-style .entry-text-unit table th,
  .entry-style .entry-text-unit table td,
  .entry-style [class^=column-table] table th,
  .entry-style [class^=column-table] table td {
    padding: var(--entry-el-padding-sm);
    font-size: 1rem;
  }
}

.entry-style [class^=column-table] table {
  margin: 0;
}

[class^=column-table] .entry-container {
  clear: both;
  margin-bottom: var(--entry-el-margin-md);
  overflow-x: auto;
}

/*
　引用
------------------------------ */
.entry-style .entry-text-unit blockquote {
  margin: 0 0 var(--entry-el-margin-md) 0;
  padding: var(--entry-el-padding-sm);
  font-size: 1rem;
  line-height: var(--line-height-lg);
  border: var(--border-width-md) solid var(--color-gray30);
}
.entry-style .entry-text-unit blockquote cite {
  color: var(--color-text-2nd);
  font-size: 0.8rem;
  font-style: normal;
}
.entry-style .entry-text-unit blockquote cite::before {
  content: "— ";
}
@media screen and (min-width: 48rem) {
  .entry-style .entry-text-unit blockquote {
    margin: 0 0 var(--entry-el-margin-lg) 0;
    padding: var(--entry-el-padding-md);
  }
}

/*
　ソース
------------------------------ */
.entry-style .entry-text-unit.is-pre {
  margin-bottom: var(--unit-gutter-var);
}

/*
　ユニットグループ
------------------------------ */
.entry-style {
  /* 全てのユニットグループ */
}
.entry-style [class*=ug-] {
  overflow: hidden;
}
@media screen and (min-width: 48rem) {
  .entry-style [class*=ug-] .pricing-group {
    margin-right: 0;
    margin-left: 0;
    padding: 4rem 0 2rem;
  }
}
.entry-style [class*=ug-] > .entry-text-unit h2,
.entry-style [class*=ug-] > .entry-text-unit h3,
.entry-style [class*=ug-] > .entry-text-unit h4 {
  padding-top: 0;
}
.entry-style .ug-bg-gray {
  background: var(--color-gray10);
}
.entry-style .ug-bg-primary {
  background: var(--color-primary-light);
}
.entry-style .ug-bg-gray,
.entry-style .ug-bg-primary {
  margin: 0 0 var(--entry-el-margin-md) 0;
  padding: var(--entry-el-padding-md) calc(var(--entry-el-padding-md) - var(--unit-gutter-var) / 2);
  border-right: calc(var(--unit-gutter-var) / 2) solid var(--color-white);
  border-left: calc(var(--unit-gutter-var) / 2) solid var(--color-white);
}
.entry-style .ug-bg-gray > *:not(.entry-reset):last-child > *,
.entry-style .ug-bg-primary > *:not(.entry-reset):last-child > * {
  margin-bottom: 0;
}
.entry-style .ug-cover {
  margin: var(--entry-el-margin-md) calc(50% - 50vw);
  padding: var(--entry-el-padding-md) calc(50vw - 50% + var(--unit-gutter-var) / 2);
  border: 0;
}
@media screen and (min-width: 64rem) {
  .entry-style .ug-cover .pricing-group {
    padding: 0;
  }
}
.entry-style .ug-text-center {
  text-align: center;
}
.entry-style .ug-border {
  position: relative;
  margin: 0 0 var(--entry-el-margin-md) 0;
  padding: var(--entry-el-padding-md) calc(var(--entry-el-padding-md) - var(--unit-gutter-var) / 2);
  border-right: calc(var(--unit-gutter-var) / 2) solid var(--color-white);
  border-left: calc(var(--unit-gutter-var) / 2) solid var(--color-white);
}
.entry-style .ug-border::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--border-width-sm) solid var(--color-gray40);
  content: "";
}
.entry-style .ug-border > *:not(.entry-reset):last-child > * {
  margin-bottom: 0;
}
.entry-style .ug-center {
  float: none;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48rem) {
  .entry-style .ug-bg-gray,
  .entry-style .ug-bg-primary,
  .entry-style .ug-border {
    margin: 0 0 var(--entry-el-margin-md) 0;
    padding: var(--entry-el-padding-md) calc(var(--entry-el-padding-md) - var(--unit-gutter-var) / 2);
  }
  .entry-style .ug-bg-gray > *:not(.entry-reset):last-child > *,
  .entry-style .ug-bg-primary > *:not(.entry-reset):last-child > *,
  .entry-style .ug-border > *:not(.entry-reset):last-child > * {
    margin-bottom: 0;
  }
  .entry-style .ug-cover {
    position: relative;
    top: var(--entry-el-margin-md);
    margin: calc(var(--entry-el-margin-md) * 2) calc(50% - 50vw);
    padding: calc(var(--entry-el-margin-md) * 3) calc(50vw - 50% + var(--unit-gutter-var) / 2) calc(var(--entry-el-margin-md) * 2);
  }
}

/*
　画像・メディア・画像URLの共通設定
------------------------------ */
[class*=column-image] .caption,
[class*=column-media] .caption,
[class*=column-eximage] .caption {
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}
[class*=column-image] .caption a,
[class*=column-media] .caption a,
[class*=column-eximage] .caption a {
  text-align: center;
}
[class*=column-image] .caption.download a,
[class*=column-media] .caption.download a,
[class*=column-eximage] .caption.download a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

/*
　ファイルユニット・メディア（ファイル）の設定
------------------------------ */
[class*=column-file-],
.media-file {
  display: inline-block;
}
[class*=column-file-] a,
[class*=column-file-] a[href*=media-download],
.media-file a,
.media-file a[href*=media-download] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
  color: var(--color-text);
  text-decoration: none;
  border: var(--border-width-sm) solid var(--color-gray40);
  border-radius: var(--border-radius-md);
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
[class*=column-file-] a:hover,
[class*=column-file-] a[href*=media-download]:hover,
.media-file a:hover,
.media-file a[href*=media-download]:hover {
  text-decoration: none;
  background: var(--color-gray20);
}
[class*=column-file-] .caption,
.media-file .caption {
  margin: 0;
  color: var(--color-text);
  font-size: 1rem;
}
[class*=column-file-] .columnIcon,
.media-file .columnIcon {
  width: 1.75rem;
  height: auto;
  margin: 0 1rem 0 0;
}

/* 引用ユニットの設定 */
[class*=column-quote-] .quote {
  padding: 0;
  border: 0;
}
[class*=column-quote-] .quote-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  color: var(--color-text);
  text-decoration: none;
  border: var(--border-width-sm) solid var(--color-gray30);
  border-radius: var(--border-radius-lg);
}
[class*=column-quote-] .quote-link:hover {
  background: var(--color-hover-bg);
}
[class*=column-quote-] .quote-info {
  padding: 1rem;
}
[class*=column-quote-] .quote-site-name {
  margin: 0;
  color: var(--color-text);
}
[class*=column-quote-] .quote-title {
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  line-height: var(--line-height-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
[class*=column-quote-] .quote-description {
  margin: 0;
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (min-width: 48rem) {
  [class*=column-quote-] .quote-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  [class*=column-quote-] .quote-img-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 33.3333333333%;
    padding: 0;
  }
  [class*=column-quote-] .quote-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  [class*=column-quote-] .quote-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 0.6666666667;
    padding: 1rem;
    overflow: hidden;
  }
  [class*=column-quote-] .quote-title {
    margin: 0;
    font-weight: bold;
    font-size: 1.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/*
　カード
------------------------------ */
.entry-style .card-bordered-item {
  padding: 0 calc(var(--unit-gutter-var) / 2);
}
@media screen and (min-width: 48rem) {
  .entry-style .card-bordered-item {
    margin-bottom: 1rem;
  }
}

/*
　罫線ユニット
------------------------------ */
.unit-separator {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-md);
  border: 0;
  border-top: var(--border-width-sm) solid var(--color-gray40);
}

/*
　目次ユニット
------------------------------ */
.entry-style .entry-outline {
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-lg);
  padding: 1rem;
  border: var(--border-width-lg) solid var(--color-gray30);
}
.entry-style .entry-outline-title {
  margin: 0 0 1rem;
  padding: 0 0 0.5rem;
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 2px solid var(--color-gray30);
}
.entry-style .entry-outline-list-wrap .outline-list {
  margin: 0;
  padding: 0 0 0 var(--entry-el-margin-sm);
  counter-reset: a;
}
.entry-style .entry-outline-list-wrap .outline-list.level-1 {
  padding: 0;
}
.entry-style .entry-outline-list-wrap .outline-item {
  list-style: none;
}
.entry-style .entry-outline-list-wrap .outline-item strong,
.entry-style .entry-outline-list-wrap .outline-item em {
  font-style: normal;
  font-weight: normal;
  background: none;
}
.entry-style .entry-outline-list-wrap .outline-item > strong {
  display: inline-block;
  margin: 0 0 1rem 0.25rem;
}
.entry-style .entry-outline-list-wrap .outline-item::marker {
  content: none;
}
.entry-style .entry-outline-list-wrap .outline-item a {
  display: block;
  margin: 0 0 1rem 0.25rem;
  color: var(--color-text);
  text-decoration: none;
}
.entry-style .entry-outline-list-wrap .outline-item a:hover {
  text-decoration: underline;
}
.entry-style .entry-outline-list-wrap .outline-item a::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: var(--color-gray90);
  font-weight: 700;
  white-space: nowrap;
  content: counters(a, "-") ". ";
  counter-increment: a;
}

@media screen and (min-width: 48rem) {
  .entry-style .entry-outline {
    padding: 2rem;
  }
  .entry-style .entry-outline-title {
    margin: 0 0 1.5rem;
    padding: 0 0 1rem;
    font-size: 1.25rem;
  }
}
/*
　モジュールユニット
------------------------------ */
@media screen and (min-width: 48rem) {
  .entry-style .column-module:first-child {
    margin-top: 1rem;
  }
}
/*
　メッセージユニット
------------------------------ */
.entry-style .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  background: var(--color-gray10);
  margin: 0 calc(var(--gutter-md) / 2) var(--entry-el-margin-md);
}
.entry-style .message-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}
.entry-style .message-image {
  height: 15rem;
  overflow: hidden;
}
.entry-style .message-image img {
  width: 100%;
  height: auto;
}
.entry-style .message-lead {
  position: relative;
  margin: 0;
  font-weight: bold;
  font-size: 1.5625rem;
}
.entry-style .message-content {
  margin: 0;
}
.entry-style .message-source {
  margin: 0;
}
.entry-style .message-source::before {
  display: inline-block;
  width: 1.5rem;
  height: 1px;
  margin: 0 1rem 0 0;
  vertical-align: middle;
  background: var(--color-gray30);
  content: "";
}

@media screen and (min-width: 48rem) {
  .entry-style .message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .entry-style .message-wrap {
    position: relative;
    width: 50%;
    padding: 6rem 3rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .entry-style .message-image {
    width: 50%;
    height: initial;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .entry-style .message-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .entry-style .message-lead {
    height: auto;
    font-size: 1.5625rem;
  }
  .entry-style .message-content {
    margin: 0;
  }
}
/*
　料金テーブル
------------------------------ */
.entry-style .pricing-group {
  padding: 4rem 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--col-gutter);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1.5rem 0;
  padding: 0 var(--unit-gutter-var)/2;
}
.entry-style .pricing-group:has(.is-reccomend) {
  padding-top: 16px;
}
.entry-style .pricing-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 var(--entry-el-margin-md) 0;
  list-style: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
}
.entry-style .pricing-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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 2.5rem 2rem 1.5rem;
  border-radius: var(--border-radius-lg);
  background: #fff;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.entry-style .pricing-header {
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  text-align: center;
  border-bottom: var(--border-width-sm) solid var(--color-gray30);
}
.entry-style .pricing-label-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.entry-style .pricing-label {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 2rem;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.09375rem;
  line-height: var(--line-height-sm);
  background: var(--color-primary);
  border-radius: var(--border-radius-round);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
.entry-style .pricing-label:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 12px;
  height: 10px;
  background-color: var(--color-primary);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.entry-style .pricing-title {
  margin: 0 0 0.5rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}
.entry-style .pricing-desc {
  margin: 0;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
  line-height: var(--line-height-base);
}
.entry-style .pricing-price {
  margin: 0 0 0.5rem;
  font-size: 2.44140625rem;
  font-weight: bold;
  line-height: var(--line-height-ss);
  text-align: center;
}
.entry-style .pricing-unit {
  font-size: 1rem;
}
.entry-style .pricing-check-group {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.8rem;
  list-style: none;
}
.entry-style .pricing-check-group li {
  margin: 0 0 0.5rem;
}
.entry-style .pricing-check-group li::before {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem 0 0;
  vertical-align: middle;
  background: url(../images/icon-circle-check-blue.svg);
  background-size: contain;
  content: "";
}
.entry-style .pricing-button {
  display: block;
  margin: 0 0 1rem;
}
.entry-style .pricing-text-info {
  margin: 0;
  text-align: center;
}

@media screen and (min-width: 48rem) {
  .entry-style .pricing-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: var(--col-gutter);
    margin: 0 calc(var(--unit-gutter-var) / 2);
    padding: 6rem 0 4rem;
  }
  .entry-style .pricing-item {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 0 var(--entry-el-margin-md) 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.3333333333% - 2rem);
            flex: 1 1 calc(33.3333333333% - 2rem);
  }
  .entry-style .pricing-item:hover .pricing-inner {
    -webkit-box-shadow: var(--box-shadow-hover);
            box-shadow: var(--box-shadow-hover);
  }
  .entry-style .pricing-title {
    font-size: 1.25rem;
  }
}
/*
　ユニット
------------------------------ */
/* 各ユニットのマージンの調整 */
[class*=column-image] {
  margin-bottom: 2rem;
}

[class*=column-file] {
  margin-bottom: 2rem;
}

[class*=column-map] {
  margin-bottom: 2rem;
}

[class*=column-yolp] {
  margin-bottom: 2rem;
}

[class*=column-street-view] {
  margin-bottom: 2rem;
}

[class*=column-youtube] {
  margin-bottom: 2rem;
}

[class*=column-video] {
  margin-bottom: 2rem;
}

[class*=column-eximage] {
  margin-bottom: 2rem;
}

[class*=column-media] {
  margin-bottom: 2rem;
}

[class*=column-quote] {
  margin-bottom: 2rem;
}

[class*=column-module] {
  margin-bottom: 1rem;
}

@media screen and (min-width: 48rem) {
  [class*=column-image] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-file] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-map] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-yolp] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-street-view] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-youtube] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-video] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-eximage] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-media] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-quote] {
    margin-bottom: var(--unit-margin-md);
  }
  [class*=column-module] {
    margin-bottom: 2rem;
  }
}
[class*=column-media-] a,
[class*=column-image-] a,
[class*=column-eximage-] a {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
[class*=column-media-] a:hover,
[class*=column-image-] a:hover,
[class*=column-eximage-] a:hover {
  opacity: 0.7;
}

.unit-gallery {
  margin-bottom: var(--unit-gutter-var);
}

/*
　フッター
------------------------------ */
.entry-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--col-gutter);
  padding: 1rem 0;
}

@media screen and (min-width: 48rem) {
  .entry-footer {
    padding: 2rem 0;
  }
}
/*
　SNSシェアボタン
------------------------------ */
.share-item {
  margin: 0 0.5rem;
}
.share-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 3rem;
  height: auto;
  padding: 0.5rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.share-item a:hover {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.share-list.is-sm .share-item {
  margin: 0 0.5rem;
}
.share-list.is-sm .share-item a {
  width: auto;
}

@media screen and (min-width: 48rem) {
  .sns-share-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 3rem;
    padding: 3rem 1.5rem;
    border-radius: var(--border-radius-xl);
  }
  .sns-share-title {
    margin: 0 2.5rem 0 0;
    font-size: 1.25rem;
  }
  .share-item a {
    width: 3rem;
  }
  .share-list.is-sm .share-item a {
    width: auto;
  }
}
/*
　プロフィール
------------------------------ */
.profile-heading {
  margin-bottom: 0.75rem;
  margin-top: 0;
}

/*
　FAQ
------------------------------ */
.entry-faq-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.entry-faq-title-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 1rem;
  color: var(--color-primary);
}

.entry-faq-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.entry-faq-body-icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: var(--color-gray90);
  font-weight: bold;
  font-size: 1.25rem;
}
.entry-style .entry-faq-body-icon {
  margin-right: 1rem;
  margin-left: 0;
  line-height: var(--line-height-sm);
}

@media screen and (min-width: 48rem) {
  .entry-faq-body-icon {
    font-size: 1.953125rem;
  }
  .entry-style .entry-faq-body-icon {
    line-height: var(--line-height-ss);
  }
}
/*
　採用情報
------------------------------ */
.recruit-footer-bar {
  background-color: var(--color-footer-sticky);
}

.entry-bottom-button {
  text-align: center;
  padding: 1rem 1rem 2rem;
}

/*
　シェア用モーダルウインドウ
------------------------------ */
.entry-share-modal .share-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  cursor: pointer;
}
.entry-share-modal .share-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.entry-share-modal .share-label {
  font-weight: bold;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.entry-share-modal .share-label:hover {
  opacity: 0.6;
}
.entry-share-modal .share-dialog {
  z-index: 1000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 91.666667%;
  max-width: 32rem;
  margin: auto;
  padding: 2rem;
  border: 0;
  border-radius: var(--border-radius-lg);
  background-color: #ffffff;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-blend-mode: multiply;
}
.entry-share-modal .share-dialog::-ms-backdrop {
  background-color: var(--color-black80);
}
.entry-share-modal .share-dialog::backdrop {
  background-color: var(--color-black80);
}
.entry-share-modal .dialog-title {
  margin: 0;
  color: var(--color-text);
  font-weight: bold;
  text-align: center;
}
.entry-share-modal .sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  margin: 1.5rem 0;
  padding: 0;
  list-style-type: none;
}
.entry-share-modal .sns-link {
  display: inline-block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.entry-share-modal .sns-link:hover {
  opacity: 0.7;
}
.entry-share-modal .sns-link.line {
  color: #06C755;
}
.entry-share-modal .url-copy-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
.entry-share-modal .copy-input-wrap {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.entry-share-modal .copy-icon {
  position: absolute;
  top: 0.625rem;
  left: 0.75rem;
  color: #6b7280;
}
.entry-share-modal .copy-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-gray30);
}
.entry-share-modal .copy-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.entry-share-modal .copy-button {
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-md);
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: bold;
  cursor: pointer;
}
.entry-share-modal .dialog-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
  border: none;
  border-radius: var(--border-radius-round);
  background-color: #6b7280;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
}
.entry-share-modal .close-icon {
  width: 1rem;
  height: 1rem;
}

/*
　お客様の声
------------------------------ */
.bubble-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 1rem 1fr;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  margin: 0 calc(var(--gutter-md) / 2);
  padding-bottom: 2rem;
}

.bubble-heading-wrap {
  -ms-grid-column: 2;
      grid-column-start: 2;
  -ms-grid-row: 1;
      grid-row-start: 1;
}

.bubble-heading {
  margin: 0;
  font-size: 0.8rem;
}

.bubble-image-wrap {
  overflow: hidden;
}
.bubble-image-wrap img {
  width: 6rem;
  height: 6rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--border-radius-round);
}

.bubble-text {
  position: relative;
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-row: 2;
      grid-row-start: 2;
  padding: 2rem 1rem;
  clear: both;
  background-color: var(--color-gray10);
  border-radius: var(--border-radius-lg);
}
.bubble-text:after {
  content: "";
  position: absolute;
  top: -10px;
  left: calc(3rem - 6px);
  width: 12px;
  height: 10px;
  background-color: var(--color-gray10);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.bubble-name {
  font-weight: bold;
}

.entry-style .bubble-heading,
.entry-style .bubble-name {
  margin: 0 0 1rem;
}

@media (min-width: 48rem) {
  .bubble-item {
    position: relative;
    gap: 0 2rem;
  }
  .bubble-image-wrap {
    margin-right: 0;
  }
  .bubble-image-wrap img {
    position: absolute;
    top: 0;
  }
  .bubble-heading-wrap {
    position: relative;
    padding: 2rem 2rem 0;
    background-color: var(--color-gray10);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  }
  .bubble-heading-wrap:after {
    content: "";
    position: absolute;
    top: calc(3rem - 6px);
    left: -10px;
    width: 10px;
    height: 12px;
    background-color: var(--color-gray10);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
  .bubble-heading br {
    display: none;
  }
  .bubble-text {
    grid-column: initial;
    -ms-grid-column: 2;
        grid-column-start: 2;
    padding: 0 2rem 2rem;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  }
  .bubble-text:after {
    content: none;
  }
  .entry-style .bubble-heading,
  .entry-style .bubble-name {
    margin: 0 0 1rem;
  }
}
/*
　詳細パネル
------------------------------ */
.detail-panel-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.detail-panel {
  margin: 0 0 2rem;
  padding: 2rem 1rem;
  border: 1px solid var(--color-gray30);
  border-radius: var(--border-radius-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.detail-panel dt {
  font-weight: bold;
}
.detail-panel dd {
  margin: 0;
}
.detail-panel a {
  padding: 2px 0;
  color: var(--color-text);
  text-decoration: none;
}
.detail-panel a:not(:has(img)) {
  border-bottom: 1px dotted var(--color-text);
}
.detail-panel a:hover {
  border-color: transparent;
  text-decoration: none;
}

@media (min-width: 48rem) {
  .detail-panel,
  .detail-panel-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .is-works .detail-panel-group, .is-event .detail-panel-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    gap: 1rem 2rem;
  }
  .detail-panel {
    padding: 2rem;
  }
  .detail-panel dt {
    width: 8rem;
  }
  .detail-panel dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .detail-panel .link-url {
    color: var(--color-text);
  }
  .detail-panel .link-url svg {
    margin-left: 0.5rem;
    width: 14px;
    height: 14px;
    vertical-align: middle;
  }
  .detail-panel-group {
    width: calc(50% - 1rem);
    gap: 1rem 2rem;
  }
}
/*
　エントリー下部のサマリー
------------------------------ */
.summary-entry-bottom {
  padding: var(--entry-el-padding-md) 0 0;
}

@media (min-width: 48rem) {
  .summary-entry-bottom {
    padding: var(--entry-el-padding-md) 2rem 0;
  }
}
/* ------------------------------
　　404ページ
------------------------------ */
.not-found-content {
  margin: 0 0 4rem;
}

.not-found-title {
  margin: 0 0 1rem;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: var(--line-height-sm);
  text-align: center;
}

.not-found-paragraph {
  margin: 0 0 2rem;
}
.not-found-paragraph a {
  padding: 2px 0;
  color: var(--color-link);
  text-decoration: none;
}
.not-found-paragraph a:not(:has(img)) {
  border-bottom: 1px dotted var(--color-text);
}
.not-found-paragraph a:hover {
  border-color: transparent;
  text-decoration: none;
}

.not-found-search .form-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 1rem auto 3rem;
}
.not-found-search .form-search-action {
  max-width: 29rem;
}

.not-found-button {
  margin: 1rem 0 2rem;
  text-align: center;
}

@media screen and (min-width: 48rem) {
  .not-found-content {
    margin: 0 0 7.5rem;
  }
  .not-found-title {
    margin: 0 0 2rem;
    font-size: 2rem;
  }
}
/* ------------------------------
　　セクション
------------------------------ */
.section {
  overflow-x: hidden;
  padding: 3rem 0;
}
.section.is-bg {
  background: var(--color-gray10);
}

@media screen and (min-width: 48rem) {
  .section {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 64rem) {
  .section {
    padding: 6.5rem 0;
  }
  .section.news-banner {
    padding: 6.5rem 0 7.75rem;
  }
  .section.banner {
    padding: 6.5rem 0 4.5rem;
  }
}
/* 水平方向の見出し */
.section-horizontal-header {
  margin: 0 0 1.5rem;
  word-break: break-all;
}

.section-horizontal-header-inner {
  position: relative;
}

.section-horizontal-heading {
  margin: 0;
  color: var(--color-text);
  font-size: 2.44140625rem;
  line-height: var(--line-height-base);
}

.section-horizontal-heading-side {
  margin: 0;
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 0.8rem;
  line-height: var(--line-height-base);
}
.js .js-animation .section-horizontal-heading-side {
  opacity: 0;
  will-change: transform, opacity;
}
.js .js-animation.is-show .section-horizontal-heading-side {
  -webkit-animation: fade-in 0.2s 0.5s 1 both;
          animation: fade-in 0.2s 0.5s 1 both;
}

.section-horizontal-lead {
  margin: 0 0 1em;
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: var(--line-height-base);
}

.section-horizontal-text p {
  color: var(--color-text-2nd);
  font-size: 1rem;
  line-height: 1.7;
}

.section-horizontal-footer {
  margin: 2.5rem 0 0;
}

@media screen and (min-width: 48rem) {
  .section-horizontal-lead {
    color: var(--color-text-2nd);
    font-size: 1.5625rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.5rem;
  }
  .section-horizontal-header {
    width: 30%;
    min-width: 240px;
    word-break: break-all;
  }
  .section-horizontal-header-inner {
    padding: 0 1.25rem 1.5rem 0;
  }
  .section-horizontal-heading {
    font-size: 3.0517578125rem;
  }
  .section-horizontal-lead {
    color: var(--color-text-2nd);
    font-size: 1.953125rem;
  }
  .section-horizontal-text p {
    color: var(--color-text-2nd);
    font-size: 1rem;
    line-height: 1.7;
  }
  .section-horizontal-main {
    width: 70%;
  }
  .section-horizontal-footer {
    margin: 5rem 0 0;
  }
}
/* 垂直方向の見出し */
.section-vertical-header {
  position: relative;
  margin: 0 0 4rem;
  text-align: center;
  word-break: break-all;
}
.section-vertical-header::after {
  position: absolute;
  right: 0;
  bottom: -1.5rem;
  left: 0;
  width: 1px;
  height: 1.5rem;
  margin: 0 auto;
  background: var(--color-gray30);
  content: "";
}
.js .js-animation .section-vertical-header::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.2s ease-out 0.5s;
  transition: 0.2s ease-out 0.5s;
  will-change: transform, opacity;
}
.js .js-animation.is-show .section-vertical-header::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.section-vertical-heading {
  margin: 0;
  color: var(--color-text);
  font-size: 2.44140625rem;
  line-height: var(--line-height-base);
}

.section-vertical-text {
  margin: 0;
  color: var(--color-text-2nd);
  font-weight: bold;
  font-size: 0.8rem;
}
.js-animation .section-vertical-text {
  opacity: 0;
  will-change: transform, opacity;
}
.js-animation.is-show .section-vertical-text {
  -webkit-animation: fade-in 0.2s 0.5s 1 both;
          animation: fade-in 0.2s 0.5s 1 both;
}

@media screen and (min-width: 48rem) {
  .section-vertical-heading {
    font-size: 2.44140625rem;
  }
  .section-vertical-text {
    font-size: 1rem;
  }
}
@media screen and (min-width: 64rem) {
  .section-vertical-header {
    margin: 0 0 4.5rem;
  }
  .section-vertical-header::after {
    bottom: -2.5rem;
    height: 1.5rem;
  }
  .section-vertical-heading {
    font-size: 3.0517578125rem;
  }
  .section-vertical-text {
    font-size: 1rem;
  }
}
/* 背景あり */
.section-animation-bg {
  position: relative;
  overflow: hidden;
}
.section-animation-bg::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 50%;
  background: var(--color-gray10);
  content: "";
}
.js .section-animation-bg.js-animation::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.8s 0.2s cubic-bezier(0.1, 0.7, 0.51, 0.88);
  transition: 0.8s 0.2s cubic-bezier(0.1, 0.7, 0.51, 0.88);
  will-change: transform;
}
.js .section-animation-bg.js-animation.is-show::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (min-width: 48rem) {
  .section-animation-bg {
    padding: 3rem 0;
  }
}
/* セクション内で使用するボタンのレイアウト */
.section-button {
  margin: 2rem 0 0;
  text-align: center;
}
.section-button.is-right {
  text-align: right;
}

/* 視覚的なセパレーター */
.section-separator {
  max-width: calc(var(--container) - var(--gutter-md) * 3);
  margin: 0 auto;
  border: 0;
  border-top: var(--border-width-sm) solid var(--color-gray30);
}

/* ------------------------------
　　サイドセクション
------------------------------ */
.section-side-col {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: var(--col-gutter);
}

@media screen and (min-width: 64rem) {
  .section-side-col {
    width: auto;
    padding-right: calc(var(--unit-gutter-var) / 4);
    padding-left: calc(var(--unit-gutter-var) / 4);
    padding-right: calc(env(safe-area-inset-right) + var(--unit-gutter-var) / 4);
    padding-left: calc(env(safe-area-inset-left) + var(--unit-gutter-var) / 4);
  }
  .section-side-col.is-fix {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .section-side-col.is-full {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .section-side-col.is-fix + .section-side-col.is-full {
    -ms-flex-preferred-size: min-content;
        flex-basis: min-content;
    min-width: 30%;
  }
}
.section-side {
  line-height: 1.5;
}
.section-side .tag-list {
  margin: 0.75rem calc(var(--unit-gutter-var) / -4);
}
.section-side .tag-list .tag-link {
  padding: 0.25rem 0.5rem;
}
.section-side .tag-list .tag-link:hover {
  background: var(--color-hover-bg-2nd);
}

.section-side-header {
  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;
}
.section-side-header.-calendar {
  margin: 0 0 0.5rem;
}
.section-side-header .calendar-next-prev-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
}

.section-side-title {
  margin: 0;
  padding-bottom: 0.25rem;
  font-size: 1.25rem;
}

.section-side-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  color: var(--color-text);
  font-weight: bold;
  font-size: 0.8rem;
  text-decoration: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.section-side-link:hover {
  text-decoration: underline;
}
.section-side-link .icon-button {
  margin: 0 0 0 0.5rem;
}

.summary-side-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -0.5rem 1.5rem;
  padding: 0.5rem 0 0;
  list-style: none;
}

.summary-side-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  width: 100%;
}
.summary-side-item[class*=acms-col] {
  padding-right: 0;
  padding-left: 0;
}

.summary-side-link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 0.5rem 1fr;
  grid-template-columns: 6rem 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0.5rem;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  width: 100%;
  padding: 0.5rem;
}

.summary-side-link > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.summary-side-link > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.summary-side-link:hover {
  background: var(--color-hover-bg-2nd);
}

.summary-side-img-wrap {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.summary-side-img-wrap .noimage {
  height: 100%;
  max-width: initial;
}

.summary-side-title {
  margin: 0;
  font-size: 1rem;
  color: var(--color-black);
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.summary-side-date {
  display: inline-block;
  margin: 0;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}

/* ------------------------------
　　フッター
------------------------------ */
.footer {
  margin: var(--footer-margin-top-md) 0 0 0;
  border-top: var(--border-width-sm) solid var(--color-gray20);
}
.cta-visual + .footer, .cta + .footer {
  margin-top: 0;
}
.footer .form-search-button {
  min-width: initial;
}

.footer-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 3rem 0;
  gap: 2rem;
}

.footer-item {
  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;
}
.footer-item.-navigation {
  gap: 1.5rem;
}

/* 企業情報 */
.footer-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 0.8rem;
}

.footer-company-catch {
  margin: 0 0 0.5rem;
  color: var(--color-text-2nd);
}

.footer-company-title {
  margin: 0 0 1rem;
  font-size: 1.5625rem;
}

.footer-company-logo {
  margin: 0;
  max-height: 2rem;
}

@media screen and (min-width: 48rem) {
  .footer {
    margin: var(--footer-margin-top-lg) 0 0 0;
  }
  .cta-visual .footer, .cta .footer {
    margin-top: 0;
  }
  .footer-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 3.5rem 0;
    gap: 3.5rem;
  }
  .footer-item.-address {
    width: 33.3333333333%;
  }
  .footer-item.-navigation {
    width: 66.6666666667%;
  }
}
/* 所在地 */
.footer-address {
  margin-top: auto;
  font-style: normal;
}

.footer-address-name {
  margin: 0 0 0.5rem;
  color: var(--color-text-2nd);
  font-size: 1rem;
}

.footer-address-item {
  margin: 0 0 0.5rem;
  color: var(--color-text-2nd);
  font-size: 0.8rem;
}
.footer-address-item a {
  text-decoration: none;
  border-bottom: 1px dotted var(--color-gray80);
  color: var(--color-text-2nd);
}

/* ナビゲーション */
.footer-item-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.footer-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 1rem);
          flex: 1 0 calc(50% - 1rem);
  margin: 0;
  font-size: 0.8rem;
}

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

.footer-nav-item {
  font-weight: bold;
  font-size: 0.8rem;
  margin: 0 0 1rem;
}
.footer-nav-item .footer-nav-item {
  position: relative;
  margin: 0;
  font-weight: normal;
}
.footer-nav-item .footer-nav-item .footer-nav-link {
  padding: 0.5rem 0 0.5rem 1rem;
  color: var(--color-text-2nd);
}
.footer-nav-item .footer-nav-item .footer-nav-link::before {
  position: absolute;
  top: calc(50% - 0.5rem);
  left: 0;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTMiIHZpZXdCb3g9IjAgMCAxMiAxMyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTAgNi42MDI3OEw0IDEwLjEwMjhMNCAzLjEwMjc4TDEwIDYuNjAyNzhaIiBmaWxsPSIjQ0FDQUNBIi8+PC9zdmc+");
  content: "";
}

.footer-nav-link {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--color-text);
  text-decoration: none;
}
.footer-nav-link:hover {
  text-decoration: underline;
}
.footer-nav-link .footer-nav-item {
  margin-top: 0.5rem;
}
.footer-nav-item .footer-nav-link .footer-nav-item {
  margin: 0 0 0.5rem;
  padding: 0.5rem 0;
  color: var(--color-text-2nd);
}
.footer-nav-item .footer-nav-link .footer-nav-item:hover {
  color: var(--color-text);
}
.footer-nav-link + .footer-nav-group {
  margin-top: 0.5rem;
}
.footer-nav-link + .footer-nav-group .footer-nav-group {
  margin-top: 0;
}

@media screen and (min-width: 64rem) {
  .footer-item-nav {
    gap: 2rem;
  }
  .footer-nav {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(25% - 2rem);
            flex: 1 0 calc(25% - 2rem);
  }
}
/* 検索フォーム */
@media screen and (min-width: 48rem) {
  .footer-item .form-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer-item .form-search .form-search-label {
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 47.99875rem) {
  .footer-item .form-search .form-search-label {
    line-height: initial;
    margin-bottom: 0.5rem;
  }
}

/* コピーライト */
.footer-copyright-text {
  margin: 0 0 0.5rem;
  font-weight: bold;
  font-size: 0.8rem;
}

/* SNS */
.footer-sns-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-sns-item img {
  width: 24px;
}
.footer-sns-item:first-child {
  margin-left: 0;
}
.footer-sns-item:last-child {
  margin-right: 0;
}

.footer-sns-link {
  display: inline-block;
  vertical-align: top;
}

.footer-bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 1.5rem;
}

.footer-copyright-text {
  margin: 0;
}

.footer-bottom-sns {
  display: block;
  margin-left: auto;
}

/* ------------------------------
　　ヘッダー
------------------------------ */
.header {
  position: relative;
  width: 100%;
  background: var(--color-white);
}

.header-wrap {
  position: relative;
  z-index: 1;
  background-color: var(--color-white);
  z-index: var(--zindex-header);
}
.header-wrap.sticky {
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-item-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.header-item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.5rem;
}

.header-title {
  margin: 0;
  padding: 0 1rem;
  font-weight: bold;
  font-size: 1.5625rem;
  line-height: 1;
}

.header-logo {
  max-height: 2rem;
}

@media (max-width: 63.99875rem) {
  .header {
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: 100%;
    height: var(--header-height-fixed);
    padding: 0 3.5rem 0 0;
  }
  .header-wrap {
    height: var(--header-height-fixed);
  }
  .header-item-nav,
  .header-nav-wrap {
    display: none;
  }
}
.header-sub-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--col-gutter);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header-sub-navi .header-item-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.header-sub-navi svg {
  vertical-align: text-bottom;
}
.header-sub-navi .form-search-label {
  height: 2.5rem;
}
.header-sub-navi .button,
.header-sub-navi input[type=search] {
  min-width: initial;
  padding: 0.5rem 1rem;
  height: 2.5rem;
}

/* グローバルナビ（右・デフォルト）
------------------------------ */
.nav-default .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: var(--header-height-fixed);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
@media screen and (min-width: 64rem) {
  .nav-default .header {
    height: var(--header-height-fixed);
  }
}
.nav-default .header-wrap {
  height: var(--header-height);
}
.nav-default .header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-default .header-title-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-text);
}
.nav-default .header-logo {
  display: block;
  max-width: 100%;
}
.nav-default .header-item-nav {
  position: relative;
  margin-left: auto;
  font-size: 1rem;
  height: var(--header-height-fixed);
}
.nav-default .header-nav-tel {
  text-align: right;
}

/* ロゴ中央・グローバルナビ（下）
------------------------------ */
.nav-bottom .header-title,
.logo-center .header-title {
  padding: 0;
}
.nav-bottom .header-logo,
.logo-center .header-logo {
  max-height: 3.5rem;
}
.nav-bottom .header-item-wrap,
.logo-center .header-item-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: var(--container);
}
.nav-bottom .header-nav-tel,
.logo-center .header-nav-tel {
  line-height: 1.5;
}
.nav-bottom .header-nav-tel-no,
.logo-center .header-nav-tel-no {
  font-weight: bold;
  color: var(--color-primary);
}
.nav-bottom .header-nav-tel-no a,
.logo-center .header-nav-tel-no a {
  color: var(--color-primary);
  font-weight: bold;
}
.nav-bottom .header-nav-tel-time,
.logo-center .header-nav-tel-time {
  font-size: 0.8rem;
}

/* グローバルナビ（下）
------------------------------ */
.nav-bottom .header-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-bottom .header-nav-tel {
  text-align: right;
}
.nav-bottom .header-item-nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-left: 2rem;
}
.nav-bottom .form-search {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.nav-bottom .form-search {
  max-width: 35rem;
}

@media screen and (min-width: 48rem) {
  .nav-bottom .header-item-wrap {
    padding: 1rem calc(var(--col-gutter) * 1.5) 0;
  }
  .nav-bottom .header-nav-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px 0;
  }
  .nav-bottom .header-nav-wrap .form-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .nav-bottom .header-nav-wrap .button {
    min-width: initial;
    white-space: nowrap;
  }
}
/* ロゴ中央
------------------------------ */
.logo-center .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 3.5rem;
}
.logo-center .header-item-wrap {
  padding: 0;
  text-align: center;
}
.logo-center .global-nav-mobile-menu-btn {
  background-color: var(--color-white);
  left: 0;
  right: initial;
}
.logo-center .global-nav-mobile-menu-btn .global-nav-mobile-menu-text {
  display: none;
}
.logo-center .global-nav-mobile-menu-btn .global-nav-mobile-icon-toggle-menu {
  background-color: var(--color-gray100);
}
.logo-center .global-nav-mobile-menu-btn .global-nav-mobile-icon-toggle-menu::before, .logo-center .global-nav-mobile-menu-btn .global-nav-mobile-icon-toggle-menu::after {
  background-color: var(--color-gray100);
}
.logo-center [aria-expanded=true] .global-nav-mobile-icon-toggle-menu {
  background: transparent;
}
.logo-center .global-nav-mobile-search-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: var(--zindex-mobile-nav);
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  background-color: #FFF;
}
.logo-center .global-nav-mobile-search-btn svg {
  width: 1.75rem;
  height: 1.75rem;
}

@media screen and (min-width: 64rem) {
  .logo-center .header {
    display: block;
    padding: 0;
  }
  .logo-center .header-item-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr var(--col-gutter) 240px var(--col-gutter) 1fr;
    grid-template-columns: 1fr 240px 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: var(--col-gutter);
    grid-row-gap: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1.5rem calc(var(--col-gutter) * 1.5) 0;
    text-align: initial;
  }
  .logo-center .header-item-wrap > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .logo-center .header-item-wrap > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .logo-center .header-item-wrap > *:nth-child(3) {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
  }
  .logo-center .header-title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
    text-align: center;
  }
  .logo-center .header-nav-tel {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
  .logo-center .header-nav-wrap {
    display: contents;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
  }
}
/* 検索フォーム（ヘッダー）
------------------------------ */
.global-nav-mobile .header-search {
  width: 100%;
  margin-top: 1.5rem;
}
.header-search .header-search-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.header-search .header-search-action .button {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.header-search input.header-search-input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem;
  font-size: 1rem;
  background: var(--color-hover-bg);
  border: var(--border-width-sm) solid var(--color-gray50);
  border-radius: var(--border-radius-md);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.header-search input.header-search-input:hover {
  background: var(--color-white);
  border-color: var(--color-gray50);
}
.header-search input.header-search-input:focus {
  background: var(--color-white);
  border-color: #137af3;
  outline: none;
  -webkit-box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
          box-shadow: var(--box-shadow-focus), 0 1px 1px rgba(0, 0, 0, 0.1) inset;
}
.header-search .header-search-side-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
@media screen and (min-width: 48rem) {
  .header-search input.header-search-input {
    font-size: 1.25rem;
  }
  .header-search .header-search-button {
    padding: 0.75rem 2rem;
  }
}

.header-search {
  position: absolute;
  top: var(--header-height-fixed);
  right: 0;
  left: 0;
  background: var(--color-globalnav-bg);
  padding: 3rem 0 2rem;
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}
@media screen and (min-width: 64rem) {
  .header-search {
    top: initial;
  }
}
.header-search[aria-hidden=false] {
  opacity: 1;
}
.header-search .form-search {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.header-search .form-search-button {
  min-width: initial;
}

.header-search-close-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.5rem auto 0;
  padding: 0.5rem 0;
  border: none;
  background: var(--color-gray0);
  min-height: 2.5rem;
}
.header-search-close-btn svg {
  margin-right: 0.5rem;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1.25rem;
  height: 1.25rem;
  padding: 5px;
  background: var(--color-icon-bg);
}
.header-search-close-btn svg path {
  stroke: var(--color-white);
}

@media screen and (min-width: 64rem) {
  .header-search {
    top: initial;
  }
}
/* 物件一覧
----------------------------- */
/* 地図表示 */
.map-wrapper {
  min-height: 300px;
}
@media (min-width: 48rem) {
  .map-wrapper {
    min-height: 400px;
  }
}

.map-search {
  position: relative;
  z-index: 0;
  padding-bottom: 3rem;
}

@media (min-width: 48rem) {
  .map-search {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
  }
}
/* 検索パネル */
.realestate-search-panel {
  background: var(--color-gray10);
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  border-radius: var(--border-radius-xl);
}
.realestate-search-panel .form-button-group {
  margin-top: 0;
}
.realestate-search-panel .form-checkbox,
.realestate-search-panel .form-radio {
  width: calc(50% - 0.5rem);
}

.realestate-search-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}

.realestate-search-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.realestate-search-label {
  display: inline-block;
  min-width: 8rem;
  font-weight: bold;
}

.realestate-search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.realestate-search-keyword {
  width: 100%;
}

.realestate-search-footer {
  text-align: center;
}

.map-wrapper .leaflet-popup-content {
  margin: 1rem;
  width: 240px;
}
.map-wrapper .leaflet-container a.leaflet-popup-close-button {
  top: 0.5rem;
  right: 0.5rem;
  width: 20px;
  height: 20px;
  line-height: 20px;
  background: var(--color-text-2nd);
  color: var(--color-white);
  border-radius: var(--border-radius-round);
}
.map-wrapper .leaflet-container a.leaflet-popup-close-button:hover {
  background: var(--color-gray50);
}
.map-wrapper .map-speech-bubble a.map-link {
  color: var(--color-text);
  text-decoration: none;
}
.map-wrapper .map-speech-bubble img {
  display: block;
}
.map-wrapper .map-speech-bubble .map-img-wrap {
  margin-bottom: 0.5rem;
}
.map-wrapper .map-speech-bubble .map-text-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.map-wrapper .map-speech-bubble .map-title,
.map-wrapper .map-speech-bubble .map-text {
  margin: 0;
  font-size: 0.8rem;
}

@media (max-width: 47.99875rem) {
  .realestate-search-select-connector {
    rotate: 90deg;
  }
}
@media (min-width: 48rem) {
  .realestate-search-panel {
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: var(--border-radius-xxl);
  }
  .realestate-search-panel .form-checkbox,
  .realestate-search-panel .form-radio {
    width: calc(20% - 1.5rem);
  }
  .realestate-search-panel .realestate-search-group {
    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;
    gap: 1.5rem;
  }
  .realestate-search-panel .realestate-search-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
  }
  .realestate-search-panel .realestate-search-label {
    padding: 0.75rem 0;
  }
  .realestate-search-panel .realestate-search-input {
    gap: 1.5rem 1rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
/* 検索結果 */
.search-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  padding: 0 0 2rem;
}

.search-amount {
  margin: 0;
  font-weight: bold;
}

.search-conditions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 1rem;
  gap: 0.5rem;
  background: var(--color-gray10);
  border-radius: var(--border-radius-lg);
}
.search-conditions dt {
  font-weight: bold;
}
.search-conditions dd {
  margin: 0;
}

@media (min-width: 48rem) {
  .search-conditions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--col-gutter);
  }
}
/* 物件詳細
----------------------------- */
.realestate-map-entry {
  position: relative;
  z-index: 0;
  margin: 0 calc(var(--unit-gutter-var) / 2) var(--entry-el-margin-sm);
}

.realestate-main-image,
.realestate-sub-images {
  padding: 0 calc(var(--unit-gutter-var) / 2) 2rem;
}

.realestate-description {
  padding: 0 calc(var(--unit-gutter-var) / 2) 2rem;
}

.realestate-sub-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--col-gutter);
}

.realestate-sub-image .caption {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.8rem;
}

.realestate-detail-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}

.realestate-detail {
  margin: 0 0 2rem;
  padding: 1rem 2rem;
  border: 1px solid var(--color-gray30);
  border-radius: var(--border-radius-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
}
.realestate-detail dd {
  margin: 0;
}

@media (min-width: 48rem) {
  .realestate-detail,
  .realestate-detail-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .realestate-detail dt {
    width: 8rem;
  }
  .realestate-detail dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .realestate-detail-group {
    width: calc(50% - 1rem);
    gap: 1rem 2rem;
  }
  .realestate-sub-images {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .realestate-sub-image {
    width: calc(50% - 1rem);
  }
  .realestate-sub-image:nth-child(n+3) {
    width: calc(33.3333333333% - 1.375rem);
  }
}
/* 物件一覧
----------------------------- */
.works-main-image {
  padding: 0 calc(var(--unit-gutter-var) / 2) 2rem;
}
.works-main-image img {
  max-width: 100%;
  height: auto;
}

.works-search-panel {
  background: var(--color-gray10);
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  border-radius: var(--border-radius-xl);
}
.works-search-panel .form-checkbox {
  width: 50%;
}

.work-search-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--col-gutter);
}

.work-search-item {
  width: 100%;
}

.work-search-label {
  display: inline-block;
  min-width: 8rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0;
  font-weight: bold;
}

.work-search-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.work-search-input.price {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.work-search-keyword {
  width: 100%;
}

.work-search-footer {
  text-align: center;
}

@media (min-width: 48rem) {
  .works-search-panel {
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: var(--border-radius-xxl);
  }
  .works-search-panel .form-checkbox {
    width: calc(33.3333333333% - 2rem);
  }
  .works-search-panel .work-search-group {
    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;
    gap: var(--col-gutter);
  }
  .works-search-panel .work-search-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: var(--col-gutter);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .works-search-panel .work-search-label {
    margin-bottom: 0;
  }
  .works-search-panel .work-search-input {
    gap: 1.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .works-search-panel .work-search-input.price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .works-search-panel .work-search-input.price select {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .works-sub-images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: var(--col-gutter);
  }
}
/* ------------------------------
　　イベント詳細
------------------------------ */
.event-main-image {
  margin: 0 calc(var(--unit-gutter-var) / 2) 2rem;
}

.event-detail-wrap {
  padding-bottom: 2rem;
}

.event-detail {
  border: 1px solid var(--color-gray30);
  border-radius: var(--border-radius-md);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
}
.event-detail dt {
  font-weight: bold;
}
.event-detail dd {
  margin: 0;
}

.event-detail-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}

.event-googlemap {
  position: relative;
}
.event-googlemap svg {
  position: absolute;
  margin-left: 0.5rem;
  vertical-align: text-bottom;
}
.event-googlemap svg path {
  fill: var(--color-gray100);
}

@media (min-width: 48rem) {
  .event-detail dt {
    width: 8rem;
  }
  .event-detail dd {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .event-detail-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
    gap: 1rem 2rem;
  }
}
.event-footer {
  text-align: center;
}