@charset "UTF-8";
/**********************************
top
***********************************/
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}
.hero .hero-splide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero .splide__track {
  height: 100vh;
  height: 100dvh;
}
.hero .splide__slide img {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  object-fit: cover;
  transform: scale(1);
  transition: transform 6s ease;
  will-change: transform;
}
.hero .splide__slide.is-active img {
  transform: scale(1.05);
}
/* heroエリアの本文 */
.hero-body {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  pointer-events: none;
  padding: 0 5%;
}
.hero-body * {
  pointer-events: auto;
}
.hero-title {
  font-size: var(--font_56);
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}
.hero-text,
.hero-text-en {
  margin-top: 10px;
  font-size: var(--font_25);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.hero-text-en {
  font-size: var(--font_16);
}
/* ニュースティッカー */
.news-ticker-splide {
  position: absolute;
  left: 0;
  bottom: 30px;
  z-index: 2;
  padding: 10px 2%;
  margin: 0 5%;
  color: #333;
  width: 42%;
  border-radius: 50vw;
  overflow: hidden;
  background: var(--ivory);
}
.news-ticker-splide .splide__track {
  pointer-events: auto;
  height: 2.6em;
}
.news-ticker-splide .splide__slide a {
  display: block;
  line-height: 2.6em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*ボタン*/
.news-ticker__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-ticker__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  flex: 1 1 auto; /* ← ここがタイトル側の可変幅 */
  min-width: 0; /* ← 省略記号を効かせるために必要 */
}
.news-ticker__date {
  font-feature-settings: "tnum";
  white-space: nowrap;
  color: var(--orange);
}
.news-ticker__title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* ← 長いタイトルは…で省略 */
}
.news-ticker__btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0em 20px;
  background: var(--orange);
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
  line-height: 1;
}
.news-ticker__btn:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .news-ticker-splide {
    width: 90%;
    padding: 10px 20px;
  }
  .news-ticker__btn {
    display: none !important;
  }
}
/**********************************
top > company
***********************************/
.company {
  padding-top: var(--space_80);
}
.company .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 20px;
  align-items: center;
}
.company-body {
  position: relative;
}
.company-body .bee {
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}
@media (max-width: 768px) {
  .company .inner {
    grid-template-columns: 1fr;
  }
  .company-body .bee {
    width: 40%;
  }
}
/**********************************
top > services
***********************************/
.services {
  padding-top: var(--space_120);
}
.services .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start !important;
  gap: 30px;
  align-items: center;
}
.service-card figure {
  position: relative;
}
.img-wrapper {
  border-radius: 16px;
  overflow: hidden;
}
.img-wrapper .img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}
.service-card .service-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 0 0 16px 16px;
}
.service-title {
  font-size: var(--font_20);
  font-weight: 700;
  margin: 0;
}
.service-card-label img {
  width: 35px;
  height: auto;
}
.services-btn {
  transition: transform 0.4s ease;
}

.service-card figure:hover .img {
  transform: scale(1.1);
}

.service-card figure:hover .services-btn {
  transform: scale(1.2);
}
/*サービス一覧*/
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  margin-top: 16px;
}
.service-item {
  position: relative;
  padding-left: 1.5em;
  font-size: var(--font_15);
  transition: opacity 0.3s ease;
}
.service-item:hover {
  opacity: 0.7;
}
.service-item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  color: var(--yellow);
  font-size: var(--font_20);
  line-height: 1.2;
}
@media (max-width: 1260px) {
  .service-list {
    display: none;
  }
}
@media (max-width: 768px) {
  .services .inner {
    grid-template-columns: 1fr;
  }
}
/**********************************
top > news
***********************************/
.news {
  padding-top: var(--space_120);
}
.news-body {
  text-align: center;
  position: relative;
}
.news-body .bee {
  position: absolute;
  top: -5px;
  left: 30%;
  width: 180px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}
