/* ============================================
   fa_style.css - エイムフェイス専用スタイル
   ネイビー × ピンク × LINEグリーン
   ============================================ */

/* --- カラー変数 --- */
:root {
  --navy:       #1A2340;
  --navy-dark:  #0d1424;
  --navy-mid:   #243056;
  --navy-light: #EEF1F7;
  --pink:       #e63077;
  --line-green: #00B900;
  --line-dark:  #007a00;
  --white:      #ffffff;
  --gray:       #585555;
}

/* ============================================
   ヘッダー・通常ボタン（ネイビー）
   ============================================ */
.btnArea a {
  background: var(--navy);
  border: 1px solid var(--navy);
}
.btnArea a:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}



/* ============================================
   セクションタイトル
   ============================================ */
.ttl .txt h2 {
  color: var(--navy);
}
.secStep .ttl h2,
.secLocation .ttl h2 {
  color: var(--navy);
}

/* ============================================
   サービスセクション背景
   ============================================ */
.secService {
  background-color: var(--navy-light);
}

/* h3：背景削除・左縦ライン */
.secService .content .txt h3 {
  border-left: none;
  border-image: none;
  padding-left: 14px;
  margin-bottom: 16px;
  position: relative;

}

.secService .content .txt h3 span {
   display: block;
  font-size: 0.75em;
  color: var(--pink);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  background: none;
  padding: 0;
  line-height: 1.4em;
  width: auto;

}
.secService .content .txt h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--pink), #000000);
  border-radius: 2px;
}

/* 本文spanの背景を削除 */
.txt p span {
  background-color: transparent;
  color: inherit;
}

/* ============================================
   CTAボタン（見学ボタン）
   ============================================ */

/* LINE用カラー */
.secCta .btnCta {
  background: var(--line-green);
  box-shadow: 0px 10px 0px 0px var(--line-dark);
}
.secCta .btnCta:hover {
  box-shadow: 0px 2px 0px 0px var(--line-dark);
}
/* 見学ボタンのみネイビーを維持 */
.secCta .btnCta--navy {
  background: var(--navy);
  box-shadow: 0px 10px 0px 0px var(--navy-dark);
}
.secCta .btnCta--navy:hover {
  box-shadow: 0px 2px 0px 0px var(--navy-dark);
}
/* LINEアイコンサイズ */
.line-icon {
  width: 80px;
  height: 80px;
}




/* ============================================
   box_price背景
   ============================================ */
.box_price_color1 {
  background-color: var(--navy-light);
}

/* ============================================
   フッター
   ============================================ */
footer {
  background-color: var(--navy);
}

/* ============================================
   価格セクション
   ============================================ */
.fa-price-section {
  background: var(--white);
  padding: 60px 20px;
}

.fa-price-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル：ピンク文字・下線グラデーション */
.fa-price-title {
  display: inline-block;
  color: var(--pink);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 32px;
  letter-spacing: 0.12em;
  line-height: 1.2;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, var(--navy), var(--pink)) 1;
  padding-bottom: 8px;
}

/* 設備タグ：四角＋ドロップシャドウ */
.fa-facilities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fa-facility-tag {
  background: var(--white);
  color: var(--navy);
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 4px;
  letter-spacing: 0.1em;
  box-shadow: 4px 4px 0px var(--navy);
  border: 2px solid var(--navy);
  transition: 0.2s;
}

.fa-facility-tag:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px var(--navy);
}

/* 注釈 */
.fa-note {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
  margin-bottom: 36px;
  padding-right: 4px;
}

/* 価格ボックス */
.fa-price-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 36px 40px;
  margin: 0 auto 20px;
  max-width: 560px;
  position: relative;
  overflow: hidden;
}

.fa-price-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.fa-price-box::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

/* すべて使える！：ピンク文字 */
.fa-alluse-text {
  color: var(--pink);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  display: block;
  text-align: left;
}

.fa-price-label {
  color: rgba(255,255,255,0.6);
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0.15em;
  margin-bottom: 0;
}

.fa-price-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 24px;
  min-width: 80px;
}

.fa-price-main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  margin-bottom: 16px;
}

.fa-price-yen-label {
  color: rgba(255,255,255,0.7);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1;
  align-self: flex-end;
  padding-bottom: 10px;
}

.fa-price-number {
  color: var(--white);
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: "Roboto", sans-serif;
}

.fa-price-unit {
  color: rgba(255,255,255,0.7);
  font-size: clamp(13px, 1.5vw, 16px);
  align-self: flex-end;
  padding-bottom: 10px;
  margin-left: 6px;
}

.fa-price-compare {
  color: rgba(255,255,255,0.45);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.05em;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 14px;
}

.fa-price-compare span {
  background: none;
  color: rgba(255,255,255,0.45);
  text-decoration: line-through;
}

/* ============================================
   LINEボタンセクション（ページ内）
   ============================================ */
.fa-line-section {
  background: var(--navy-light);
  padding: 70px 20px 80px;
}

.fa-line-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.fa-line-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.fa-line-sub {
  font-size: clamp(13px, 1.5vw, 15px);
  color: var(--gray);
  margin-bottom: 36px;
  line-height: 1.8;
}

.fa-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--line-green);
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  padding: 22px 48px;
  border-radius: 60px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 8px 0 var(--line-dark);
  transition: 0.3s;
  position: relative;
  top: 0;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.fa-line-btn:hover {
  top: 6px;
  box-shadow: 0 2px 0 var(--line-dark);
  opacity: 1;
}

.fa-line-btn svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
  flex-shrink: 0;
}

/* ============================================
   レスポンシブ（スマホ）
   ============================================ */
@media only screen and (max-width: 767px) {

  .fa-price-section {
    padding: 40px 16px;
  }

  .fa-price-title {
    font-size: clamp(22px, 7vw, 32px);
    margin-bottom: 24px;
  }

  .fa-facility-tag {
    font-size: clamp(13px, 3.8vw, 16px);
    padding: 10px 18px;
    box-shadow: 3px 3px 0px var(--navy);
  }

  .fa-price-box {
    padding: 28px 20px;
    border-radius: 16px;
    max-width: 100%;
  }

  .fa-alluse-text {
    font-size: clamp(14px, 4.5vw, 18px);
  }

  .fa-price-number {
    font-size: clamp(48px, 15vw, 72px);
  }

  .fa-line-section {
    padding: 50px 16px 60px;
  }

  .fa-line-btn {
    font-size: clamp(16px, 5vw, 20px);
    padding: 18px 32px;
    gap: 10px;
  }

  .fa-line-btn svg {
    width: 28px;
    height: 28px;
  }
  .secCta .btnCta {
    height: 80px !important; 
  }
   .line-icon {
    width: 45px !important;
    height: 45px !important;
  }
}
