/* バナーコーディング専用のCSSファイルです */
/* 店舗詳細ページ全体のCSSは「shopDetail.css」に記述されています。 */

/* -----------------------------------------------------------------
共通
----------------------------------------------------------------- */
/* NotoSans */
.noto-sans-jp {
  font-family: 'Noto Sans JP', sans-serif;
}

/* テキストカラー */
.text-white {
  color: white;
}

.text-light-green {
  color: #00ff5a;
}

/* フォントサイズ */
.font-size-40 {
  font-size: 40px;
}

.font-size-18 {
  font-size: clamp(15px, 3vw, 18px);
}

.font-size-16 {
  font-size: clamp(13px, 3vw, 16px);
}

.font-size-12 {
  font-size: clamp(11px, 2.5vw, 12px);
}

.font-size-11 {
  font-size: clamp(10px, 2vw, 11px);
}

/* フォントウェイト */
.font-weight-900 {
  font-weight: 900;
}

.font-weight-700 {
  font-weight: 700;
}

.font-weight-500 {
  font-weight: 500;
}

/* border */
.border-white {
  border: 1px solid #fff;
}

/* 中央揃え */
.text-center {
  text-align: center;
}

/* margin */
.mrauto {
  margin-right: auto;
}

.mlauto {
  margin-left: auto;
}

.mb-4 {
  margin-bottom: 4px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-12 {
  margin-bottom: 12px;
}

.mb-14 {
  margin-bottom: 14px;
}

/* padding */
.p-2 {
  padding: 2px;
}

.pl-8 {
  padding-left: 8px;
}

/* width */
.w-fit-content {
  width: fit-content;
}

.cursor-pointer {
  cursor: pointer;
}

/* -----------------------------------------------------------------
バナー大サイズ（shop_cont_banner）
----------------------------------------------------------------- */
/* 無料体験会 */
#trial_session {
  display: block;
  background-color: #141414;
  font-family: 'Noto Sans JP', sans-serif;
  padding: 20px 0;
  height: 670px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #trial_session {
    height: 700px;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (max-width: 480px) {
  #trial_session {
    height: 600px;
  }
}

#trial_session .index {
  width: fit-content;
  background-color: #5cb74f;
  position: absolute;
  height: 64px;
  padding: 0 10px;
}

#trial_session .index::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  border-top: 64px solid #5cb74f;
  border-right: 40px solid transparent;
}

#trial_session .mv {
  display: block;
  width: 80%;
  margin-left: auto;
}

#trial_session .content-wrap {
  background: linear-gradient(0deg, rgba(20, 20, 20, 1) 40%, rgba(20, 20, 20, 0) 100%);
  width: 90%;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  #trial_session .content-wrap {
    width: 85%;
  }
}

@media screen and (max-width: 480px) {
  #trial_session .content-wrap {
    width: 90%;
  }
}

#trial_session .shopDetailBtn_wrap {
  position: relative;
  z-index: 2;
}

#trial_session .shopDetailBtn {
  display: flex;
  align-items: center;
  justify-content: center;
}

#trial_session .balloon {
  width: fit-content;
  border-radius: 9999px;
  background-color: #373737;
  padding: 3px 10px 4px 10px;
  position: relative;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; /* ボタンより上 */
}

#trial_session .balloon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 8px 4px 0 4px;
  border-color: #373737 transparent transparent;
  transform: translate(-50%, 100%);
}
