/* assets/css/style.css */

/*------------------------------------
 共通設定
------------------------------------*/
/* 全体の基本スタイル */
html,
body {
  overflow-x: hidden;
}

body {
  font-family: "a-otf-ryumin-pr6n", serif;
  position: relative; /* TOP以外のヘッダー画像用に必要 */
  line-height: 1.75;
}

/* カラーテーマ（Bootstrap拡張） */
:root,
[data-bs-theme="light"] {
  --bs-danger: #810f00;
  --bs-dark: #000000;
  --bs-danger-rgb: 129, 15, 0;
  --bs-dark-rgb: 0, 0, 0;
  --bs-warning: #efe1a8;
  --bs-warning-rgb: 239, 225, 168;
}

/*------------------------------------
 スクロールアニメーション（初期状態）
------------------------------------*/
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* 各アニメーションの開始位置 */
[data-animate="fade-in"] {
  transform: translate(0, 0);
} /* 透明→表示 */
[data-animate="slide-up"] {
  transform: translateY(20px);
} /* 下から */
[data-animate="slide-down"] {
  transform: translateY(-20px);
} /* 上から */
[data-animate="fade-right"] {
  transform: translateX(50px);
} /* 右から */
[data-animate="fade-left"] {
  transform: translateX(-50px);
} /* 左から */
[data-animate="zoom-in"] {
  transform: scale(0.8);
} /* 小さく→等倍 */
[data-animate="zoom-out"] {
  transform: scale(1.2);
} /* 大きく→等倍 */

