@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
:root {
  --green: #0c9351;
  --mizuiro: #40c5d3;
  --kimidori: #6bc949;
  --yellow: #fff000;
  --red: #e94518;
  --beige: #f0eee9;
  --blue: #1d9bcf;
  --kon: #226ea5;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html,
body {
  overflow-x: clip;
} /* または hidden でもOK */
p {
  line-height: 1.8;
}

.lead {
  margin: 0 auto;
  width: min(600px, 80vw);
  font-size: 1rem;
  font-weight: inherit;
}
@media (max-width: 768px) {
  .lead {
    text-align: start;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

a.alink {
  text-decoration: underline;
  color: var(--green);
}

section {
  padding: 2rem 0;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

section.wide-padding {
  padding: 6rem 0;
}

section.no-padding {
  padding: 0;
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
h2 span {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  color: var(--kon);
  display: block;
  letter-spacing: 0.1rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  h3 {
    text-align: center;
  }
}

h4 {
  letter-spacing: 0.2rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
h4 span {
  font-size: 0.95rem;
  letter-spacing: 0.05rem;
}

.red {
  color: var(--red);
}

.hamburger-outer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 200;
  width: 84px; /* タップ領域 */
  height: 84px;
  background: var(--blue);
  border-radius: 0 0 0 20px;
  display: grid;
  place-items: center; /* 中央寄せ */
  cursor: pointer;
  overflow: hidden; /* 角の欠け対策 */
}
@media (max-width: 768px) {
  .hamburger-outer {
    width: 60px; /* タップ領域 */
    height: 60px;
  }
}

.hamburger {
  position: relative; /* ← これが重要（線の基準） */
  width: 32px;
  height: 24px;
}
@media (max-width: 768px) {
  .hamburger {
    width: 25px;
  }
}

.hamburger__line {
  position: absolute;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
  transition: all 300ms ease;
  transform: rotate(0deg);
}

/* 線の位置（通常） */
.hamburger__line:nth-child(1) {
  top: 0px;
}

.hamburger__line:nth-child(2) {
  top: 9px;
}

.hamburger__line:nth-child(3) {
  top: 18px;
}

/* ×変形（2本） */
/* ×変形（3本） */
.hamburger.open .hamburger__line:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger__line:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* メニュー本体 */
.menu {
  flex-direction: column;
  display: flex;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 300ms ease;
  width: min(400px, 70vw);
  background-color: var(--blue);
  text-align: center;
  color: white;
  padding: 40px 40px 20px 40px;
  gap: 30px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
  border-radius: 0 0 0 30px;
}

.menu__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: inherit;
  padding-bottom: 20px;
  border-bottom: 1px solid white;
  justify-content: center;
}

.menu__item:last-child {
  border-bottom: none;
}

/* 初期状態 */
#menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.3s;
  visibility: hidden; /* ← ここを使うなら… */
}

/* 開いた状態 */
#menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible; /* ← これを必ず入れる */
}

.icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* アニメーション */
/* 上から下 */
.slide-top-enter-active,
.slide-top-leave-active {
  transition: all 300ms ease;
}

.slide-top-enter-from,
.slide-top-leave-to {
  opacity: 0;
  transform: translateY(-20px);
}

.slide-top-enter-to,
.slide-top-leave-from {
  opacity: 1;
  transform: translateY(0);
}

.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  align-items: stretch;
  justify-items: stretch;
}
@media (max-width: 768px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* グリッド直下の子（a/div）は stretch に任せる。高さ100%は不要 */
.cards > * {
  display: flex;
  align-self: stretch;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

/* a の見た目調整だけ残す */
.cards > a {
  text-decoration: none;
  color: inherit;
}

/* カード本体は親（a）の中で高さを埋める */
.card-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 1rem;
  border: 5px solid var(--red);
  border-radius: 50%;
  box-sizing: border-box;
  width: 45vw; /* 画面幅に応じて可変 */
  aspect-ratio: 1/1; /* ← これで常に正円！ */
  max-width: 190px; /* 上限を設定 */
}
.card-box h4 {
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  text-align: center;
}
.card-box img {
  max-height: 70px;
}
.card-box p {
  margin-bottom: 0;
  line-height: 1.5;
}

.feature-card:nth-of-type(3n + 1) .card-box {
  border-color: var(--red);
}

/* 2,5,8,11...番目（青） */
.feature-card:nth-of-type(3n + 2) .card-box {
  border-color: var(--blue);
}

/* 3,6,9,12...番目（紺） */
.feature-card:nth-of-type(3n) .card-box {
  border-color: var(--kon);
}

.modal {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  z-index: 1000;
}
.modal p {
  padding: 0 1rem;
  text-align: justify;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .modal {
    --bs-modal-margin: 2rem; /* デフォルトは .5rem */
  }
}

.modal-header {
  justify-content: center;
  flex-direction: column;
}
.modal-header img {
  width: 80px;
  margin-bottom: 1rem;
}

.soudan {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .soudan {
    display: block; /* flex解除 */
  }
  .soudan p {
    font-size: 15px;
  }
  .soudan img {
    float: left;
    width: 84px;
    height: 84px;
    margin: 4px 14px 8px 0;
    shape-outside: circle(50%);
    -webkit-shape-outside: circle(50%);
    border-radius: 50%;
    clip-path: circle(50%);
    display: block;
  }
  .soudan::after {
    content: "";
    display: block;
    clear: both;
  }
}
.soudan img {
  width: 82px;
  height: 82px;
}

.down {
  text-align: center;
}
.down img {
  width: 27px;
}

.modal-backdrop {
  z-index: 1050;
} /* 既定 */
.modal {
  z-index: 1060;
} /* 既定より少し高めでも可 */
.qa {
  background-color: white;
  padding: 1rem;
  border-radius: 20px;
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.qa-title {
  text-indent: -2rem; /* 1行目を左にずらす */
  padding-left: 2rem; /* 全体を右に寄せる */
}
.qa-title span {
  font-family: "Rubik", sans-serif;
  font-size: 1.7rem;
  margin-right: 0.5rem;
}

.color-q {
  font-weight: 600;
}
.color-q span {
  color: var(--kon);
}

.color-a span {
  color: var(--red);
}

.policy-box {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 1rem;
  background: #fff;
  font-weight: 400;
  font-size: 13px;
  height: 150px;
  overflow: scroll;
}
.policy-box h2 {
  font-size: 13px;
  font-weight: bold;
  margin: 1rem 0 0.6rem;
  letter-spacing: 0.1rem;
  color: #000;
}

.form-label {
  color: #0c0c0c;
}

.maru {
  color: var(--mizuiro);
  font-size: 0.6rem;
}

#footer {
  background-color: var(--kon);
  color: white;
  position: relative;
  z-index: 0;
  padding-bottom: 1rem;
}
#footer::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px; /* 上へ食い込ませる */
  width: 100vw; /* 横幅を広くして端切れを防止 */
  height: 200px; /* 丸みの深さを調整 */
  background: var(--kon); /* #dekiru と同じ色 */
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  z-index: -1;
  text-align: center;
}
@media (max-width: 768px) {
  #footer::before {
    top: -60px;
    height: 120px;
  }
}
#footer img {
  width: 180px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}
