@charset "UTF-8";

/* ルートフォント */
:root {
  --bs-font-sans-serif: "Murecho", serif;
  /*--bs-font-sans-serif: "M PLUS Rounded 1c", Arial, sans-serif;*/
}

html {
  scroll-behavior: smooth;
}

/* メインコンテンツの余白 */
main {
  margin-top: 95px;
}

/* ボディ設定 */
body {
  min-width: 375px;
  background-color: #fff3e0;
}

/* インフォメーションバー：完全固定 */
.info-bar {
  min-width: 375px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #453c2e;
  color: #ffffff;
  padding: 5px 10px;
  z-index: 1050;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

info-tel {
  font-size: 14px;
  font-weight: bold;
  text-align: right;
}

/* グロナビ：info-barの高さ分下げる */
.luxbar-fixed {
  min-width: 375px;
  position: fixed;
  top: 31px;
  width: 100%;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
  background-color: #333;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.luxbar {
  height: 58px;
  min-width: 375px;
}

.luxbar-item a {
  color: white;
  text-decoration: none;
}

/* カルーセル全体 */
.swiper-container {
  width: 100%;
  height: 70vh;
  position: relative;
  overflow: hidden;
}

/* スライドの見せ方（中央を大きく、左右をプレビュー） */
.swiper-slide {
  width: 85%;
  opacity: 0.5;
  transform: scale(0.9);
  transition: transform 0.3s, opacity 0.3s;
  background-size: cover;
  background-position: center;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

/* アクティブスライドを強調 */
.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);*/
}

/* キャプション（テキスト＋ボタン） */
.slide-caption {
  position: absolute;
  bottom: 3%;
  left: 5%;
  padding-right: 5%;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  z-index: 2;
}

.slide-caption h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-caption p {
  font-size: 1rem;
  margin-bottom: 15px;
}

/* CTAボタン */
.cta-btn {
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #ff6600;
  color: white;
}

/* ナビゲーションボタン */
.swiper-button-next,
.swiper-button-prev {
  color: white;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #333;
}

/* ページネーション */
.swiper-pagination {
  bottom: 5%;
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  opacity: 1;
  transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #fff;
}

/* カスタム下線 */
.custom-underline {
  height: 4px;
  background-color: #93806f;
  width: 3rem;
  display: block;
  margin: 0 auto 20px;
}

/* 見出し1 */
.heading05 {
  position: relative;
  padding-bottom: 50px;
  font-size: 26px;
  text-align: center;
}

.heading05::before {
  content: attr(data-en);
  display: block;
  color: #ffc310;
  font-size: 20px;
  font-style: italic;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.heading05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
  width: 1px;
  height: 40px;
  background-color: #ffc310;
}

/* 見出し2 */
.heading07 {
  position: relative;
  padding-top: 50px;
  padding-left: 30px;
  font-size: 26px;
  z-index: 2;
  /* テキストを前面に */
}

.heading07 span {
  position: relative;
  z-index: 2;
}

.heading07::before {
  content: attr(data-en);
  position: absolute;
  transform: rotate(-5deg);
  top: -10px;
  left: 0;
  color: #ffc310;
  font-size: 80px;
  font-weight: 400;
  font-family: "Nerko One", serif;
  font-style: italic;
  z-index: -1;
  /* 後ろに配置 */
}

/* 文字幅調整 */
.ls-1 {
  letter-spacing: 0.05rem;
}

/* ちょっと広げる */
.ls-2 {
  letter-spacing: 0.1rem;
}

/* 少し広め */
.ls-3 {
  letter-spacing: 0.15rem;
}

/* 中くらい */
.ls-4 {
  letter-spacing: 0.2rem;
}

/* かなり広め */
.ls-5 {
  letter-spacing: 0.3rem;
}

/* 最大 */

/* 行間調整 */
.lh-1 {
  line-height: 1.2;
}

/* ちょっと狭め */
.lh-2 {
  line-height: 1.4;
}

/* 少し広め */
.lh-3 {
  line-height: 1.6;
}

/* 標準的（Bootstrapのデフォルトとほぼ同じ） */
.lh-4 {
  line-height: 1.8;
}

/* ゆったり */
.lh-5 {
  line-height: 2;
}

/* 最大（かなり広め） */

/* 小さい画面でも右寄せを維持 */
@media (max-width: 768px) {
  .info-bar {
    justify-content: flex-end;
  }
}

.HeadTitle {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.HeadTitle p {
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 60px;
  text-align: left;
  line-height: 1;
  z-index: 2;
  color: #333;
  animation: fadeInText 1.5s ease-in-out forwards;
  opacity: 0;
}

.HeadTitle p span {
  margin-left: 40px;
  font-size: 24px;
  white-space: nowrap;
  color: #1e1e1e;
  animation: fadeInText 1.5s ease-in-out forwards 0.5s;
  opacity: 0;
}

.HeadTitle p span:before {
  content: "";
  width: 20px;
  height: 5px;
  margin-right: 30px;
  display: inline-block;
  background: #C80000;
  vertical-align: middle;
}

.HeadTitle .titShadow {
  font-family: "M PLUS 1p", "Shin Go Bold", sans-serif !important;
  font-weight: 900;
  width: 100%;
  max-width: 2400px;
  display: block;
  color: #fcfcfc;
  font-size: 184px;
  letter-spacing: 0;
  text-align: right;
  line-height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: slideInShadow 2s ease-in-out forwards;
  transform: translateX(100%);
  opacity: 0;
}

@keyframes fadeInText {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInShadow {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes backgroundAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@media (max-width: 767px) {
  .HeadTitle {
    padding: 40px 0;
  }

  .HeadTitle p {
    width: 90%;
    margin: 0 6%;
    padding: 0;
    display: block;
    position: relative;
    font-size: 50px;
  }

  .HeadTitle p span {
    display: block;
    margin-top: 10px;
  }

  .HeadTitle .titShadow {
    font-size: 80px;
  }
}



.fluid-text {
  /* ～md未満*/
  font-size: 0.875rem;

}

@media (min-width: 768px) {
  .fluid-text {
    font-size: 1rem;
  }
}