/* 表示状態になったとき */
[data-animate].in-view {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/*------------------------------------
 ネガティブマージンユーティリティ（Bootstrap相当）
------------------------------------*/
.mt-n1 {
  margin-top: -0.25rem !important;
}
.mt-n2 {
  margin-top: -0.5rem !important;
}
.mt-n3 {
  margin-top: -1rem !important;
}
.mt-n4 {
  margin-top: -1.5rem !important;
}
.mt-n5 {
  margin-top: -3rem !important;
}
.mb-n1 {
  margin-bottom: -0.25rem !important;
}
.mb-n2 {
  margin-bottom: -0.5rem !important;
}
.mb-n3 {
  margin-bottom: -1rem !important;
}
.mb-n4 {
  margin-bottom: -1.5rem !important;
}
.mb-n5 {
  margin-bottom: -3rem !important;
}
.ms-n1 {
  margin-left: -0.25rem !important;
}
.ms-n2 {
  margin-left: -0.5rem !important;
}
.ms-n3 {
  margin-left: -1rem !important;
}
.ms-n4 {
  margin-left: -1.5rem !important;
}
.ms-n5 {
  margin-left: -3rem !important;
}
.me-n1 {
  margin-right: -0.25rem !important;
}
.me-n2 {
  margin-right: -0.5rem !important;
}
.me-n3 {
  margin-right: -1rem !important;
}
.me-n4 {
  margin-right: -1.5rem !important;
}
.me-n5 {
  margin-right: -3rem !important;
}

/*------------------------------------
 レイアウトの基本
------------------------------------*/
img {
  max-width: 100%;
  width: auto;
}

section {
  padding: 6% 0;
}

/*------------------------------------
 汎用クラス
------------------------------------*/
.logoSP {
  margin-bottom: 100px;
}
.text-br {
  color: #9a8d75;
}
.text-red {
  color: red;
}

.bg-light {
  background: #f7f7f7;
}
.badge {
  border-radius: 0;
}
.container {
  max-width: 1100px;
}

@media (min-width: 992px) {
  .w-1000 {
    max-width: 1000px;
    width: 90.91%;
  }
  .border-start-md {
    border-left: 1px solid var(--bs-border-color) !important;
  }
  .border-end-md {
    border-right: 1px solid var(--bs-border-color) !important;
  }
}

/* メインタイトル */
.main-title {
  color: #b96b80;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.main-title::before {
  content: "+";
  font-weight: 600;
  margin-right: 10px;
  display: inline-block;
}
.main-title span {
  display: block;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 20px;
}
.main-title-special span {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
}
.main-txt {
  font-size: 1rem;
}
/* カテゴリタイトル */
.cat-title {
  position: relative;
  color: #000;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin-bottom: 25px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.1rem;
}
.cat-title::after {
  content: "";
  display: block;
  background: #000;
  height: 1px;
  width: 100%;
}
.cat-title span:first-child {
  display: block;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 1.5rem;
  margin-top: 7px;
  letter-spacing: 0.05rem;
}
.cat-title span:last-child {
  display: block;
  font-family: "a-otf-ryumin-pr6n", serif;
  font-size: 0.9rem;
  margin-top: 7px;
  padding-bottom: 14px;
  letter-spacing: 0.05rem;
}
.cat-title-special span {
  position: relative;
  display: inline-block;
  margin: 0 1rem;
}
.cat-txt {
  font-size: 1rem;
}
.tit-pink {
  color: #c63e53;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .tit-pink {
    margin-bottom: 20px;
  }
}
.text-pink {
  color: #b96b80;
}
.bg-pink {
  background: #b96b80;
}
.or {
  position: relative;
}
.or:before {
  position: absolute;
  text-align: center;
  margin: auto;
  right: 0;
  left: 0;
  top: 25%;
  display: inline-block;
  height: 70px;
  width: 70px;
  content: "";
  background: url(../images/equipment/or.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .or:before {
    position: absolute;
    text-align: center;
    margin: auto;
    right: 0;
    left: 0;
    top: 43%;
    display: inline-block;
    height: 50px;
    width: 50px;
    content: "";
    background: url(../images/equipment/or.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}
.box {
  border: 1px solid #c63e53;
  padding: 25px;
}
.bg-concept {
  background: url(../images/concept/concept_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* ふきだし */
.fk-right {
  position: relative;
  border-radius: 0.15rem;
  padding: 5px;
}
.fk-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -16px;
  margin-top: -8px;
  border: 8px solid transparent;
  border-left: 8px solid #fff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .ps-step {
    padding-left: calc(78px + 1.25rem);
  }
}
/* 「もっと見る」ボタン */
.btnMore {
  font-weight: bolder;
  font-size: 1.5rem;
  color: #2d2929;
  font-family: "futura-pt", sans-serif;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

/* 画像ボタン（白枠付き） */
a.image-button {
  position: relative;
  display: inline-block;
  width: 570px; /* 任意サイズに調整可能 */
  max-width: 95%;
  border-radius: 8px;
  overflow: hidden;
}
a.image-button img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
a.image-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px); /* 枠線の太さ分だけ内側に縮める */
  height: calc(100% - 6px);
  margin: 3px; /* 枠線の太さ */
  border: 3px solid white; /* 白い枠線 */
  border-radius: 6px;
  pointer-events: none;
  z-index: 2;
}
a.image-button:hover img {
  transform: scale(1.05);
  filter: brightness(1.3); /* 明るさUP */
}

/*------------------------------------
 ヒーローセクション（各ページのMV）
------------------------------------*/
.hero-section {
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1920 / 657;
}
.hero-section.top {
  background: url(../images/top/mv.jpg);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1920 / 480;
}
.hero-section.concept {
  background: url(../images/concept/conceptMv.jpg);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1100 / 550;
}
.hero-section.layout {
  background: url(../images/layout/mv.webp);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1100 / 550;
}
.hero-section.equipment {
  background: url(../images/equipment/equipmentmv.png);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1100 / 550;
}
.hero-section.location {
  background: url(../images/location/locationmv.png);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1100 / 550;
}
.hero-section.plan {
  background: url(../images/plan/mv.webp);
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1100 / 550;
}

.parking::before {
  content: "P";
  display: inline-block;
  color: #fff;
  background: #000;
  font-size: 0.8rem;
  padding: 0.1rem 0.5rem;
  margin-right: 10px;
}
.time::before {
  content: "営業時間";
  display: inline-block;
  color: #fff;
  background: #000;
  font-size: 0.8rem;
  padding: 0.1rem 0.5rem;
  margin-right: 10px;
}
/*------------------------------------
 インスタグラム
------------------------------------*/

.insta_list li img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

@media screen and (max-width: 768px) {
  .insta_list li img {
    width: 100%;
    object-fit: cover;
  }
  .insta_list li img {
    width: 100%;
    height: 54vw;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
}
.insta_list li:hover img {
  transform: scale(1.1); /* 拡大 */
}
.insta_list li a {
  border: 1px solid #ccc;
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.insta_btn {
  background-color: #e3c1bc;
  color: #fff;
  width: 200px;
  text-align: center;
  padding: 0.5rem 2rem;
  margin: 60px auto;
  cursor: pointer;
  transition: 0.3s;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}

.insta_btn a {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.insta_btn:hover {
  background-color: rgb(209, 169, 169);
}

/*------------------------------------
 レスポンシブ調整
------------------------------------*/
@media screen and (max-width: 991px) {
  .hero-section {
    background-position: top;
    background-size: cover;
    aspect-ratio: 750 / 750;
  }

  /* SP用背景画像 */
  .hero-section.top {
    background: url(../images/top/mvSP.webp);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 750 / 1370;
  }
  .hero-section.concept {
    background: url(../images/concept/conceptMvSP.jpg);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 750 / 550;
  }
  .hero-section.layout {
    background: url(../images/layout/mv.webp);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1100 / 550;
  }
  .hero-section.equipment {
    background: url(../images/equipment/equipmentmv.png);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1100 / 550;
  }
  .hero-section.location {
    background: url(../images/location/locationmv.png);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1100 / 550;
  }
  .hero-section.plan {
    background: url(../images/plan/mv.webp);
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1100 / 550;
  }
}

@media screen and (max-width: 768px) {
  .mainVisual img,
  figure .mainVisual {
    object-fit: cover;
    height: 70vw;
  }
  .mb-5.pb-5 {
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
  .my-5.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }
}