#footer img:hover {
  transform: translateY(-10px);
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7333333333);
}

.w-50-sp100 {
  width: 50%;
}
@media (max-width: 768px) {
  .w-50-sp100 {
    width: 100%;
  }
}

:root {
  --cover: 100vh; /* かぶせる量 */
  --content-offset: 10vh; /* 中身の開始位置 */
}
@media (max-width: 768px) {
  :root {
    --cover: 80vh;
    --content-offset: 6vh;
  }
}

.hero-wrap {
  /* “画面1枚”に、#nayami がかぶさる分だけ余白を足す */
  height: calc(100vh + var(--cover));
  position: relative;
  /* parent に overflow や transform があると sticky が効かなくなるので付けない */
}

#hero {
  position: sticky;
  top: 0;
  height: 100vh; /* 1画面分 */
  z-index: 1; /* 背面に回す（#nayamiより低く） */
}

#nayami {
  background-color: #f1f1f1;
  text-align: center;
  position: relative;
  z-index: 2; /* #hero より前面 */
  height: 100vh; /* ← ここで1画面に固定 */
  /* 1画面分かぶせる */
  margin-top: calc(var(--cover) * -1);
  /* 中身の開始位置は別で調整 */
  padding-top: var(--content-offset);
  /* お好みの装飾（角丸など） */
  border-top-left-radius: 48px;
  border-top-right-radius: 48px;
  /* 影を少し入れると“かぶさり感”UP */
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  #nayami {
    height: 100vh; /* モバイルも画面いっぱい */
  }
}