.background-img {
  margin-top: 120px;
}
.article-container {
  margin-top: var(--space_40);
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.news .splide__slide {
  padding-bottom: 10px;
}
.article_item {
  background: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.article_item_link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* アイキャッチ */
.article_item_thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
.article_item_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 本文側 */
.article_item_body {
  background: transparent;
  border-radius: 0 0 10px 10px;
  padding: 16px 20px 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0, 0.2);
}
/* 日付・カテゴリ */
.article_list {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
}
.article_cat {
  padding: 0 12px;
  border: 1px solid #333;
  border-radius: 9999px;
  height: 26px;
  font-size: var(--font_14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.archive-content-title {
  font-size: var(--font_18);
  font-weight: 700;
  color: var(--brown);
  margin: 6px 0 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.archive-content-excerpt {
  font-size: var(--font_14);
  color: #333;
  line-height: 1.7;
  margin: 0 0 12px;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* ボタン */
.actions {
  margin-top: auto;
}
.top-post-btn {
  pointer-events: none;
  user-select: none;
}
.top-post-btn img {
  width: 26px;
  height: 26px;
}
/* ホバーアクション（画像） */
.article_item_link:hover .article_item_thumb img {
  transform: scale(1.05);
}
.article_item_thumb img {
  transition: transform 0.4s ease;
}
/* ホバーアクション（ボタン） */
.article_item_link:hover .top-post-btn img {
  transform: scale(1.2);
}
.top-post-btn img {
  transition: transform 0.3s ease;
}
/*スライダー矢印*/
.news-splide {
  position: relative;
}
.news-splide .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--orange, #ff9500);
  color: #fff;
  border: none;
  opacity: 1;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
  z-index: 3;
}
.news-splide .splide__arrow:hover {
  filter: brightness(0.95);
  transform: translateY(-50%) scale(1.04);
}
.news-splide .splide__arrow:active {
  transform: translateY(-50%) scale(0.98);
}
/* “inner”の外側へ少しはみ出させる（左右） */
.news-splide .splide__arrow--prev {
  left: -60px;
}
.news-splide .splide__arrow--next {
  right: -60px;
}
/* 矢印アイコン（SVG）サイズと色 */
.news-splide .splide__arrow svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
/*スライダーページネーション*/
.news-splide .splide__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 18px;
  padding: 0;
}
/* 各ボタンを横長ピルに */
.news-splide .splide__pagination__page {
  width: 28px;
  height: 5px;
  border-radius: 0% !important;
  background: #e6e6e6;
  opacity: 1;
  transform: none;
  transition: width 0.25s ease, background 0.25s ease;
}
.news-splide .splide__pagination__page:hover {
  background: #d9d9d9;
}
/* アクティブだけ少し長く＆色付け */
.news-splide .splide__pagination__page.is-active {
  width: 48px;
  background: var(--yellow);
}
/* キーボードフォーカスの視認性（アクセシビリティ） */
.news-splide .splide__pagination__page:focus-visible,
.news-splide .splide__arrow:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
@media (max-width: 1460px) {
  .news-splide .splide__arrow--prev {
    left: -20px;
  }
  .news-splide .splide__arrow--next {
    right: -20px;
  }
  .news-splide .splide__arrow {
    width: 30px;
    height: 30px;
  }
  .news-splide .splide__arrow svg {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 960px) {
  .background-img {
    margin-top: 60px;
  }
  .news-body .bee {
    left: 24%;
    width: 140px;
  }
}
@media (max-width: 640px) {
  .news-splide .splide__arrow {
    display: none;
  }
  .news-splide .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50% !important;
  }
  .news-splide .splide__pagination__page.is-active {
    width: 10px;
  }
  .news-body .bee {
    left: 12%;
    width: 120px;
  }
}
/**********************************
top > shop
***********************************/
.shop {
  padding-top: var(--space_120);
}
.shop-body {
  display: flex;
  column-gap: 60px;
  margin-bottom: var(--space_60);
}
.shop-body-info {
  width: 50%;
  min-width: 300px;
}
.shop-card {
  background: var(--gray);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: var(--font_14);
}
.shop-card-title {
  font-size: var(--font_16);
  font-weight: 700;
}
.shop-map {
  border-radius: 16px;
}
/*calendar*/
.simcal-calendar-head h3 {
  font-size: var(--font_34);
}
.simcal-default-calendar-dark .simcal-nav-button {
  color: #333 !important;
}
.simcal-calendar,
.simcal-calendar-grid {
  border: 1px solid #cecece;
  border-radius: 6px;
  overflow: hidden;
}
.simcal-calendar-grid .simcal-week,
.simcal-calendar-grid .simcal-day,
.simcal-calendar-grid .simcal-week-day {
  border-right: 1px solid #cecece;
  border-bottom: 1px solid #cecece;
}
.simcal-calendar-grid .simcal-week-day {
  border-top: 1px solid #cecece;
}
.simcal-calendar-grid .simcal-week:last-child .simcal-day {
  border-bottom: 0;
}
.simcal-calendar-grid .simcal-day:last-child {
  border-right: 0;
}
.simcal-align-right {
  display: none;
}
/* タップ無効（リンクも含む） */
td.simcal-events-calendar-74 .simcal-event.simcal-tooltip,
td.simcal-events-calendar-74 .simcal-event.simcal-tooltip * {
  pointer-events: none !important;
  cursor: default !important;
}
/* 詳細は常に非表示のまま */
td.simcal-events-calendar-74 .simcal-event-details,
td.simcal-events-calendar-74 .simcal-tooltip-content {
  display: none !important;
}
@media (max-width: 1260px) {
  .shop-body {
    column-gap: 30px;
  }
}
@media (max-width: 1070px) {
  .shop-body {
    flex-direction: column;
    row-gap: 40px;
  }
  .shop-body-info {
    width: 100%;
    min-width: auto;
  }
}
@media (max-width: 480px) {
  td.simcal-events-calendar-74 .simcal-event-details,
  td.simcal-events-calendar-74 .simcal-tooltip-content {
    display: none !important;
    visibility: hidden !important;
  }
  td.simcal-events-calendar-74 .simcal-event-start,
  td.simcal-events-calendar-74 .simcal-event-address,
  td.simcal-events-calendar-74 .simcal-event-details a {
    display: none !important;
  }
  td.simcal-events-calendar-74 .simcal-event-title {
    display: inline !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    line-height: 1.4;
  }
}
/**********************************
top > instagram
***********************************/
.instagram {
  padding-top: var(--space_120);
}
