@charset "utf-8";
/* CSS Document */
body.on .booboofv .swiper-img {
  position: relative;
}
body.on .booboofv .swiper-img::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
body.on .booboofv .swiper-img img {
  position: relative;
  z-index: 0;
}
.booboofv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: clamp(90px, 9vw, 120px) clamp(20px, 5vw, 70px) 0;
  box-sizing: border-box;
  overflow: hidden;
}
.booboofv .fv_inner {
  position: relative;
  width: min(1440px, 100%);
  margin: 0 auto;
}
.booboofv .swiper {
  width: 100%;
  height: calc(100vh - clamp(90px, 9vw, 120px));
  min-height: 560px;
  border-radius: clamp(42px, 6vw, 86px);
  overflow: hidden;
}
.booboofv .swiper-wrapper, .booboofv .swiper-slide, .booboofv .swiper-img {
  width: 100%;
  height: 100%;
}
.booboofv .swiper-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ---------- center text ---------- */
.booboofv .fv_txtbox {
  position: absolute;
  top: 45%;
  right: clamp(80px, 12vw, 170px);
  z-index: 5;
  transform: translateY(-50%);
  color: #fff;
}
.booboofv .fv_logo_icon {
  width: clamp(42px, 5vw, 62px);
  margin-right: auto;
  margin-left: auto;
}
.booboofv .fv_logo_icon img {
  display: block;
  width: 100%;
}
.booboofv .fv_en, .booboofv .fv_sub, .booboofv .fv_txtbox h1 {
  color: #fff;
  letter-spacing: 0.14em;
}
.booboofv .fv_en {
  font-size: clamp(11px, 1.2vw, 14px);
  font-weight: 700;
}
.booboofv .fv_txtbox h1 {
  font-weight: 700;
  line-height: 1.7;
}
/* ---------- icons ---------- */
.booboofv .fv_dog_icon {
  position: absolute;
  left: clamp(-45px, -3vw, -20px);
  bottom: clamp(55px, 11vw, 100px);
  z-index: 6;
  width: clamp(130px, 16vw, 200px);

  transform-origin: 50% 100%;
  animation: dog-bounce 2.8s ease-in-out infinite;
}

.booboofv .fv_cat_icon {
  position: absolute;
  right: clamp(-65px, -5vw, -30px);
  bottom: 0;
  z-index: 6;
  width: clamp(180px, 18vw, 260px);

  transform-origin: 50% 100%;
  animation: cat-peek 4s ease-in-out infinite;
  z-index: 5;
}

.booboofv .fv_dog_icon img,
.booboofv .fv_cat_icon img {
  display: block;
  width: 100%;
}