.mikata-hero {
  background-image: url(img/kira1.svg), url(img/kira2.svg), url(img/top-back.jpg);
  background-size: 105px, 100px, cover;
  background-position: right 10% top 10%, left 15% bottom 10%, center;
  background-repeat: no-repeat;
}

.mikata-hero .stage {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-base {
  width: min(350px, 60vw);
  display: block;
  margin: 0 auto 2rem;
}

.catch {
  text-align: center;
  margin-bottom: 1.5rem;
}
.catch img {
  width: min(500px, 65vw);
}

.bubble {
  position: absolute;
  width: clamp(84px, 15vw, 160px);
  pointer-events: none;
  z-index: 2;
}

.bubble2 {
  position: absolute;
  width: clamp(130px, 25vw, 230px);
}

/* 位置は好みで調整。例） */
.bubble--bar {
  left: 23%;
  top: 14%;
}
@media (max-width: 768px) {
  .bubble--bar {
    left: 6%;
    top: 10%;
  }
}

.bubble--money {
  left: 10%;
  bottom: 43%;
}
@media (max-width: 768px) {
  .bubble--money {
    left: 5%;
    bottom: 60%;
  }
}

.bubble--chef {
  right: 22%;
  top: 8%;
}
@media (max-width: 768px) {
  .bubble--chef {
    right: 5%;
  }
}

.bubble--review {
  right: 12%;
  bottom: 40%;
}
@media (max-width: 768px) {
  .bubble--review {
    right: 3%;
    bottom: 55%;
  }
}

.bubble--ny1 {
  left: 15%;
  top: 5%;
}
@media (max-width: 768px) {
  .bubble--ny1 {
    left: 0%;
    top: -27%;
  }
}

.bubble--ny2 {
  left: 5%;
  bottom: 10%;
}
@media (max-width: 768px) {
  .bubble--ny2 {
    left: 0%;
    bottom: 5%;
  }
}

.bubble--ny3 {
  right: 15%;
  top: 5%;
}
@media (max-width: 768px) {
  .bubble--ny3 {
    right: 0%;
    top: -25%;
  }
}

.bubble--ny4 {
  right: 5%;
  bottom: 10%;
}
@media (max-width: 768px) {
  .bubble--ny4 {
    right: 0%;
    bottom: 0%;
  }
}

/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* ---- 出現→ふわふわ（外側のラッパ） ---- */
.bubble {
  /* ① 最初のポップイン（透明→表示、下からスッ） */
  animation: bubble-pop-outside 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both, bubble-float 6s ease-in-out 0.6s infinite;
  will-change: transform, opacity;
  /* 個体差（後述の --seed でズラし） */
  animation-delay: 0s, calc(0.6s + var(--seed, 0s)); /* 2本目にだけ seed を効かせる */
}

/* ---- ずっとパルス（内側の画像） ---- */
.bubble > img {
  width: 100%;
  display: block;
  /* ① 出現時のわずかなにじみ感を残したいなら filter をどうぞ */
  /* filter: saturate(1.02); */
  /* ② ゆるい拡大縮小（.6s後に開始） */
  animation: bubble-pulse 4.8s ease-in-out 0.6s infinite;
  will-change: transform;
}

/* ---- keyframes ---- */
@keyframes bubble-pop-outside {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  60% {
    opacity: 1;
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上下にゆらゆら。位相をランダム化できるように後述の --seed を使ってディレイをズラす */
@keyframes bubble-float {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ふわっと拡大縮小。強すぎると酔うので ±3～4% くらいが無難 */
@keyframes bubble-pulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.035);
  }
  70% {
    transform: scale(0.985);
  }
  100% {
    transform: scale(1);
  }
}
/* 低モーション配慮 */
@media (prefers-reduced-motion: reduce) {
  .bubble,
  .bubble > img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.ny-title {
  width: min(600px, 80vw);
  margin: 0 auto 3rem;
}

#sonna {
  padding-top: 100px;
  text-align: center;
  position: relative;
  padding-bottom: 150px;
}

/* 左の星 */
#sonna::before {
  content: "";
  position: absolute;
  left: 5%;
  bottom: 20%;
  width: 100px;
  height: 100px;
  background: url("img/kira-y1.svg") no-repeat center/contain;
  opacity: 0.8;
  animation: starFloatLeft 7s ease-in-out infinite;
  transform-origin: center center;
  z-index: -10;
}

