@charset "UTF-8";
/* 変数 */
:root {
  /* 左右の余白 */
  --side: 6vw;
}
/* サイズの基準： 1rem = 100px */
:root {
  font-size: 100px;
}
@media screen and (min-width: 768px), print {
  :root {
    font-size: 7.32vw;
  }
}
/* テキストの基本設定 */
body {
  color: #333;
  font-size: 0.16rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
}
.sp-no {
  display: none !important;
}
.pc-no {
  display: block !important;
}
@media screen and (min-width: 768px), print {
  .sp-no {
    display: block !important;
  }
  .pc-no {
    display: none !important;
  }
}
/* リセット / ノーマライズ / サニタイズ */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
figure {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* 背景 */
body {
  background-color: #f7e9e1;
  overflow-x: hidden;
}
/* ヒーロー */
/* .hero {
  background-image: url("1000002184.jpg");
  background-position: center;
  background-size: contain;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
} */
.hero3-container {
  margin: 0 0 60px 0;
}

.hero > p {
  font-size: 0.26rem;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 160px;
  left: var(--side);
}

/* html,
body,
.hero {
  height: 100%;
} */
body {
  overflow-y: scroll;
}
@media screen and (min-width: 768px), print {
  .hero {
    justify-content: flex-end;
  }
  .hero h1 {
    width: 50%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .hero3-container {
    margin: 0 0 20px 0;
  }
}
/* ヒーロー： 矢印 */
.hero {
  position: relative;
  padding-top: 25%;
}
/* ヘッダー */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  box-sizing: border-box;
  padding-left: var(--side);
  padding-right: var(--side);
}

/* ヘッダー： サイト名 */
.site img {
  width: 2rem;
}
/* ヘッダー： LINEボタン */
.btn_line {
  position: absolute;
  top: 50px;
  right: 0;
}
.btn_line img {
  width: 46px;
}
@media screen and (min-width: 768px), print {
  .site img {
    width: 2.4rem;
  }
  .btn_line img {
    width: 100%;
  }
}
/* ナビゲーションボタン */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 29px;
  height: 20px;
  overflow: visible; /* IE対応 */
  cursor: pointer;
  color: #fff;
}
.nav-button::before,
.nav-button::after {
  content: "";
  display: block;
  height: 1px;
  background-color: currentColor;
  transform: translateY(10px);
  transition: 0.3s ease-in-out;
}
.nav-button::before {
  transform: translateY(-10px);
  box-shadow: 0 10px currentColor;
}