/* 犬：ジャンプして着地時に少しつぶれる */
@keyframes dog-bounce {
  0%,
  55%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  8% {
    transform: translateY(4px) rotate(-3deg) scale(1.05, 0.95);
  }

  18% {
    transform: translateY(-22px) rotate(6deg) scale(0.97, 1.04);
  }

  28% {
    transform: translateY(0) rotate(-2deg) scale(1.06, 0.94);
  }

  36% {
    transform: translateY(-7px) rotate(2deg) scale(0.99, 1.02);
  }

  44% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

/* 猫：横から覗いて首をかしげる */
@keyframes cat-peek {
  0%,
  15%,
  100% {
    transform: translateX(45%) rotate(0deg);
  }

  28%,
  65% {
    transform: translateX(0) rotate(0deg);
  }

  38% {
    transform: translateX(0) rotate(-7deg);
  }

  48% {
    transform: translateX(0) rotate(5deg);
  }

  58% {
    transform: translateX(0) rotate(0deg);
  }

  78% {
    transform: translateX(45%) rotate(0deg);
  }
}

/* 動きを減らす設定のユーザーには停止 */
@media (prefers-reduced-motion: reduce) {
  .booboofv .fv_dog_icon,
  .booboofv .fv_cat_icon {
    animation: none;
  }
}
/* ---------- news ---------- */
.booboofv .fv_news {
  position: absolute;
  left: 50%;
  bottom: clamp(-18px, -1.5vw, -8px);
  z-index: 8;
  width: min(640px, 72%);
  transform: translateX(-50%);
}
.booboofv .fv_news a {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  min-height: 54px;
  padding: 0 clamp(24px, 3vw, 44px);
  border: 1px solid rgba(129, 99, 83, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  box-sizing: border-box;
}
.booboofv .fv_news p {
  margin: 0;
  line-height: 1;
  white-space: nowrap;
}
.booboofv .fv_news .label1 {
  color: #e798b8;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.booboofv .fv_news .date {
  color: #b69d82;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.booboofv .fv_news .title {
  overflow: hidden;
  color: #70554a;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
}
/* ---------- scroll ---------- */
.booboofv .fv_scroll {
  position: absolute;
  right: clamp(-28px, -2vw, -12px);
  bottom: clamp(26px, 4vw, 66px);
  z-index: 6;
  writing-mode: vertical-rl;
  padding-bottom: clamp(52px, 6vw, 76px);
  z-index: 5;
}

.booboofv .fv_cat_icon {
  z-index: 7;
}
.booboofv .fv_scroll p {
  margin: 0;
  color: #b69d82;
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1;
}
.booboofv .fv_scroll::before {
  content: none;
}
.booboofv .fv_scroll::after {
  content: "";
  position: absolute;
  left: 40%;
  bottom: 0;
  width: 1px;
  height: clamp(42px, 5vw, 68px);
  background: rgba(129, 99, 83, 0.45);
  transform: translateX(-50%);
}
/* ---------- fixed reservation ---------- */
.fixed_reservation {
  position: fixed;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 42px);
  z-index: 9997;
}
.fixed_reservation a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(150px, 16vw, 220px);
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #ef7fab;
  box-shadow: 0 12px 28px rgba(239, 127, 171, 0.28);
  text-decoration: none;
}
.fixed_reservation p {
  margin: 0;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.12em;
}
/* ---------- responsive ---------- */
@media screen and (max-width: 900px) {
  .booboofv {
    min-height: auto;
    padding-top: 96px;
  }
  .booboofv .swiper {
    height: 560px;
  }
  .booboofv .fv_txtbox {
    right: 50%;
    transform: translate(50%, -50%);
    width: 78%;
  }
  .booboofv .fv_news {
    width: 82%;
  }
}
@media screen and (max-width: 576px) {
  .booboofv {
    padding-right: 18px;
    padding-left: 18px;
  }
  .booboofv .swiper {
    height: 520px;
    border-radius: 34px;
  }
  .booboofv .fv_txtbox {
    top: 43%;
    width: 86%;
  }
  .booboofv .fv_dog_icon {
    left: -16px;
    bottom: 108px;
    width: 96px;
  }
  .booboofv .fv_cat_icon {
    right: -10px;
    bottom: 78px;
    width: 116px;
  }
  .booboofv .fv_search_btn {
    left: 4px;
    bottom: -78px;
    width: 108px;
  }
  .booboofv .fv_news {
    bottom: -28px;
    width: 92%;
  }
  .booboofv .fv_news a {
    gap: 12px;
    padding: 0 18px;
  }
  .booboofv .fv_news .title {
    display: none;
  }
  .booboofv .fv_scroll {
    display: none;
  }
  .fixed_reservation {
    right: 12px;
    bottom: 12px;
  }
  .fixed_reservation a {
    min-width: 150px;
    min-height: 48px;
    padding: 0 20px;
  }
}
/* ---------- newstop_b3 ---------- */
.newstop_b3 {
  position: relative;
}
.newstop_b3 .contents {
  width: min(1000px, 100%);
  margin-right: auto;
  margin-left: auto;
}
.newstop_b3 .webgene-blog {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}
.newstop_b3 .webgene-blog .webgene-item {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.newstop_b3 .webgene-blog .webgene-item a {
  display: block;
  text-decoration: none;
}
.newstop_b3 .webgene-blog .webgene-item a > .flex, .newstop_b3 .webgene-blog .webgene-item a .item {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
  min-width: 0;
  padding: 0;
}
.newstop_b3 .webgene-blog .webgene-item a .label {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(12px, 1.5vw, 18px);
  justify-content: flex-start;
}
.newstop_b3 .webgene-blog .webgene-item a .date {
  flex: 0 0 auto;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.newstop_b3 .webgene-blog .webgene-item a .catelabel {
  flex: 0 0 auto;
  padding: 1px 7px;
  border: 1px solid #777;
  box-sizing: border-box;
  line-height: 1.25;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.newstop_b3 .webgene-blog .webgene-item a h3 {
  flex: 1;
  min-width: 0;
  width: auto;
  letter-spacing: 0.04em;
}
.newstop_b3 .more1, .newstop_b3 .news_btn {
  margin-right: auto;
  margin-left: auto;
}
/* ---------- section04 news ---------- */
.news_section {
  position: relative;
  overflow: hidden;
}
.news_section .titlebox1 h2 span {
  color: #ef7fab;
}
.news_section .newstop_b3 .contents {
  width: min(1040px, 100%);
}
.news_section .newstop_b3 .webgene-blog .webgene-item a .item {
  gap: clamp(16px, 2.5vw, 34px);
}
.news_section .newstop_b3 .webgene-blog .webgene-item a .label {
  gap: clamp(12px, 1.6vw, 20px);
}
.news_section .newstop_b3 .webgene-blog .webgene-item a .catelabel {
  padding: 3px 12px;
  border: 1px solid rgba(123, 93, 80, 0.28);
  border-radius: 999px;
  line-height: 1.2;
}
.news_section .newstop_b3 .webgene-blog .webgene-item a h3 {
  letter-spacing: 0.06em;
}
.news_section .news_btn {
  width: fit-content;
  margin-top: clamp(34px, 4vw, 52px);
}
.newstop_b3, .newstop_b3 .contents, .newstop_b3 .webgene-blog, .newstop_b3 .webgene-blog .webgene-item, .newstop_b3 .webgene-blog .webgene-item a, .newstop_b3 .webgene-blog .webgene-item a > .flex, .newstop_b3 .webgene-blog .webgene-item a .item {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.newstop_b3 .webgene-blog .webgene-item a h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .newstop_b3 .contents {
    width: min(680px, 100%);
  }
  .newstop_b3 .webgene-blog .webgene-item a > .flex, .newstop_b3 .webgene-blog .webgene-item a .item {
    align-items: flex-start;
    gap: 14px;
  }
}
@media screen and (max-width: 576px) {
  .newstop_b3 .webgene-blog .webgene-item a > .flex, .newstop_b3 .webgene-blog .webgene-item a .item {
    display: block;
  }
  .newstop_b3 .webgene-blog .webgene-item a .label {
    margin-bottom: 8px;
  }
}
.service_section .service_title_en {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: clamp(4px, 1vw, 12px);
  width: 100%;
}
.service_section .service_title_en img {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 8vw, 110px);
}
.service_section .service_title_en h2 {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .service_section .service_title_en img {
    width: clamp(44px, 14vw, 72px);
  }
  .service_section .service_title_en h2 {
    font-size: clamp(28px, 8vw, 46px);
  }
 
      .service_section .service_title_en h2 {
    font-size: 26px;
  }
        .service_section .service_title_en img {
    width: 46px;
  }
    
}
@media screen and (max-width: 576px) {
.service_section .service_title_en img {
   display: none;
  }
    
}
/* 画像風の共通見出し */
.heading-ribbon {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 15px 11px;
  overflow: visible;
}


/* display:flexの影響を解除 */
.heading-ribbon .service_title_en {
  display: contents;
}

/* 日本語を上、英語を下にする */
.heading-ribbon .default_title4 {
  order: 1;
  display: flex;
  align-items: center;
  gap: 17px;
  margin: 0;
  color: #ff82a8;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .13em;
}

/* 左右の斜線 */
.heading-ribbon .default_title4::before,
.heading-ribbon .default_title4::after {
  content: "";
  display: block;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: #ff82a8;
}

.heading-ribbon .default_title4::before {
  transform: rotate(-29deg);
}

.heading-ribbon .default_title4::after {
  transform: rotate(29deg);
}
.heading-ribbon .entitle2 {
  order: 2;
  margin: 0;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .heading-ribbon {
    gap: 6px;
    padding-top: 12px;
  }

  .heading-ribbon .default_title4 {
    gap: 14px;
    font-size: 14px;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}