/* 右の星 */
#sonna::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 25%;
  width: 120px;
  height: 120px;
  background: url("img/kira-y2.svg") no-repeat center/contain;
  opacity: 0.9;
  animation: starFloatRight 6s ease-in-out infinite;
  transform-origin: center center;
  z-index: -10;
}
@media (max-width: 768px) {
  #sonna::after {
    right: 5%;
    top: 5%;
  }
}

@keyframes starFloatLeft {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
@keyframes starFloatRight {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}
.yajirushi-red {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
.yajirushi-red img {
  width: 100px;
}

#dekiru,
#nagare,
#faq {
  background-color: #fff6e9;
  position: relative;
  z-index: 0;
}
#dekiru::before,
#nagare::before,
#faq::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100px; /* 上へ食い込ませる */
  width: 100vw; /* 横幅を広くして端切れを防止 */
  height: 200px; /* 丸みの深さを調整 */
  background: #fff6e9; /* #dekiru と同じ色 */
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  #dekiru::before,
  #nagare::before,
  #faq::before {
    top: -60px;
    height: 120px;
  }
}

.title-width {
  width: min(400px, 80vw);
}

#bansou {
  background-image: url(img/top-back-left.jpg);
  background-size: cover;
  padding: 5rem 0 250px;
}
@media (max-width: 768px) {
  #bansou {
    padding: 4rem 0;
  }
}

.img-size {
  width: min(70%, 80vw);
}

.flow-area .flow-box {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  padding: 1.3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .flow-area .flow-box {
    flex-direction: column;
    text-align: center;
  }
  .flow-area .flow-box p {
    text-align: start;
  }
}
.flow-area .flow-box .no {
  color: var(--kon);
  font-size: 2.5rem;
  margin: -1rem 1rem 0;
}
.flow-area .flow-box img {
  width: 200px;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .flow-area .flow-box img {
    margin-left: 0;
  }
}

#torikumi {
  padding: 6rem 0;
  background-image: url(img/top-back.jpg);
  background-size: cover;
  text-align: center;
}

.tk-baloon {
  color: white;
  font-size: 1.7rem;
  letter-spacing: 0.2rem;
  padding: 1rem;
  border-radius: 6px;
  margin: 1rem;
}
@media (max-width: 768px) {
  .tk-baloon {
    font-size: 1.3rem;
    letter-spacing: 0;
  }
}

#red {
  background-size: auto auto;
  background-color: rgb(233, 69, 24);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, rgb(235, 97, 64) 9px, rgb(235, 97, 64) 11px);
}

#blue {
  background-size: auto auto;
  background-color: rgb(0, 57, 148);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, rgb(32, 92, 170) 9px, rgb(32, 92, 170) 11px);
}

