@charset "utf-8";
/* ▼ PC版のプルダウン（ホバーで開閉） */
@media screen and (min-width: 770px) {
  .level-01-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .level-01-trigger:hover .level-01-cont {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .level-01-cont {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
}

/* ▼ SP版のプルダウン（クリックで開閉） */
@media screen and (max-width: 769px) {
  .level-01-cont {
    display: none;
  }

  .level-01-trigger.open > .level-01-cont {
    display: block;
  }
}

/* ▼ アイコン関連（フォントアイコンの非表示） */
i.toggle.fa.fa-angle-down {
  display: none;
}

/* ▼ SP用のナビゲーション設定 */
@media screen and (max-width: 769px) {
  /* --- 1. プルダウンメニュー（導入事例など）の設定 --- */
  .level-01-cont {
    display: none; /* 初期状態は閉じる */
  }

  /* 開いたときに表示 */
  .level-01-trigger.open > .level-01-cont {
    display: block;
  }

  /* --- 2. ハンバーガーメニューのスタイル --- */
  .menu-trigger {
    position: relative;
    cursor: pointer;
    z-index: 1000;
  }

  .menu-trigger span {
    position: absolute;
    transition: all 0.3s ease-in-out;
  }

  /* ハンバーガーメニューが開いたとき（✖アイコンに変化） */
  .menu-trigger.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .menu-trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-child(3) {
    transform: rotate(-45deg);
  }

  /* --- 3. ナビゲーションメニューのスタイル --- */
  .main-menu {
    display: none; /* デフォルトは非表示 */
    width: 100%;
    transition: transform 0.3s ease-in-out;
  }

  /* メニューが開いたとき */
  .main-menu.is-open {
    display: block;
  }
  i.toggle.fa.fa-angle-down {
    display: inline;
  }
  /* --- 4. アイコンの競合を防ぐための調整（!important を使用） --- */
  .menu-trigger.active span:first-of-type {
    transform: translateY(10px) rotate(45deg) !important;
    top: 10px !important;
  }

  .menu-trigger.active span:nth-child(2) {
    opacity: 0 !important;
  }

  .menu-trigger.active span:nth-child(3) {
    transform: translateY(10px) rotate(-45deg) !important;
    bottom: 28px !important;
  }

  /* --- 5. ハンバーガーメニューのデフォルトスタイル --- */
  .menu-trigger span {
    transition: all 0.3s ease-in-out !important;
    position: absolute !important;
  }

  /* --- 6. ナビゲーション開閉時にページを下にずらす設定 --- */
  body.menu-open {
    transition: margin-top 0.3s ease-in-out;
  }

  /* --- 7. ナビゲーションの基本設定 --- */
  .main-menu {
    display: none;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: height 0.3s ease-in-out, margin-bottom 0.3s ease-in-out;
  }

  /* メニューが開いたとき */
  .main-menu.is-open {
    display: block;
  }

  .navi-002-01 header .inner .main-menu .level-01-trigger a > .toggle {
    width: 0px;
  }
  /* ▼ プルダウンアイコンの回転（クリック時に適用） */
  .toggle {
    transform-origin: center center; /* 回転時に位置が変わらないようにする */
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* ▼ プルダウンが開いたときにアイコンを回転 */

  :is(.navi-001-01.navi_custom, .navi-002-01.navi_base_custom).hamburger_custom
    header#navigations
    .inner
    .main-menu
    .toggle.fa.fa-angle-down::before {
    height: auto;
  }
  li.level-01-trigger.open .rotated {
    transform: rotate(180deg);
    position: absolute;
    right: 30px;
    top: 45px;
  }
  i.toggle.fa {
    position: absolute;
    right: 0;
    top: 15px;
  }
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.col.col-1 {
  width: 100%;
}
.color-FFB5A3 {
  color: #ffb5a3;
}
.color-000000 {
  color: #000000;
}
.breadcrumbs li br,
.theme-fo-base .component.entry-list .entry-list-unit .cont h3 a br {
  display: none;
}

.page-template-k-lp .theme-fo-base .main-visual.sub-page-custom .clearfix {
  max-width: 100%;
  padding: 0;
  min-height: auto;
}

@media screen and (max-width: 769px) {
  .theme-fo-base
    .clearfix.main-visual-content
    .component.button
    .button-cont
    a.red {
    min-width: 200px;
    font-size: 14px;
    padding: 11px 20px;
    min-width: 80%;
    width: auto;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .contents .content-1 .row.row-1 .col.col-1 .component.social-button li {
    padding: 10px !important;
  }
}

/* PC/SPどちらでも、open が付いたら表示する */
.main-menu.open {
  display: block !important;
  opacity: 1;
  visibility: visible;
}

/* SP時のため、普段は隠す */
@media (max-width: 769px) {
  .main-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }

  .menu-trigger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .theme-fo-base
    .clearfix.main-visual-content
    .component.button
    .button-cont
    a.red {
    min-width: 200px;
    font-size: 14px;
    padding: 11px 20px;
    min-width: 80%;
    width: auto;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .contents .content-1 .row.row-1 .col.col-1 .component.social-button li {
    padding: 10px !important;
  }
}

/* ▼ トップスライド部分 ▼ */
@media screen and (min-width: 768px) {
  .ktbl-top-mv-slider {
    background: #002756;
    padding: 20px 0;
  }

  .ktbl-top-mv-slide {
    margin: 0 15px;
  }

  .ktbl-top-mv-slider .slick-next {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-next-btn.png)
      no-repeat;
    right: 50%;
    margin-right: -575px;
    width: 51px;
    height: 51px;
    z-index: 2;
  }

  .ktbl-top-mv-slider .slick-prev {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-prev-btn.png)
      no-repeat;
    left: 50%;
    margin-left: -575px;
    width: 51px;
    height: 51px;
    z-index: 2;
  }

  .ktbl-top-mv-slider .slick-prev:before,
  .ktbl-top-mv-slider .slick-next:before {
    content: unset;
    font-size: 60px;
    color: #333;
  }

  .ktbl-top-mv-slider .slick-prev:hover,
  .ktbl-top-mv-slider .slick-prev:focus {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-prev-btn.png)
      no-repeat;
  }

  .ktbl-top-mv-slider .slick-next:hover,
  .ktbl-top-mv-slider .slick-next:focus {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-next-btn.png)
      no-repeat;
  }

  .ktbl-top-mv-slider .slick-dots li {
    border-top: 2px solid #ccc;
    width: 150px;
  }

  .ktbl-top-mv-slider .slick-dots li.slick-active {
    border-top: 2px solid #333;
    width: 150px;
  }

  .ktbl-top-mv-slider .slick-dots li button:before {
    content: unset;
  }
  .ktbl-hotel-bnr-top {
    width: 900px;
    display: block;
  }

  .ktbl-hotel-subttl-top {
    background: #333;
    border-radius: 11px 11px 0 0;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
  }

  .ktbl-hotel-subttl-top span {
    font-size: 40px;
    font-weight: 700;
  }

  .ktbl-hotel-subcatch-top {
    font-size: 41px;
    font-weight: bold;
    margin: 15px 0 0 30px;
  }

  .ktbl-hotel-bnr-top-inner {
    position: relative;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-achievements {
    background: #333;
    font-size: 31px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    margin: 0 10px 0 0;
    display: block;
    width: 377px;
  }

  .ktbl-hotel-subcatch-top .ktbl-hotel-subcatch-achievements-check {
    display: block;
    text-align: center;
    width: 377px;
    font-weight: bold;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-line {
    color: #2a65a9;
    font-size: 40px;
    font-weight: bold;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-number {
    font-weight: bold;
    font-size: 51px;
  }

  .ktbl-hotel-maincatch-top {
    font-size: 18px;
    font-weight: bold;
    margin: 4px 0 0 30px;
    line-height: 35px;
    width: 462px;
    padding: 0 11px 0 0;
    z-index: 1;
    position: relative;
  }

  .ktbl-hotel-maincatch-top span {
    font-size: 46px;
    width: 375px;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 700;
    background: #2a65a9;
    padding: 10px 24px;
  }

  .ktbl-hotel-maincopy-top {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 0 30px;
    line-height: 38px;
    width: 462px;
    background: #fff;
    padding: 0 20px 0 0;
    z-index: 1;
    position: relative;
    color: #333;
  }

  .ktbl-hotel-maincatch-top-under {
    margin: 15px 0 0 63px;
  }

  .ktbl-hotel-button {
    position: absolute;
    right: 74px;
    bottom: 6px;
    font-size: 30px;
    font-weight: 700;
    padding: 9px 29px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to right, #d20000 0% 0%, #ff6f6f 100% 100%);
  }

  .ktbl-hotel-button::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }

  img.ktbl-hotel-main-img {
    position: absolute;
    top: 95px;
    right: 20px;
    width: 455px;
  }
  .ktbl-top-mv-slide a:hover {
    opacity: 0.7;
  }

  .ktbl-lgu-bnr-top {
    background: url(/wp-content/themes/kotobal_theme/img/k-lgu-banner2.png);
    height: 574px;
    border-radius: 15px;
    width: 900px;
    display: block;
  }
  .ktbl-fv-catch {
    background: #ffffffcf;
    margin: 0 auto;
    padding: 20px;
    background: #ffffffcf;
    box-sizing: border-box;
  }

  .ktbl-lgu-bnr-top-inner {
    max-width: 625px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 0;
  }
  span.ktbl-catch-label {
    display: block;
    background: #0a744e;
    border-radius: 5px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 5px;
  }

  .ktbl-fv-catch__main {
    margin-bottom: 10px;
    font-size: 50px;
    font-weight: bold;
    color: #0a744e;
    text-align: center;
  }

  span.ktbl-catch-small {
    font-size: 38px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #333;
  }

  .ktbl-lgu-bnr-top .sp-br {
    display: none;
  }

  .ktbl-fv-catch__sub {
    text-align: center;
  }

  p.ktbl-fv-sub-ttl {
    position: relative;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 5px 20px;
    background-image: linear-gradient(90deg, #f37431, #ff8700);
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .ktbl-fv-sub-ttl:before,
  .ktbl-fv-sub-ttl:after {
    position: absolute;
    top: 50%;
    left: -5%;
    display: block;
    width: 100%;
    max-width: 160px;
    height: 2px;
    background: #0a744e;
    transform: translate(-100%, -50%);
    content: "";
  }

  .ktbl-fv-sub-ttl:after {
    right: -5%;
    left: auto;
    transform: translate(100%, -50%);
  }

  .ktbl-fv-sub-list {
    text-align: left;
  }

  .ktbl-fv-sub-list li {
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
    padding-left: 2rem;
    background: linear-gradient(
        to right,
        transparent 0 1.5em,
        #f37431 1.5em 100%
      )
      bottom left / 100% 2px no-repeat;
    box-sizing: border-box;
    font-size: 22px;
    overflow: visible;
    font-weight: bold;
    color: #333;
  }

  .ktbl-fv-sub-list li:before {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    content: url("/wp-content/themes/kotobal_theme/img/k-lgu/check-icon.png");
  }

  .ktbl-lgu-button {
    font-size: 30px;
    font-weight: 700;
    padding: 9px 29px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to right, #d20000 0% 0%, #ff6f6f 100% 100%);
    margin: 0 auto;
    position: relative;
    max-width: 280px;
    width: 100%;
  }

  .ktbl-lgu-button:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }

  .ktbl-lgu-button {
    text-align: center;
    margin-top: 20px;
  }
  .ktbl-boe-bnr-top {
    width: 900px;
    height: 574px;
    border-radius: 15px;
    background: #fff;
    overflow: hidden;
    display: block;
  }

  .ktbl-boe-catch-area {
    display: flex;
    gap: 5px;
    height: 285px;
    overflow: hidden;
    flex-wrap: wrap;
  }

  .main-catch {
    background: url(/wp-content/themes/kotobal_theme/img/k-boe-hukidashi.png);
    font-size: 24px;
    height: 100px;
    background-size: cover;
    margin: 10px 5px;
    text-align: center;
    padding: 5px;
    color: #fff;
    font-weight: bold;
  }

  .ktbl-boe-txt-area img {
    width: 100%;
    height: auto;
  }

  .ktbl-boe-sub-area .sub-copy {
    text-align: center;
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    padding-left: 30px;
    background: url(/wp-content/themes/kotobal_theme/img/h-logo.png);
    background-color: #333;
    background-repeat: no-repeat;
    background-position-x: 40px;
    background-position-y: center;
  }

  .ktbl-boe-sub-area ul {
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    justify-content: center;
  }

  .ktbl-boe-sub-area ul li {
    border-radius: 5px;
    width: 48%;
    background: url(/wp-content/themes/kotobal_theme/img/check-icon.png);
    background-repeat: no-repeat;
    background-color: #eee;
    padding: 10px;
    font-size: 14px;
    background-position-y: center;
    background-position-x: 5px;
    padding: 10px;
    padding-left: 40px;
    color: #5a4e7c;
    font-weight: bold;
  }

  .ktbl-img-area {
    width: 46%;
  }

  .ktbl-boe-txt-area {
    width: 53%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ktbl-boe-bnr-top .sp-br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .ktbl-top-mv-slider {
    background: #002756;
    padding: 20px 0;
  }

  .ktbl-top-mv-slide {
    margin: 0 15px;
  }

  .ktbl-top-mv-slider .slick-dots li {
    border-top: 2px solid #ccc;
    width: 18%;
  }

  .ktbl-top-mv-slider .slick-dots li.slick-active {
    border-top: 2px solid #333;
    width: 18%;
  }

  .ktbl-top-mv-slider .slick-next {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-next-btn.png)
      no-repeat;
    background-size: cover;
    right: 5%;
    margin-right: -15px;
    width: 25px;
    height: 25px;
    z-index: 2;
  }

  .ktbl-top-mv-slider .slick-prev {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-prev-btn.png)
      no-repeat;
    background-size: cover;
    left: 5%;
    margin-left: -15px;
    width: 25px;
    height: 25px;
    z-index: 2;
  }

  .ktbl-top-mv-slider .slick-prev:before,
  .ktbl-top-mv-slider .slick-next:before {
    content: unset;
    font-size: 60px;
    color: #333;
  }

  .ktbl-top-mv-slider .slick-prev:hover,
  .ktbl-top-mv-slider .slick-prev:focus {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-prev-btn.png)
      no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .ktbl-top-mv-slider .slick-next:hover,
  .ktbl-top-mv-slider .slick-next:focus {
    background: url(/wp-content/themes/kotobal_theme/img/k-hotel/k-next-btn.png)
      no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
  }

  .ktbl-top-mv-slider .slick-dots li button:before {
    content: unset;
  }

  .ktbl-hotel-subttl-top {
    background: #333;
    border-radius: 11px 11px 0 0;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    text-align: center;
  }

  .ktbl-hotel-subttl-top span {
    font-size: 16px;
    font-weight: 700;
  }

  .ktbl-hotel-subcatch-top {
    font-size: 23px;
    text-align: center;
    font-weight: bold;
    margin: 13px 10px 4px 10px;
    color: #333;
  }
  .ktbl-hotel-bnr-top {
    display: block;
    color: #333;
  }

  .ktbl-hotel-bnr-top-inner {
    position: relative;
    padding: 0 0 20px 0;
    background: #fff;
    border-radius: 15px;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-achievements {
    background: #333;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    padding: 10px;
    margin: 0 6px 0 0;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-line {
    color: #2a65a9;
    font-weight: bold;
  }

  .ktbl-hotel-subcatch-top span.ktbl-hotel-subcatch-number {
    font-weight: bold;
    font-size: 35px;
  }

  .ktbl-hotel-maincatch-top {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    width: 100%;
    padding: 0 10px;
    margin: 0;
  }

  .ktbl-hotel-maincatch-top span {
    font-size: 32px;
    width: 100%;
    text-align: center;
    color: #fff;
    display: block;
    font-weight: 700;
    background: #2a65a9;
    padding: 7px 24px;
  }

  .ktbl-hotel-maincopy-top {
    font-size: 15px;
    font-weight: bold;
    margin: 10px 0 0 0;
    line-height: 26px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 0 25px;
    color: #333;
  }

  .ktbl-hotel-maincatch-top-under {
    margin: 10px 0 0 0;
  }

  .ktbl-hotel-button {
    margin: 3px 0 0 0;
    position: relative;
    text-align: center;
    font-size: 18px;
    display: block;
    width: 60%;
    margin: 0 auto;
    font-weight: 700;
    padding: 6px 29px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to right, #d20000 0% 0%, #ff6f6f 100% 100%);
  }

  .ktbl-hotel-button ::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }

  img.ktbl-hotel-main-img {
    width: 240px;
    display: block;
    margin: 7px auto -2px;
  }
  .ktbl-lgu-bnr-top {
    background: none;
    border-radius: 15px;
    width: 100%;
    background: #fff;
    display: block;
  }
  .ktbl-fv-catch {
    margin: 0 auto;
    padding: 0 10px 30px;
    box-sizing: border-box;
  }

  .ktbl-lgu-bnr-top-inner {
    max-width: 625px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 15px 0;
  }

  span.ktbl-catch-label {
    display: block;
    background: #0a744e;
    font-size: 19px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 5px;
    margin: 0 -10px;
  }

  .ktbl-fv-catch__main {
    margin-bottom: 10px;
    font-size: 45px;
    font-weight: bold;
    color: #0a744e;
    text-align: center;
  }

  span.ktbl-catch-small {
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    color: #333;
  }

  .ktbl-lgu-bnr-top .sp-br {
    display: block;
  }

  .ktbl-fv-catch__sub {
    text-align: center;
  }

  p.ktbl-fv-sub-ttl {
    position: relative;
    display: inline-block;
    margin: 0 auto 15px;
    padding: 5px 20px;
    background-image: linear-gradient(90deg, #f37431, #ff8700);
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }

  .ktbl-fv-sub-ttl:before,
  .ktbl-fv-sub-ttl:after {
    position: absolute;
    top: 50%;
    left: -5%;
    display: block;
    width: 13%;
    max-width: 160px;
    height: 2px;
    background: #0a744e;
    transform: translate(-100%, -50%);
    content: "";
  }

  .ktbl-fv-sub-ttl:after {
    right: -5%;
    left: auto;
    transform: translate(100%, -50%);
  }

  .ktbl-fv-sub-list {
    text-align: left;
  }

  .ktbl-fv-sub-list li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding-left: 2rem;
    box-sizing: border-box;
    font-size: 18px;
    overflow: visible;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
  }
  .ktbl-fv-sub-list li span {
    border-bottom: 3px solid #f37431;
  }
  .ktbl-fv-sub-list li:before {
    position: absolute;
    top: 60%;
    left: 0;
    transform: translateY(-50%);
    content: url("/wp-content/themes/kotobal_theme/img/k-lgu/check-icon.png");
  }

  .ktbl-lgu-button a {
    font-size: 30px;
    font-weight: 700;
    padding: 9px 29px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to right, #d20000 0% 0%, #ff6f6f 100% 100%);
    margin: 0 auto;
    position: relative;
  }

  .ktbl-lgu-button:after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 8px 0 8px 13px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
  }

  .ktbl-lgu-button {
    position: relative;
    text-align: center;
    font-size: 18px;
    display: block;
    width: 60%;
    margin: 0 auto;
    font-weight: 700;
    padding: 6px 29px;
    color: #fff;
    border-radius: 10px;
    background: linear-gradient(to right, #d20000 0% 0%, #ff6f6f 100% 100%);
    margin-top: 20px;
  }
  .ktbl-boe-bnr-top {
    border-radius: 15px;
    background: #fff;
    padding: 10px 0 20px;
    display: block;
  }

  .ktbl-boe-catch-area {
    display: block;
  }
  .ktbl-boe-sub-area {
    margin-top: 10px;
  }
  .main-catch {
    background: url(/wp-content/themes/kotobal_theme/img/k-boe-hukidashi.png);
    font-size: 19px;
    height: 85px;
    background-size: 100%;
    margin: 10px 5px 20px;
    text-align: center;
    padding: 2px;
    color: #fff;
    background-repeat: no-repeat;
    font-weight: bold;
  }

  .ktbl-boe-sub-area .sub-copy {
    text-align: left;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    padding: 5px;
    padding-left: 50px;
    background: url(/wp-content/themes/kotobal_theme/img/h-logo.png);
    background-color: #333;
    background-repeat: no-repeat;
    background-position-x: 10px;
    background-position-y: center;
  }

  .ktbl-boe-sub-area ul {
    display: block;
    padding: 10px;
  }

  .ktbl-boe-sub-area ul li {
    border-radius: 5px;
    background: url(/wp-content/themes/kotobal_theme/img/check-icon.png);
    background-repeat: no-repeat;
    background-color: #eee;
    padding: 10px;
    font-size: 14px;
    background-position-y: center;
    background-position-x: 5px;
    padding: 10px;
    padding-left: 40px;
    color: #5a4e7c;
    font-weight: bold;
    margin-bottom: 10px;
  }

  .ktbl-boe-bnr-top .ktbl-lgu-button {
    margin-top: 0;
  }
  .ktbl-img-area {
    display: none;
  }

  .ktbl-boe-txt-area {
    margin: 10px 0;
  }
}

/* ▼ トップ導入事例部分 ▼ */

@media screen and (min-width: 768px) {
  .content-pickup h3 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .content-pickup b {
    font-weight: 700;
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 24px;
    color: #2a65a9;
    text-align: center;
    display: block;
  }
  .ktbl-pickup-list-area {
    display: flex;
    justify-content: space-evenly;
    width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .ktbl-pickup-list-cont {
    width: 32%;
  }
  .ktbl-pickup-list-cont span {
    font-size: 16px;
    font-weight: bold;
    line-height: 27px;
    padding: 7px 5px 10px;
    color: #333;
    display: block;
    text-align: center;
  }
  .ktbl-pickup-list-cont p {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
  }
  .ktbl-pickup-list-cont img {
    display: block;
    border-radius: 15px;
  }
  .ktbl-pickup-list-cont p {
    font-size: 20px;
    line-height: 30px;
    padding: 5px 0 0px;
  }
}
@media screen and (max-width: 767px) {
  .theme-fo-base .wrapper .contents section.content-pickup {
    padding: 30px 20px 35px;
  }
  .content-pickup h3 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 1.5rem;
  }
  .content-pickup b {
    font-weight: 700;
    font-family: "Open Sans", "Arial", sans-serif;
    font-size: 24px;
    color: #2a65a9;
    text-align: center;
    display: block;
  }
  .ktbl-pickup-list-area {
    margin: 0 auto;
    max-width: 550px;
  }
  .ktbl-pickup-list-cont {
    width: 100%;
    margin: 0 0 30px 0;
  }
  .ktbl-pickup-list-cont span {
    font-size: 16px;
    font-weight: bold;
    line-height: 27px;
    padding: 7px 15px 10px;
    color: #333;
    display: block;
    text-align: center;
  }
  .ktbl-pickup-list-cont img {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .ktbl-pickup-list-cont p {
    font-size: 20px;
    line-height: 27px;
    padding: 0;
    text-align: center;
    font-weight: bold;
  }
}

@media screen and (min-width: 768px) {
  .introduction-caution {
    font-size: 14px;
    text-align: center;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .introduction-caution {
    font-size: 13px;
    text-align: center;
    display: block;
    margin: 0 auto 34px;
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  .content-multi-support h3 {
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 60px;
  }
  .content-multi-support h4 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #2a65a9;
  }
  .ktbl-multi-support-list-area {
    display: flex;
    justify-content: space-between;
    width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
    box-sizing: border-box;
    gap: 10px;
  }
  .ktbl-multi-support-list-cont {
    width: 300px;
  }
  .ktbl-multi-support-list-cont img {
    display: block;
    width: 300px;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
  }
  .ktbl-multi-support-list-cont p {
    font-size: 16px;
    line-height: 27px;
    padding: 7px 5px 10px;
  }
  .ktbl-multi-support-btn a {
    font-size: 15px;
    color: #2a65a9;
    font-weight: bold;
    position: relative;
    border: 3px solid #2a65a9;
    border-radius: 26px;
    padding: 10px 20px 10px 15px;
    display: block;
    text-align: center;
  }
  .ktbl-multi-support-btn a::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #2a65a9;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
  }
  .ktbl-sp-br {
    display: none;
  }
  /* 子要素が3つだけの場合 */
  .ktbl-multi-support-list-area > :nth-last-child(3):first-child,
  .ktbl-multi-support-list-area > :nth-last-child(3):first-child ~ * {
    flex: 0 0 300px; /* ←固定幅 */
  }

  /* 子要素が4つだけの場合 */
  .ktbl-multi-support-list-area > :nth-last-child(4):first-child,
  .ktbl-multi-support-list-area > :nth-last-child(4):first-child ~ * {
    flex: 0 0 280px; /* ←固定幅 */
  }
}
@media screen and (max-width: 767px) {
  .content-multi-support h3 {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 1.5rem;
  }
  .content-multi-support h4 {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #2a65a9;
  }
  .ktbl-multi-support-list-area {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    max-width: 550px;
  }
  .ktbl-multi-support-list-cont {
    margin: 0 0 60px 0;
  }
  .ktbl-multi-support-list-cont img {
    display: block;
    height: 250px;
    border-radius: 15px;
    object-fit: cover;
    margin: 0 auto;
  }
  .ktbl-multi-support-list-cont p {
    font-size: 16px;
    line-height: 27px;
    padding: 7px 5px 9px;
  }
  .ktbl-multi-support-btn a {
    font-size: 15px;
    color: #2a65a9;
    font-weight: bold;
    position: relative;
    border: 3px solid #2a65a9;
    border-radius: 26px;
    padding: 10px 20px 10px 15px;
    display: block;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .ktbl-multi-support-btn a::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #2a65a9;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
  }
}

/* ▼ 下層ホテルリンク部分 ▼ */

@media screen and (min-width: 768px) {
  .ktbl-hotel-link-txt-area {
    padding: 10px 0 0 0;
  }
  .ktbl-hotel-link-txt-area span {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    display: block;
  }
  .ktbl-hotel-link-txt-area a {
    font-size: 18px;
    margin: 0 auto;
    width: 350px;
    color: #2a65a9;
    font-weight: bold;
    position: relative;
    border: 3px solid #2a65a9;
    border-radius: 26px;
    padding: 10px 20px 10px 15px;
    display: block;
    text-align: center;
    background: #fff;
  }
  .ktbl-hotel-link-txt-area a::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #2a65a9;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 767px) {
  .ktbl-hotel-link-txt-area span {
    font-size: 1.05rem;
    margin-bottom: 1.1rem;
    margin-top: 0;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    display: block;
  }
  .ktbl-hotel-link-txt-area a {
    font-size: 18px;
    margin: 0 auto;
    width: 85%;
    max-width: 400px;
    color: #2a65a9;
    font-weight: bold;
    position: relative;
    border: 3px solid #2a65a9;
    border-radius: 26px;
    padding: 10px 20px 10px 15px;
    display: block;
    text-align: center;
    background: #fff;
  }
  .ktbl-hotel-link-txt-area a::after {
    content: "";
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #2a65a9;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 769px) {
  .theme-fo-base
    .main-visual.mv_custom
    .clearfix
    .row.mv_row
    .col.txtarea_col
    .component.text.shoulder_text {
    font-size: 15px;
    text-align: center !important;
    margin-top: 30px !important;
    padding: 0;
  }
}

/*ホテルバナー関連*/
.ktbl__banner-area {
  text-align: center;
  font-weight: bold;
}
.ktbl__banner-area.left {
  margin: 20px 0;
  max-width: 600px;
  text-align: center;
}
.ktbl__banner-area p {
  font-weight: bold;
  line-height: 1.7;
}

.ktbl__banner-area p span {
  position: relative;
}

.ktbl__banner-area p spna:before {
  content: "＼";
}

.ktbl__banner-area p spna:after {
  content: "／";
}

.ktbl__banner-area p spna {
  font-size: 20px;
  margin-bottom: 10px;
  display: block;
}
@media screen and (max-width: 769px) {
  .ktbl__banner-area.left {
    text-align: center;
  }
}

/*下層業界活用シーンリンク関連*/
.content-multi-support--blogpage h3 {
  border: none;
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 60px;
}

.content-multi-support--blogpage h4 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #2a65a9;
  margin: 0px;
}

.content-multi-support--blogpage {
  max-width: 1000px;
}

.content-multi-support--blogpage .ktbl-multi-support-list-area {
  width: 1000px;
}

.component.richtext .content-multi-support--blogpage .ktbl-multi-support-btn a {
  font-size: 15px;
  color: #2a65a9;
  font-weight: bold;
  position: relative;
  border: 3px solid #2a65a9;
  border-radius: 26px;
  padding: 10px 20px 10px 15px;
  display: block;
  text-align: center;
  text-decoration: unset;
}

.component.richtext
  .content-multi-support--blogpage
  .ktbl-multi-support-btn
  a:visited {
  text-decoration: unset;
}

.theme-fo-base
  .contents
  .component.richtext
  .content-multi-support--blogpage
  .ktbl-multi-support-list-cont
  p {
  font-size: 16px;
  line-height: 27px;
  padding: 7px 5px 10px;
}
.blog section.content-element.content-7.cta_sec {
  background-position: center center;
  background-size: cover;
  padding: 70px 0 60px;
}
.blog section.content-element.content-7.cta_sec h2 {
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  font-size: 32px;
}
.blog section.content-element.content-7.cta_sec .inner {
  box-sizing: border-box;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
}

.blog
  .component.cta-component-0.cta_tel_text.fontM_text.text.text-align-center.cta-text,
.component.cta-component-2.cta_tel_text.text.text-align-center.cta-text {
  margin-bottom: 0;
  margin-top: 0;
}
.theme-fo-base .blog .component.text {
  font-weight: 500;
  margin: 10px 0;
  font-size: 16px;
  color: #fff;
}
#table-of-contents {
  display: none;
}
.component.blog_article .article-post .ft-recommend {
  font-size: 22px;
  border-bottom: solid 1px #eee;
  border-top: solid 1px #eee;
  padding: 10px;
  margin: 20px 0 !important;
  line-height: 1.5;
  color: #000;
  text-align: center;
  font-weight: bold;
}
.component.blog_article .article-post .mds {
  font-size: 20px;
  padding: 10px;
  font-weight: 700;
  margin: 1.12em 0;
  text-align: center;
}
.case-new-content section.ktbl-case-hero {
  padding-top: 0;
}
@media screen and (max-width: 769px) {
  .content-multi-support--blogpage h3 {
    text-align: center;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 1.5rem;
  }

  .content-multi-support--blogpage .ktbl-multi-support-list-area {
    width: 100%;
    padding: 0;
  }
}