@media (max-width: 767px) {
  /* ナビゲーションボタン（閉じるボタン） */
  .open .nav-button {
    z-index: 1000;
  }
  .open .nav-button::before {
    transform: rotate(-45deg);
    box-shadow: none;
  }
  .open .nav-button::after {
    transform: rotate(45deg);
    box-shadow: none;
  }
  /* ナビゲーションメニュー: （開いた状態） */
  html.open,
  .open body {
    height: 100%;
    overflow: hidden;
  }
  .open .header {
    position: relative;
    margin-bottom: -100px;
  }
  .open .nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .open .nav ul {
    margin-bottom: 10vh;
    list-style: none;
  }
  .open .nav li:not(:last-child) {
    margin-bottom: 20px;
  }
}
/* ナビゲーションメニュー（閉じた状態） */
.nav {
  width: 0;
  height: 0;
  position: absolute;
  left: 100%;
  overflow: hidden;
  color: transparent;
  transition: 0.5s ease-in-out;
}
/* ナビゲーションメニュー（PC）*/
@media screen and (min-width: 768px), print {
  .nav-button {
    display: none;
  }
  .nav {
    position: relative;
    left: auto;
    width: auto;
    height: auto;
  }
  .nav ul {
    display: flex;
    list-style: none;
    color: #fff;
  }
  .nav ul li:not(:first-child) {
    margin-left: 0.55rem;
  }
  .nav li {
    text-align: center;
  }
  .nav li span {
    display: block;
    font-size: 0.14rem;
  }
}
/* ---------- コンテンツ  ----------  */
/* コンテナ */
.container {
  padding: 0.68rem var(--side);
}
@media screen and (min-width: 768px), print {
  .container.menu,
  .container.news {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
/* コンテナ： タイトルとサブタイトル */
.container h2 {
  font-family: "Lora", serif;
  margin-bottom: 30px;
  font-size: 0.26rem;
  letter-spacing: 0.179em;
  text-transform: uppercase;
  color: #b58b3a;
}
@media screen and (min-width: 768px), print {
  .container h2 {
    font-size: 0.42rem;
  }
}
/* フッター */
.footer {
  background-color: #f3ede4;
  color: #333;
}
.footer_inner {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: var(--side);
  padding-right: var(--side);
}
.footer_logo {
  text-align: center;
  padding-bottom: 20px;
}
.footer_logo img {
  width: 2.2rem;
}
@media screen and (min-width: 768px), print {
  .footer_box {
    display: flex;
    align-items: flex-end;
    line-height: 1.5;
    margin-top: 60px;
  }
  .footer_box > div:last-of-type {
    margin-left: auto;
  }
  .footer_logo {
    padding-bottom: 0;
    margin-right: 30px;
  }
}
/* TOPコンテンツ */
.btn {
  margin-top: 20px;
}
.btn_center a {
  margin-left: auto;
  margin-right: auto;
}
.btn a {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 0.1rem 0.4rem;
  font-weight: bold;
  border: 2px solid #b58b3a;
  color: #ffffff;
  border-radius: 100vh;
  transition: 0.3s;
  background: #b58b3a;
}
.btn a:hover {
  background: #9c7428;
  border-color: #9c7428;
  color: #ffffff;
}
.btn_w a {
  border: 2px solid #fff;
  color: #fff;
}
.btn_w a:hover {
  color: #b58b3a;
  background: #ffffff;
}

@media screen and (min-width: 768px), print {
  .btn a {
    width: 320px;
  }
}
.concept_box {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.concept_box_txt p {
  font-weight: bold;
}
@media screen and (min-width: 768px), print {
  .concept_box {
    justify-content: center;
    align-items: center;
  }
  .concept_box > div {
    flex: 1;
  }
  .concept_box_img > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .concept_box_txt {
    margin-left: 30px;
  }
  .concept_box_txt p {
    line-height: 2.8;
    letter-spacing: 2px;
  }
}

.about_box {
  background-color: #f7f2f3;
  color: black;
  margin-top: 10px;
}
.about_box h3 {
  color: black;
  line-height: 1.4;
  letter-spacing: 0;
}
.about_box_img {
  width: 100%;
  height: 300px;
  background-image: url(images/top_about_bg.jpg);
  background-size: cover;
  background-position: center;
}

.message h2 {
  text-align: center;
  margin: 60px 0 30px 0;
}

.message p {
  text-align: center;
}
.about .container {
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin: 10px auto;
}
.about .container .image {
  width: 80%; /* 画面幅の80% */
  max-width: 800px; /* 大きすぎないよう上限を設定（任意） */
  height: auto; /* アスペクト比を保つ */
}

/* スマホ向け調整 */
@media (max-width: 600px) {
  .image-container img {
    width: 95%; /* スマホではより広く表示 */
    max-width: none;
  }
}

.animation h2 {
  text-align: center;
  margin: 60px 0 30px 0;
}

.animation .container {
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin: 10px auto;
}

/* スマホ向け調整 */
@media (max-width: 600px) {
  .image-container img {
    width: 95%; /* スマホではより広く表示 */
    max-width: none;
  }
}

@media screen and (min-width: 768px), print {
  .about_box {
    display: flex;
  }
  .about_box_img {
    width: 50%;
    flex: 0 0 50%;
    height: auto;
  }

  .about_box_txt {
    width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
  }
  .about_box h2 {
    font-size: 0.32rem;
  }
}
.top_nayami h2 {
  line-height: 1.4;
}
.nayami_box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin-top: -20px;
}
.nayami_box + .nayami_box {
  margin-top: 10px;
}
.nayami_box > li {
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px), print {
  .top_nayami h2 {
    text-align: center;
    font-size: 0.32rem;
  }
  .nayami_box {
    justify-content: center;
    margin-right: -20px;
  }
  .nayami_box > li {
    width: 257px;
    margin-right: 20px;
  }
}
.lineup_box {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin-top: -20px;
}
.lineup_box > li {
  margin-top: 20px;
  width: calc((100% - 20px) / 2);
}
.lineup_box > li p {
  text-align: center;
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .lineup_box > li {
    margin-top: 20px;
    width: calc((100% - 80px) / 4);
  }
  .lineup_box > li img {
    width: 100%;
  }
}
.top_voice {
  background-image: url(images/top_voice_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  color: #fff;
}
.top_voice h2 {
  color: #fff;
}

.voice_box_img {
  text-align: center;
  margin: 0 0 0 30px;
}
.voice_box_img > img {
  width: 100%;
  height: auto;
}
.voice_box + .voice_box {
  margin-top: 30px;
}
.voice_box h3 {
  padding: 10px 0;
}
.page {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding: 20px 16px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px), print {
  .voice_box {
    display: flex;
  }
  .voice_box_img {
    flex: 0 0 270px;
  }
  .voice_box_txt {
    flex-grow: 1;
    margin-left: 60px;
    margin-right: 60px;
  }
  .voice_box + .voice_box {
    margin-top: 60px;
  }

  @media screen and (max-width: 767px) {
    body {
      padding-left: 16px;
      padding-right: 16px;
      box-sizing: border-box;
    }
  }

  @media screen and (max-width: 767px) {
    .voice_box {
      display: block;
    }

    .voice_box_img {
      width: 100%;
      margin-bottom: 12px;
    }
  }

  /* ===== スマホ：Voiceの本文が細くなるのを強制解消 ===== */
  @media screen and (max-width: 767px) {
    /* まず横並び/幅固定を全部解除 */
    .voice_box {
      display: block !important;
      width: 100% !important;
      max-width: none !important;
    }

    .voice_box_img {
      float: none !important;
      flex: none !important;
      width: 100% !important;
      max-width: none !important;
      margin: 0 0 12px 0 !important;
    }

    .voice_box_txt {
      width: 100% !important;
      max-width: none !important;
      margin: 0 !important; /* 左右の余白で細くなるのを防ぐ */
    }

    /* 画像は a の中に入ってるので、こっちが正しい指定 */
    .voice_box_img img {
      display: block !important;
      width: 100% !important;
      height: auto !important;
    }

    /* ページ全体の左右余白（読みやすさ） */
    body {
      padding-left: 16px;
      padding-right: 16px;
      box-sizing: border-box;
    }
  }
  @media screen and (max-width: 767px) {
    main,
    article,
    section {
      max-width: none !important;
      width: 100% !important;
    }
  }
}
.top_access h3 {
  margin-top: 20px;
}
.map {
  margin-top: 30px;
}
@media screen and (max-width: 767px), print {
  .map {
    width: 100%;
    position: relative;
    padding-top: 56.25%;
  }
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 768px), print {
  .map iframe {
    width: 100%;
    height: 420px;
  }
}
/* メリット */
.top_merit .btn {
  margin-top: 90px;
}
.alternate .alternate__thumb {
  margin-left: calc(var(--side) * -1);
  margin-right: 0;
}
.alternate._reverse .alternate__thumb {
  margin-right: calc(var(--side) * -1);
  margin-left: 0;
}
.alternate__ttl {
  margin-bottom: 20px;
  color: #b58b3a;
  font-size: 0.2rem;
}
@media screen and (min-width: 768px), print {
  .alternate__ttl {
    font-size: 0.24rem;
  }
}
.alternate {
  display: flex;
  flex-direction: column-reverse;
}
.alternate + .alternate {
  margin-top: 30px;
}
.alternate__body {
  padding: 30px;
  background: #f2dfd8;
}

/*.alternate__ttl {
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.2em;
}
.alternate__sttl {
	display: block;
	font-size: 10px;
}
.alternate__txt {
	margin-top: 20px;
	line-height: 1.7;
}*/
.alternate__thumb img {
  max-width: none;
  width: 100%;
}
/*ずらし用の指定*/
@media screen and (max-width: 767px) {
  .alternate__body {
    margin-top: -40px;
    padding-top: 60px;
  }
  .alternate._normal .alternate__thumb {
    margin-left: -20px;
  }
  .alternate._normal .alternate__body {
    margin-right: -20px;
  }
  .alternate._reverse .alternate__thumb {
    margin-right: -20px;
  }
  .alternate._reverse .alternate__body {
    margin-left: -20px;
  }
}
@media screen and (min-width: 768px), print {
  .alternate {
    flex-direction: row-reverse;
    /* border: 1px solid red; */
  }
  .alternate + .alternate {
    margin-top: 100px; /*メディアスクリーン後続ボックスとの余白を確保*/
  }
  .alternate._reverse {
    flex-direction: row;
  }
  .alternate__body {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .alternate__thumb {
    width: 60%;
  }
  .alternate__thumb img {
    height: 100%;
    object-fit: cover;
  }
  /*ずらし用の指定*/
  /*【補足】比較のためあえてずらす前の指定とは別にずらすために追加したプロパティ類を分けて記述しています。実際にはセレクタを統合する必要があります*/
  .alternate__body {
    position: relative;
    top: 40px; /*元の位置を基準に単純に40px下にずらす*/
    width: calc(40% + 80px); /*あらかじめ80px分広げる*/
  }
  .alternate__thumb {
    position: relative;
    z-index: 1;
  }
  .alternate._normal .alternate__body {
    margin-left: -80px; /*ネガティブマージンで広げた分を相殺*/
    padding-left: 110px; /*重なり分の余白を確保*/
  }
  .alternate._reverse .alternate__body {
    margin-right: -80px;
    padding-right: 110px;
  }
}
.top_contact {
  background-color: #ffffff;
  background-image: url("");
  background-position: center;
  background-size: cover;
  color: #333;
  text-align: center;
  position: relative;
}
.top_contact h2 {
  color: #333;
}
.top_contact .btn {
  margin-top: 20px;
}
.top_contact::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
.top_contact > * {
  position: relative;
  z-index: 2;
}
.top_contact dl {
  display: flex;
  flex-wrap: wrap;
  width: 2.16rem;
  margin: 0.23rem auto 0;
  text-align: left;
}
.top_contact dt {
  flex: 0 0 4em;
}
.top_contact dd {
  flex: 0 0 auto;
  width: calc(100% - 4em);
  margin-left: 0;
  white-space: nowrap;
  overflow: visible;
}
.top_contact h2 + p {
  font-size: 0.32rem;
  font-weight: bold;
}
.bnr_line {
  margin-top: 30px;
}
.bnr_line img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.renewal {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.renewal-box {
  max-width: 900px;
  margin: 0 auto;
}

.main-title {
  color: #333333;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 34px;
}

.main-title span {
  color: #c8a54b;
  display: inline-block;
  margin: 8px 0;
}

.copy {
  color: #c8a54b;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}

.message {
  color: #555555;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 2.1;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .renewal {
    padding: 40px 20px;
  }

  .renewal-box {
    padding: 50px 25px;
  }

  .main-title {
    line-height: 1.3;
  }

  .camino {
    font-size: 40px;
  }

  .gold-text {
    font-size: 46px;
    white-space: normal;
    line-height: 1.3;
  }

  .copy {
    font-size: 20px;
  }

  .message {
    font-size: 17px;
    line-height: 2;
  }
}

.renewal {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.renewal-box {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.main-title {
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 34px;
}

.camino {
  color: #333333 !important;
  font-size: clamp(42px, 5vw, 62px);
}

.gold-text {
  color: #c8a54b !important;
  font-size: clamp(44px, 6vw, 82px);
  white-space: nowrap;
}

.copy {
  color: #c8a54b !important;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 30px;
}

.message {
  color: #c8a54b !important;
  font-size: clamp(18px, 1.8vw, 20px);
  line-height: 2.2;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.coming-soon {
  color: #c8a54b !important;
  font-size: 16px;
  letter-spacing: 0.18em;
}

@media (max-width: 768px) {
  .renewal {
    padding: 60px 18px;
  }

  .gold-text {
    white-space: normal;
  }

  .message {
    font-size: 15px;
    line-height: 2;
  }
}

.renewal-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 70px;
  background: #fff;
  border: 2px solid #c8a54b;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about_box_img {
  position: relative;
}

.vida-logo {
  position: absolute;
  top: 10px;
  right: -90px;
  width: 450px;
  height: auto;
  z-index: 100;
}
.hero {
  width: 100%;
  background: #fff;
  padding-top: 140px;
  padding-bottom: 15px;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
}

.about_box_img {
  position: relative;
  z-index: 1;
  clear: both;
}

.link-button {
  text-align: center;
  margin-top: 60px;
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  background: #c79b3b;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  border-radius: 50px;
  transition: 0.3s;
}

.btn:hover {
  background: #b4892e;
  transform: translateY(-2px);
}

.link-button {
  margin-bottom: 70px;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  display: block;
  margin: 0;
  padding: 0;
}
section.hero {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

section.hero img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 !important;
  padding: 0 !important;
}

/* ===================================
   Vida 上部ブランド表示
=================================== */

.vida-top-brand {
  width: 100%;
  min-height: 78px;
  padding: 12px 3%;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  gap: 28px;

  background: linear-gradient(90deg, #ffffff 0%, #faf7f0 50%, #ffffff 100%);

  border-bottom: 1px solid rgba(181, 139, 55, 0.3);
}

.vida-brand-title {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.vida-main {
  font-family: "Lora", serif;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ad812e;
}

.vida-sub {
  margin-top: 5px;
  font-family: "Lora", serif;
  font-size: 15px;
  letter-spacing: 0.5px;
  color: #684a2e;
}

.vida-brand-message {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.vida-line {
  flex: 1;
  height: 1px;
  background: #b58b37;
}

.vida-catch {
  flex-shrink: 0;
  font-family: "Lora", serif;
  font-size: 28px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #b18432;
  white-space: nowrap;
}

/* スマートフォン */
@media screen and (max-width: 767px) {
  .vida-top-brand {
    min-height: 68px;
    padding: 9px 14px;
    gap: 13px;
  }

  .vida-main {
    font-size: 25px;
  }

  .vida-sub {
    margin-top: 3px;
    font-size: 10px;
  }

  .vida-brand-message {
    gap: 8px;
  }

  .vida-line {
    min-width: 12px;
  }

  .vida-catch {
    font-size: 15px;
    letter-spacing: 0;
  }
}
/* ========================================
   Vida トップ・ブランドヒーロー
======================================== */

.vida-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  width: 100%;
  min-height: 360px;
  padding: 60px 7%;
  box-sizing: border-box;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(183, 154, 91, 0.12),
      transparent 40%
    ),
    linear-gradient(135deg, #ffffff 0%, #faf9f6 55%, #f3efe7 100%);
}

/* 上部の細い装飾ライン */
.vida-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 7%;
  width: 86%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(183, 154, 91, 0.85),
    transparent
  );
}

/* 左側：ブランド名 */
.vida-hero-brand {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.vida-name,
.vida-engineering,
.vida-english,
.vida-message {
  margin: 0;
}

.vida-name {
  color: #252525;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
}

.vida-engineering {
  margin-top: 12px;
  color: #756548;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.4vw, 21px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.14em;
}

/* 右側：ブランド理念 */
.vida-hero-copy {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  max-width: 850px;
  margin-left: auto;
  text-align: right;
}

.vida-english {
  margin-bottom: 22px;
  color: #9b7a38;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.4vw, 21px);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.vida-message {
  color: #292929;
  font-family:
    "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro",
    serif;

  font-size: clamp(29px, 3.3vw, 52px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.vida-message span {
  display: block;
}

/* 最後の一文を少し印象的に */
.vida-message span:last-child {
  margin-top: 10px;
  color: #70582b;
  font-size: 0.88em;
}

/* 右下の装飾ライン */
.vida-hero-copy::after {
  content: "";
  display: block;

  width: 130px;
  height: 2px;
  margin-top: 30px;
  margin-left: auto;

  background: linear-gradient(to left, #b79a5b, rgba(183, 154, 91, 0));
}
@media screen and (max-width: 768px) {
  .vida-hero {
    display: block;
    min-height: auto;
    padding: 42px 20px 48px;

    background:
      radial-gradient(
        circle at 90% 10%,
        rgba(183, 154, 91, 0.12),
        transparent 42%
      ),
      linear-gradient(150deg, #ffffff 0%, #faf9f6 60%, #f2ede3 100%);
  }

  .vida-hero::before {
    left: 10%;
    width: 80%;
  }

  .vida-hero-brand {
    margin-bottom: 32px;
    text-align: left;
  }

  .vida-name {
    font-size: 43px;
  }

  .vida-engineering {
    margin-top: 8px;
    font-size: 14px;
    letter-spacing: 0.11em;
  }

  .vida-hero-copy {
    width: 100%;
    max-width: none;
    align-items: flex-end;
    margin-left: 0;
    text-align: right;
  }

  .vida-english {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
  }

  .vida-message {
    font-size: clamp(22px, 6vw, 29px);
    line-height: 1.7;
    letter-spacing: 0.03em;
  }

  .vida-message span:last-child {
    margin-top: 12px;
    font-size: 0.86em;
    line-height: 1.8;
  }

  .vida-hero-copy::after {
    width: 95px;
    margin-top: 26px;
  }
}

/* ========================================
   アーチ説明エリア
======================================== */

.arch-content {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 60px 7%;

  background-color: #faf8f3;
  color: #444444;

  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;

  font-size: 17px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.arch-content-title {
  margin: 0 0 34px;
  color: #252525;

  font-size: clamp(23px, 2vw, 32px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.arch-content-subtitle {
  margin: 42px 0 26px;
  color: #2f2f2f;

  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.arch-content p {
  margin: 0 0 26px;
}

.arch-content strong {
  color: #5f4b28;
  font-weight: 600;
}

.arch-note {
  color: #5f4b28;
  font-weight: 600;
}

/* ========================================
   ページ内リンク・お問い合わせ導線
======================================== */

html {
  scroll-behavior: smooth;
}

/* ========================================
   メインビジュアル内リンクボタン
======================================== */

.hero-link-buttons {
  width: min(100%, 680px);
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.hero-link-button {
  position: relative;
  width: 50%;
  min-height: 76px;
  padding: 15px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.hero-button-small {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.8;
}

.hero-contact-button {
  color: #ffffff;
  border: 1px solid #b58a35;
  background: linear-gradient(135deg, #b98b2f 0%, #d1a33f 48%, #b58227 100%);
  box-shadow: 0 8px 24px rgba(146, 102, 30, 0.22);
}

.hero-access-button {
  color: #39332d;
  border: 1px solid rgba(181, 138, 53, 0.8);
  background: rgba(255, 255, 255, 0.88);
}

.hero-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 21px;
  transform: translateY(-50%);
}

.hero-link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(107, 79, 38, 0.22);
}

.hero-contact-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #9e7229 0%, #bd8e32 50%, #91651f 100%);
}

.hero-access-button:hover {
  color: #ffffff;
  background: #40362d;
  border-color: #40362d;
}

/* ========================================
   お問い合わせアクション部分
======================================== */

.contact-action-area {
  width: min(calc(100% - 40px), 760px);
  margin: 36px auto 0;
}

.contact-phone-button {
  position: relative;
  min-height: 104px;
  padding: 20px 68px 20px 28px;
  border: 1px solid #c69838;
  border-radius: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #b88428 0%, #d0a03c 48%, #b47f25 100%);
  box-shadow:
    0 9px 22px rgba(128, 87, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.contact-phone-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  line-height: 1;
}

.contact-phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-button-main {
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 2.7vw, 23px);
  letter-spacing: 0.08em;
}

.contact-button-sub {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.contact-button-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  font-size: 34px;
  font-weight: 300;
  transform: translateY(-52%);
}

.contact-phone-button:hover {
  color: #ffffff;
  filter: brightness(0.94);
  transform: translateY(-3px);
  box-shadow:
    0 13px 28px rgba(128, 87, 21, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* トップページへ戻るボタン */

.back-top-button {
  position: relative;
  min-height: 82px;
  margin-top: 18px;
  padding: 18px 64px;
  border: 1px solid #b78b3a;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #3e3933;
  text-decoration: none;
  background: #ffffff;
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 2.6vw, 21px);
  letter-spacing: 0.1em;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.back-top-icon {
  color: #ad8133;
  font-size: 29px;
  line-height: 1;
}

.back-top-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  color: #ad8133;
  font-size: 31px;
  transform: translateY(-52%);
}

.back-top-button:hover {
  color: #ffffff;
  background: #40362d;
  transform: translateY(-2px);
}

.back-top-button:hover .back-top-icon,
.back-top-button:hover .back-top-arrow {
  color: #d7ae5b;
}

/* ========================================
   右下固定ナビゲーション
======================================== */

.fixed-navigation {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fixed-nav-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(54, 43, 28, 0.2);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.fixed-nav-icon {
  font-size: 18px;
  line-height: 1;
}

.fixed-nav-text {
  margin-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fixed-phone-button {
  color: #ffffff;
  border: 1px solid #d1a451;
  background: #b88830;
}

.fixed-top-button {
  color: #50473e;
  border: 1px solid rgba(181, 138, 53, 0.75);
  background: rgba(255, 255, 255, 0.94);
}

.fixed-nav-button:hover {
  transform: translateY(-3px);
}

.fixed-phone-button:hover {
  color: #ffffff;
  background: #94691f;
}

.fixed-top-button:hover {
  color: #ffffff;
  background: #40362d;
}

/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 767px) {
  .hero-link-buttons {
    width: calc(100% - 36px);
    margin-top: 30px;
    flex-direction: column;
    gap: 11px;
  }

  .hero-link-button {
    width: 100%;
    min-height: 67px;
    padding: 13px 50px 13px 22px;
    font-size: 15px;
  }

  .hero-button-small {
    font-size: 9px;
  }

  .hero-arrow {
    right: 18px;
  }

  .contact-action-area {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .contact-phone-button {
    min-height: 90px;
    padding: 17px 48px 17px 18px;
    border-radius: 45px;
    gap: 12px;
  }

  .contact-phone-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .contact-button-main {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .contact-button-sub {
    font-size: 11px;
  }

  .contact-button-arrow {
    right: 18px;
    font-size: 27px;
  }

  .back-top-button {
    min-height: 68px;
    padding: 14px 44px;
    gap: 10px;
    font-size: 15px;
  }

  .back-top-icon {
    font-size: 23px;
  }

  .back-top-arrow {
    right: 18px;
    font-size: 25px;
  }

  .fixed-navigation {
    right: 11px;
    bottom: 12px;
    gap: 7px;
  }

  .fixed-nav-button {
    width: 49px;
    height: 49px;
  }

  .fixed-nav-icon {
    font-size: 15px;
  }

  .fixed-nav-text {
    font-size: 7px;
  }
}

/* ========================================
   ページ内リンク・お問い合わせ導線
======================================== */

html {
  scroll-behavior: smooth;
}

/* ========================================
   メインビジュアル内リンクボタン
======================================== */

.hero-link-buttons {
  width: min(100%, 680px);
  margin: 42px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 14px;
}

.hero-link-button {
  position: relative;
  width: 50%;
  min-height: 76px;
  padding: 15px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 17px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.hero-button-small {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  opacity: 0.8;
}

.hero-contact-button {
  color: #ffffff;
  border: 1px solid #b58a35;
  background: linear-gradient(135deg, #b98b2f 0%, #d1a33f 48%, #b58227 100%);
  box-shadow: 0 8px 24px rgba(146, 102, 30, 0.22);
}

.hero-access-button {
  color: #39332d;
  border: 1px solid rgba(181, 138, 53, 0.8);
  background: rgba(255, 255, 255, 0.88);
}

.hero-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  font-size: 21px;
  transform: translateY(-50%);
}

.hero-link-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(107, 79, 38, 0.22);
}

.hero-contact-button:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #9e7229 0%, #bd8e32 50%, #91651f 100%);
}

.hero-access-button:hover {
  color: #ffffff;
  background: #40362d;
  border-color: #40362d;
}

/* ========================================
   お問い合わせアクション部分
======================================== */

.contact-action-area {
  width: min(calc(100% - 40px), 760px);
  margin: 36px auto 0;
}

.contact-phone-button {
  position: relative;
  min-height: 104px;
  padding: 20px 68px 20px 28px;
  border: 1px solid #c69838;
  border-radius: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #b88428 0%, #d0a03c 48%, #b47f25 100%);
  box-shadow:
    0 9px 22px rgba(128, 87, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.contact-phone-icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 25px;
  line-height: 1;
}

.contact-phone-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.contact-button-main {
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 2.7vw, 23px);
  letter-spacing: 0.08em;
}

.contact-button-sub {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

.contact-button-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  font-size: 34px;
  font-weight: 300;
  transform: translateY(-52%);
}

.contact-phone-button:hover {
  color: #ffffff;
  filter: brightness(0.94);
  transform: translateY(-3px);
  box-shadow:
    0 13px 28px rgba(128, 87, 21, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* トップページへ戻るボタン */

.back-top-button {
  position: relative;
  min-height: 82px;
  margin-top: 18px;
  padding: 18px 64px;
  border: 1px solid #b78b3a;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #3e3933;
  text-decoration: none;
  background: #ffffff;
  font-family:
    "Noto Serif JP", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(17px, 2.6vw, 21px);
  letter-spacing: 0.1em;
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;
}

.back-top-icon {
  color: #ad8133;
  font-size: 29px;
  line-height: 1;
}

.back-top-arrow {
  position: absolute;
  top: 50%;
  right: 28px;
  color: #ad8133;
  font-size: 31px;
  transform: translateY(-52%);
}

.back-top-button:hover {
  color: #ffffff;
  background: #40362d;
  transform: translateY(-2px);
}

.back-top-button:hover .back-top-icon,
.back-top-button:hover .back-top-arrow {
  color: #d7ae5b;
}

/* ========================================
   右下固定ナビゲーション
======================================== */

.fixed-navigation {
  position: fixed;
  z-index: 999;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fixed-nav-button {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(54, 43, 28, 0.2);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.fixed-nav-icon {
  font-size: 18px;
  line-height: 1;
}

.fixed-nav-text {
  margin-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.fixed-phone-button {
  color: #ffffff;
  border: 1px solid #d1a451;
  background: #b88830;
}

.fixed-top-button {
  color: #50473e;
  border: 1px solid rgba(181, 138, 53, 0.75);
  background: rgba(255, 255, 255, 0.94);
}

.fixed-nav-button:hover {
  transform: translateY(-3px);
}

.fixed-phone-button:hover {
  color: #ffffff;
  background: #94691f;
}

.fixed-top-button:hover {
  color: #ffffff;
  background: #40362d;
}

/* ========================================
   スマートフォン
======================================== */

@media screen and (max-width: 767px) {
  .hero-link-buttons {
    width: calc(100% - 36px);
    margin-top: 30px;
    flex-direction: column;
    gap: 11px;
  }

  .hero-link-button {
    width: 100%;
    min-height: 67px;
    padding: 13px 50px 13px 22px;
    font-size: 15px;
  }

  .hero-button-small {
    font-size: 9px;
  }

  .hero-arrow {
    right: 18px;
  }

  .contact-action-area {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .contact-phone-button {
    min-height: 90px;
    padding: 17px 48px 17px 18px;
    border-radius: 45px;
    gap: 12px;
  }

  .contact-phone-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .contact-button-main {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .contact-button-sub {
    font-size: 11px;
  }

  .contact-button-arrow {
    right: 18px;
    font-size: 27px;
  }

  .back-top-button {
    min-height: 68px;
    padding: 14px 44px;
    gap: 10px;
    font-size: 15px;
  }

  .back-top-icon {
    font-size: 23px;
  }

  .back-top-arrow {
    right: 18px;
    font-size: 25px;
  }

  .fixed-navigation {
    right: 11px;
    bottom: 12px;
    gap: 7px;
  }

  .fixed-nav-button {
    width: 49px;
    height: 49px;
  }

  .fixed-nav-icon {
    font-size: 15px;
  }

  .fixed-nav-text {
    font-size: 7px;
  }
}
/*==============================
  ACCESS CARD
==============================*/

/*==============================
  ACCESS CARD
==============================*/

.top_access {
  max-width: 980px;
  margin: 72px auto 48px;
  padding: 0 24px;
}

.access-card {
  max-width: 760px;
  width: 100%;
  margin: 28px auto 0;
  padding: 30px 36px;

  background: #ffffff;

  border: 1px solid #e5dbc8;
  border-radius: 14px;

  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.access-card h3 {
  margin: 0 0 16px;
  padding-bottom: 11px;

  border-bottom: 1px solid #d8c7a3;

  font-size: 25px;
  font-weight: 600;
  color: #2d2d2d;
  letter-spacing: 0.05em;
}

.access-card p {
  margin: 0;

  font-size: 17px;
  line-height: 1.9;
  color: #555555;
}

.top_access > h2 {
  font-size: 42px;
  margin-bottom: 22px;
  letter-spacing: 0.12em;
}
/* ===========================
   スマホ用 ボタンをコンパクトに
=========================== */
@media (max-width: 768px) {
  .hero-link-button {
    padding: 14px 18px;
    min-height: 72px;
  }

  .hero-button-small {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 4px;
  }

  .hero-link-button {
    font-size: 22px;
  }

  .hero-arrow {
    font-size: 20px;
  }
}

/* ==================================
   スマホ版 ヒーローボタン最終調整
================================== */
@media screen and (max-width: 767px) {
  .vida-hero .hero-link-buttons {
    width: calc(100% - 40px);
    margin: 22px auto 0;
    gap: 8px;
  }

  .vida-hero .hero-link-button {
    width: 100%;
    min-height: 46px;
    height: auto;
    padding: 8px 42px 8px 16px;

    font-size: 15px;
    line-height: 1.3;
  }

  .vida-hero .hero-button-small {
    margin-bottom: 1px;
    font-size: 8px;
    line-height: 1.1;
    letter-spacing: 0.18em;
  }

  .vida-hero .hero-arrow {
    right: 14px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .vida-hero .hero-link-buttons {
    width: calc(100% - 40px) !important;
    margin: 22px auto 0 !important;
    gap: 8px !important;
  }

  .vida-hero .hero-link-button {
    min-height: 46px !important;
    padding: 8px 42px 8px 16px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .vida-hero .hero-button-small {
    margin-bottom: 1px !important;
    font-size: 8px !important;
  }
}
/* ==================================
   スマホ版 ヒーローボタン最終修正
================================== */
@media screen and (max-width: 767px) {
  .vida-hero .hero-link-buttons {
    width: calc(100% - 32px) !important;
    margin: 18px auto 0 !important;
    gap: 6px !important;
  }

  .vida-hero .hero-link-button {
    box-sizing: border-box !important;

    width: 100% !important;
    height: 52px !important;
    min-height: 0 !important;

    padding: 5px 38px 5px 14px !important;

    font-size: 14px !important;
    line-height: 1.15 !important;
  }

  .vida-hero .hero-button-small {
    margin: 0 0 2px !important;
    font-size: 7px !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
  }

  .vida-hero .hero-arrow {
    right: 13px !important;
    font-size: 15px !important;
  }
}
/* ==================================
   スマホ版 ボタンをさらに小型化
================================== */
@media screen and (max-width: 767px) {
  .vida-hero .hero-link-buttons {
    width: 240px !important;
    max-width: 70% !important;
    margin: 14px auto 0 !important;
    gap: 5px !important;
  }

  .vida-hero .hero-link-button {
    width: 100% !important;
    height: 40px !important;
    min-height: 0 !important;
    padding: 4px 28px 4px 10px !important;

    font-size: 12px !important;
    line-height: 1.05 !important;
    letter-spacing: 0.04em !important;
  }

  .vida-hero .hero-button-small {
    margin: 0 0 1px !important;
    font-size: 6px !important;
    line-height: 1 !important;
    letter-spacing: 0.14em !important;
  }

  .vida-hero .hero-arrow {
    right: 10px !important;
    font-size: 12px !important;
  }
}
@media screen and (max-width: 767px) {
  .hero-link-buttons {
    width: 160px !important;
    margin: 12px 20px 0 auto !important;
    gap: 4px !important;
  }

  .hero-link-button {
    height: 28px !important;
    min-height: 28px !important;
    padding: 2px 22px 2px 8px !important;
    font-size: 10px !important;
    border-radius: 4px !important;
  }

  .hero-button-small {
    font-size: 5px !important;
    margin-bottom: 1px !important;
  }

  .hero-arrow {
    font-size: 10px !important;
    right: 8px !important;
  }
}
/* ===============================
   スマホ版 ヒーローボタン確定版
=============================== */
@media screen and (max-width: 767px) {
  .vida-hero .hero-link-buttons {
    width: 170px !important;
    margin: 12px 14px 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .vida-hero .hero-link-button {
    width: 170px !important;
    height: 30px !important;
    min-height: 30px !important;
    padding: 2px 22px 2px 8px !important;
    border-radius: 4px !important;

    font-size: 10px !important;
    line-height: 1 !important;
    gap: 1px !important;
  }

  .vida-hero .hero-button-small {
    margin: 0 !important;
    font-size: 5px !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;
  }

  .vida-hero .hero-arrow {
    right: 8px !important;
    font-size: 10px !important;
  }
}
/* ===========================
   スマホ Contact・Footer調整
=========================== */
@media screen and (max-width: 767px) {
  /* お問い合わせボタン */
  .contact-action-area {
    padding: 0 16px !important;
    box-sizing: border-box;
  }

  .contact-phone-button,
  .back-top-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }

  /* ACCESSカード */
  .access-card {
    width: 100% !important;
    box-sizing: border-box;
  }

  /* フッター */
  .footer {
    padding: 24px 16px !important;
  }

  .footer_box {
    width: 100% !important;
    box-sizing: border-box;
    word-break: break-word;
  }

  .footer_box div {
    font-size: 13px !important;
    line-height: 1.7;
  }
}

@media screen and (max-width: 768px) {
  .merit-card,
  .merit-text,
  .merit-content {
    position: static !important;
    transform: none !important;
    margin-top: 0 !important;
  }

  .merit-card img,
  .merit-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .merit-text,
  .merit-content {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
    padding: 28px 22px;
  }
}
/* ===== MERIT スマホ表示調整 ===== */
@media screen and (max-width: 767px) {
  .alternate .alternate__thumb,
  .alternate._reverse .alternate__thumb {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  .alternate {
    display: flex;
    flex-direction: column !important;
  }

  .alternate__thumb img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .alternate__txt {
    width: 100% !important;
    box-sizing: border-box;
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .alternate {
    display: flex !important;
    flex-direction: column !important;
  }

  .alternate__thumb {
    order: 1 !important;
    margin: 0 !important;
    width: 100% !important;
  }

  .alternate__txt {
    order: 2 !important;
    margin: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}
/* ===== スマホ：文章の横はみ出し防止 ===== */
@media screen and (max-width: 767px) {
  .alternate,
  .alternate__txt,
  .alternate__thumb {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
  }

  .alternate__txt {
    padding-left: 20px !important;
    padding-right: 20px !important;
    overflow-wrap: anywhere;
  }
}