#green {
  background-size: auto auto;
  background-color: rgb(101, 183, 46);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 9px, rgb(147, 199, 90) 9px, rgb(147, 199, 90) 11px);
}

#voice {
  background-image: url(img/kira-y1.svg), url(img/bg1.jpg);
  background-repeat: no-repeat;
  background-position: right 5% top 5%, center;
  background-size: 150px, cover;
  padding: 5rem 0 8rem;
}

/* ベース色は必要に応じて調整 */
:root {
  --muted: #777;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --softshadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.voice-box {
  display: flex;
  align-items: start;
  gap: 1.25rem;
  margin: 4rem 0;
  position: relative;
}

/* 左の写真を“カード風”に */
.voice-box .photo-area {
  position: relative;
  z-index: 2; /* 文章カードより前面に */
  border: 8px solid #fff; /* 白い縁取り */
  box-shadow: var(--shadow);
}

.voice-box .photo-area img {
  display: block;
  width: 340px; /* 画像サイズは調整可 */
  height: auto;
}

/* 右側の吹き出しカード */
.voice-box .voice-area {
  position: relative;
  background-color: #fff;
  border-radius: 22px;
  padding: 1.6rem 2rem 1.6rem 4rem;
  box-shadow: var(--shadow);
  /* 画像と少し重ねる */
  margin-left: -40px; /* 数値で重なり量を調整 */
  margin-top: 50px;
  z-index: 1;
}
@media (max-width: 768px) {
  .voice-box .voice-area {
    margin-top: -30px;
  }
}

/* タイポ周り */
.voice-box .voice-area h4 {
  font-size: 1.3rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  margin: 0.6rem 0 1.2rem 0;
  letter-spacing: 0.1em;
}

.voice-box .voice-area .name {
  color: var(--muted);
  text-align: right;
  margin-top: 0.4rem;
}

/* --- レスポンシブ --- */
@media (max-width: 840px) {
  .voice-box {
    flex-direction: column;
    align-items: center;
  }
  .voice-box .photo-area img {
    width: min(70vw, 260px);
  }
  .voice-box .voice-area {
    margin-left: 0; /* 重なりを解除 */
    width: 100%;
    padding: 1.25rem 1.2rem;
  }
}
#unei {
  background-color: #f1f1f1;
  text-align: center;
  padding: 6rem 0;
}
#unei img {
  width: min(200px, 40vw);
  margin-bottom: 2.5rem;
}

ul.gaiyou-list {
  list-style: none;
  line-height: 1.8;
  padding: 0;
}
ul.gaiyou-list li {
  padding: 1rem;
  border-bottom: 1px solid rgba(182, 182, 182, 0.774);
}
ul.gaiyou-list li span {
  font-weight: 700;
  letter-spacing: 0.2rem;
  padding-right: 1rem;
}

#cnt {
  text-align: center;
  background-image: url(img/kira1.svg), url(img/kira2.svg), url(img/top-back.jpg);
  background-size: 105px, 100px, cover;
  background-position: right 1% top 1%, left 15% bottom 40%, center;
  background-repeat: no-repeat;
  padding: 5rem 0 12rem;
}
#cnt img {
  width: min(300px, 80vw);
}

.btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-orange {
  width: 45%;
  display: flex; /* ← inline-block から変更 */
  align-items: center; /* ← 垂直中央 */
  justify-content: center; /* ← 水平中央 */
  flex-direction: column; /* ← 2行の時も縦に並ぶように */
  background-color: #d94b1a; /* 濃いオレンジ */
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 0 #b5370c; /* 下に影 */
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.4;
  letter-spacing: 0.1rem;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .btn-orange {
    width: 100%;
  }
}

.btn-orange span {
  display: block;
  font-size: 0.85rem;
  font-weight: normal;
}

.btn-orange:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #b5370c;
}

.btn-orange:active {
  transform: translateY(4px);
  box-shadow: none;
}

/* 小さい文字がある方（電話で予約する）をやや高さ調整 *//*# sourceMappingURL=mikata.css.map */