@charset "UTF-8";

/* ============================
   リセット・共通
============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*
  1920pxデザイン基準のスケーリング。
  1rem = 10px（1920px時）として全数値をremで指定し、
  画面幅に比例して全体が縮尺される（10 / 1920 * 100 = 0.520833vw）。
  1280px以下はメディアクエリで固定サイズ・レイアウト切替。
*/
html {
  font-size: 0.520833vw;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ul,
li {
  list-style: none;
}

.container {
  width: 80vw;
  margin: 0 auto;
}

.red {
  color: #C30D23;
}

.teal {
  color: #6BABAD;
}

/* セクション共通見出し */
.section-heading {
  font-size: 4rem;
  font-weight: 700;
  color: #C30D23;
  text-align: center;
  letter-spacing: 0.1em;
}

/* ============================
   ボタン共通
============================ */
.btn-row {
  display: flex;
  justify-content: center;
  gap: 5.6rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 65rem;
  max-width: 100%;
  height: 12rem;
  border-radius: 1.4rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-line {
  background-color: #06C755;
  box-shadow: 0 0.6rem 0 #04963F;
}

.btn-visit {
  background-color: #DD533F;
  box-shadow: 0 0.6rem 0 #B03A29;
}

.btn:hover {
  transform: translateY(0.4rem);
  box-shadow: 0 0.2rem 0 rgba(0, 0, 0, 0.3);
}

.btn-icon {
  display: inline-flex;
  width: 4.4rem;
  height: 4.4rem;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================
   ヘッダー
============================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3.6rem 0 0 10vw;
  z-index: 10;
}

.site-logo {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
}

.site-logo-img {
  width: 40rem;
}

.site-logo-branch {
  font-size: 2.8rem;
  font-weight: 700;
  color: #C30D23;
  line-height: 1.2;
}

/* ============================
   ハンバーガーメニュー
============================ */
.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background-color: #C30D23;
  border: none;
  cursor: pointer;
  z-index: 110;
}

.menu-btn-line {
  display: block;
  width: 4.4rem;
  height: 0.3rem;
  background-color: #FFFFFF;
  transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

.menu-btn-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.2rem;
}

/* 開いた状態：バツ印に変化 */
body.is-menu-open .menu-btn-line:nth-child(1) {
  transform: translateY(1.1rem) rotate(45deg);
}

body.is-menu-open .menu-btn-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;   
  transform: scaleX(0); 
}

body.is-menu-open .menu-btn-line:nth-child(3) {
  transform: translateY(-1.1rem) rotate(-45deg);
}

.global-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 42rem;
  max-width: 100%;
  height: 100vh;
  height: 100dvh;                       
  background-color: #C30D23;
  padding: 14rem 6rem 6rem;
  transform: translateX(100%);
  transition: transform 0.4s;
  z-index: 100;
  overflow-y: auto;                     
  -webkit-overflow-scrolling: touch;    
  overscroll-behavior: contain;        
}

body.is-menu-open .global-menu {
  transform: translateX(0);
}

.global-menu-item a {
  display: block;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  transition: opacity 0.2s;
}

.global-menu-item a:hover {
  opacity: 0.7;
}

/* ============================
   ファーストビュー
============================ */
.hero {
  padding: 20rem 0 0;
  background-color: #FFFFFF;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6rem;
}

.hero-text {
  flex: 0 0 auto;
}

.hero-title {
  font-size: 5.8rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.hero-title-red {
  display: inline-block;
  font-size: 7.2rem;
  color: #C30D23;
  background: linear-gradient(transparent 78%, #FFE100 78%);
  padding-bottom: 0.6rem;
  line-height: 1.3;
}

.hero-lead {
  margin-top: 3.6rem;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.hero-circles {
  display: flex;
  gap: 2.4rem;
  margin-top: 4.4rem;
}

.hero-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 17.6rem;
  height: 17.6rem;
  border-radius: 50%;
  background-color: #C30D23;
  color: #FFFFFF;
  text-align: center;
}

.hero-circle-num {
  font-size: 5.2rem;
  font-weight: 900;
  line-height: 0.8;
}

.hero-circle-text {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.6rem;
}
.hero-circle-text div{
  font-weight: 800;
  font-size:1.4em;
}

.hero-photo {
  position: relative;
  flex: 0 0 46.5%;
  padding-top: 5.6rem;
}

.hero-bubble {
  position: absolute;
  top: 1rem;
  left: 6rem;
  z-index: 2;
  background-color: #C30D23;
  color: #FFFFFF;
  font-size: 1.9rem;
  font-weight: 700;
  padding: 1.2rem 3.4rem;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.hero-bubble::after {
  content: "";
  position: absolute;
  bottom: -0.4rem;
  left: 0.5rem;
  width: 2.4rem;
  height: 1.6rem;
  background-color: #C30D23;
  clip-path: polygon(0 100%, 15% 0, 100% 0);
}

.hero-mascot {
  position: absolute;
  top: 4rem;
  left: -2rem;
  width: 11rem;
  z-index: 2;
}

.hero-photo-img {
  width: 100%;
  border-radius: 0.4rem;
}

.hero-caption {
  margin-top: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
}

.hero .btn-row {
  margin-top: 7rem;
}

/* ============================
   注文住宅の相談窓口とは
============================ */
.about {
  margin-top: -6rem;
  padding: 20rem 0 0;
  background-color: #FDF6DA;
  border-radius: 50% 50% 0 0 / 13rem;
}

.about-heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.6rem;
}

.about-heading-logo {
  width: 26rem;
}

.about-heading-text {
  font-size: 4.8rem;
  font-weight: 900;
  color: #C30D23;
  line-height: 1.1;
}

.about-lead {
  margin-top: 5.6rem;
  font-size: 2.7rem;
  font-weight: 700;
  color: #C30D23;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.06em;
}

.about-body {
  max-width: 90rem;
  margin: 6.4rem auto 0;
}

.about-body p {
  font-size: 1.7rem;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

.about-body p + p {
  margin-top: 4rem;
}

.about-stats {
  display: flex;
  justify-content: center;
  gap: 8rem;
  margin-top: 9rem;
}

.about-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 35rem;
  padding: 4.8rem 3rem;
  background-color: #FFFFFF;
  border-radius: 2.4rem;
  border:solid 4px #F7E8B5;
}

.about-stat-place {
  width: 100%;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.about-stat-num {
  font-size: 7.2rem;
  font-weight: 900;
  color: #C30D23;
  line-height: 1.1;
  margin-right: 1.2rem;
}

.about-stat-unit {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.about-illust {
  text-align: center;
  margin-top: 0rem;
  margin-bottom: 0rem;
  position: relative;
  z-index: 2;
}

.about-illust img {
  width: 48rem;
}

/* ============================
   相談する5つのメリット
============================ */
.merit {
  background-color: #FDF6DA;
  padding-bottom: 14rem;
}

.merit-box {
  background-color: #C30D23;
  border-radius: 6rem;
  padding: 16rem 6.5% 11rem;
  text-align: center;
}

.merit-logo {
  display: block;
  width: 21rem;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.merit-heading {
  display: inline-block;
  margin-top: 3.6rem;
  color: #FFFFFF;
  padding-bottom: 1rem;
  letter-spacing: 0.08em;
}

.merit-heading-small {
  font-size: 3rem;
  font-weight: 700;
}

.merit-heading-strong {
  font-size: 3.8rem;
  font-weight: 900;
  border-bottom: 0.3rem solid #FFFFFF;
}

.merit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  margin-top: 9rem;
}

.merit-card {
  background-color: #FFFFFF;
  border-radius: 4rem;
  box-shadow: 0 0 0 0.5rem rgba(255, 255, 255, 0.35);
  padding: 9rem 5rem;
  text-align: left;
}

.merit-card-num {
  display: block;
  font-size: 4.6rem;
  font-weight: 900;
  color: #C30D23;
  line-height: 1;
}

.merit-card-title {
  margin-top: 2.4rem;
  font-size: 3rem;
  font-weight: 700;
  color: #C30D23;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.merit-card-text {
  margin-top: 3.2rem;
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

.merit-message {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 2.2;
  letter-spacing: 0.08em;
  text-align: center;
}

/* ============================
   CTA
============================ */
.cta {
  background-color: #FDF6DA;
  padding: 9rem 0 13rem;
}

.cta-last {
  background-color: #FFFFFF;
}

.cta-box {
  position: relative;
  background-color: #FFFFFF;
  border: 0.5rem solid #FFDC6C;
  border-radius: 4rem;
  padding: 8rem 7rem 7rem;
}

.cta-mascot {
  position: absolute;
  width: 20rem;
}

.cta-mascot-top {
  top: -6rem;
  right: -3rem;
}

.cta-mascot-bottom {
  left: -5.5rem;
  bottom: -4rem;
}

.cta-logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
}

.cta-logo-img {
  width: 40rem;
}

.cta-logo-branch {
  font-size: 2.4rem;
  font-weight: 700;
  color: #C30D23;
  line-height: 1.2;
}

.cta-heading {
  margin-top: 2.8rem;
  font-size: 4.4rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.06em;
}

.cta .btn-row,
.cta-box .btn-row {
  margin-top: 4.8rem;
}

.cta-bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  margin-top: 5.6rem;
}

.cta-bottom-text {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.04em;
}

.cta-zero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background-color: #C30D23;
  color: #FFFFFF;
  text-align: center;
  position:absolute;
  right:2.5rem;
  transform: rotate(10deg);
}

.cta-zero-num {
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.1;
}

.cta-zero-text {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0.4rem;
}

/* ============================
   こんな方は相談窓口に
============================ */
.donata {
  background-color: #E7F2F3;
  padding: 13rem 0 10rem;
}

.donata-heading {
  font-size: 4rem;
  font-weight: 900;
  color: #333333;
  text-align: center;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.donata-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.4rem 9rem;
  margin-top: 8rem;
}

.donata-card {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 0.6rem solid #6BABAD;
  border-radius: 3.6rem;
  min-height: 16.8rem;
  padding: 3.6rem 4.8rem;
}

.donata-card p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ============================
   赤帯バナー
============================ */
.banner-wrap {
  background: linear-gradient(180deg, #E7F2F3 50%, #FDF6DA 50%);
}

.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #C30D23;
  border-radius: 3rem;
  padding: 0 7rem;
  height: 32rem;
}

.banner-staff {
  width: 25rem;
  align-self: flex-end;
}

.banner-center {
  text-align: left;
}

.banner-note {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.banner-main {
  display: flex;
  align-items: center;
  gap: 3.6rem;
  margin-top: 1rem;
}

.banner-logo {
  width: 30rem;
  filter: brightness(0) invert(1);
}

.banner-text {
  font-size: 4rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

/* ============================
   サービス内容
============================ */
.service {
  background-color: #FDF6DA;
  padding: 13rem 0 4rem;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11rem 12rem;
  margin-top: 9rem;
}

.service-img {
  width: 100%;
}

.service-title {
  margin-top: 4.8rem;
  font-size: 2.7rem;
  font-weight: 700;
  color: #C30D23;
  text-align: center;
  letter-spacing: 0.08em;
}

.service-text {
  margin-top: 2.8rem;
  font-size: 2rem;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

/* ============================
   スタッフ紹介
============================ */
.staff {
  background-color: #FFFFFF;
  padding: 13rem 0 14rem;
}

.staff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16rem;
  margin-top: 10rem;
}

.staff-item {
  text-align: left;
}

.staff-photo {
  display: block;
  width: 35rem;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
}

.staff-role {
  margin-top: 7rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.staff-name {
  margin-top: 0.8rem;
  font-size: 3rem;
  font-weight: 700;
  color: #C30D23;
  letter-spacing: 0.08em;
}

.staff-text {
  margin-top: 3.2rem;
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.staff-label {
  margin-top: 4.8rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.staff-list {
  margin-top: 1.6rem;
}

.staff-list li {
  font-size: 1.7rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

/* ============================
   お客様の声
============================ */
.voice {
  background-color: #FDF6DA;
  padding: 13rem 0 12rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
  margin-top: 9rem;
}

.voice-img {
  width: 100%;
}

.voice-text {
  margin-top: 3.2rem;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.voice-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46rem;
  max-width: 100%;
  margin: 9rem auto 0;
  padding: 2.2rem 2rem;
  background-color: #C30D23;
  border-radius: 999px;
  text-align: center;
  transition: opacity 0.2s;
}

.voice-btn:hover {
  opacity: 0.85;
}

.voice-btn-main {
  font-size: 2.1rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.06em;
}

.voice-btn-note {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 0.4rem;
}

/* ============================
   よくあるご質問
============================ */
.faq {
  background-color: #FFFFFF;
  padding: 15rem 0 16rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem 10rem;
  margin-top: 11rem;
}

.faq-card {
  background-color: #FFFFFF;
  border: 0.6rem solid #EF746F;
  border-radius: 4rem;
  padding: 7rem 4.5rem;
}

.faq-q {
  font-size: 2.4rem;
  font-weight: 700;
  color: #C30D23;
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.faq-a {
  margin-top: 4.4rem;
  font-size: 1.8rem;
  line-height: 2.3;
  letter-spacing: 0.03em;
}

/* ============================
   アクセス
============================ */
.access {
  background-color: #FDF6DA;
  padding: 13rem 0 14rem;
}

.access-inner {
  display: flex;
  gap: 5.6rem;
  margin-top: 10rem;
}

.access-left {
  flex: 0 0 46.5%;
}

.access-map img {
  width: 100%;
}

.access-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
}

.access-info-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.03em;
}

.access-shop {
  width: 30rem;
  flex-shrink: 0;
  margin-top: 6.4rem;
}

.access-right {
  flex: 1;
  padding-top: 7.6rem;
}

.access-interior {
  display: block;
  width: 72%;
}

.access-kids {
  display: flex;
  justify-content: flex-end;
  align-items:flex-end;
  gap: 2.8rem;
  margin-top: 3.6rem;
}

.access-kids-note {
  position:relative
}

.access-kids-note p {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  white-space: nowrap;
}

.access-mascot {
  width: 9rem;
}

.access-kids-img {
  width: 72%;
}

/* ============================
   フッター
============================ */
.site-footer {
  background-color: #C30D23;
  padding: 11rem 0 6rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
}

.footer-logo-img {
  width: 21rem;
  filter: brightness(0) invert(1);
}

.footer-logo-branch {
  font-size: 2.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.footer-link {
  display: inline-block;
  margin-top: 3.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-info {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.footer-copyright {
  margin-top: 9rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.06em;
}

/* ============================
   追加：メディア掲載・ご相談予約フォーム・送信完了
============================ */
/* ============================
   メディア掲載（佐賀新聞）
============================ */
.media {
  background-color: #FFFFFF;
  padding: 13rem 0 0;
}

.media-box {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: 7rem 7rem 6rem;
  background-color: #FFFFFF;
  border: 0.5rem solid #FFDC6C;
  border-radius: 4rem;
  text-align: center;
}

.media-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.6rem 3.2rem;
  background-color: #C30D23;
  border-radius: 999px;
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6;
  white-space: nowrap;
}

.media-heading {
  font-size: 3.6rem;
  font-weight: 900;
  color: #333333;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.media-heading-strong {
  display: inline-block;
  font-size: 4.4rem;
  color: #C30D23;
  background: linear-gradient(transparent 78%, #FFE100 78%);
  line-height: 1.3;
}

.media-text {
  margin-top: 2.8rem;
  font-size: 1.8rem;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

.media-date {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #666666;
}

.media-img {
  display: block;
  width: 60rem;
  max-width: 100%;
  margin: 4.8rem auto 0;
  border-radius: 1.2rem;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.12);
}

/* ============================
   ご相談予約フォーム
============================ */
.contact {
  background-color: #FFFFFF;
  padding: 13rem 0 14rem;
}

.contact-lead {
  margin-top: 4rem;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.04em;
}

.contact-form {
  max-width: 132rem;
  margin: 8rem auto 0;
  padding: 7rem 9rem 8rem;
  background-color: #FDF6DA;
  border: 0.5rem solid #FFDC6C;
  border-radius: 4rem;
}

/* ハニーポット（bot対策）：画面外に隠す */
.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-row {
  display: grid;
  grid-template-columns: 34rem 1fr;
  gap: 4rem;
  align-items: start;
  padding: 4.4rem 0;
  border-bottom: 0.2rem solid #F0E4B8;
}

.contact-hp + .contact-row {
  padding-top: 0;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding-top: 2rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.contact-required,
.contact-optional {
  flex-shrink: 0;
  padding: 0.3rem 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: #FFFFFF;
}

.contact-required {
  background-color: #C30D23;
}

.contact-optional {
  background-color: #999999;
}

.contact-field input[type="text"],
.contact-field input[type="tel"],
.contact-field input[type="email"],
.contact-field input[type="date"],
.contact-field select,
.contact-field textarea {
  display: block;
  width: 100%;
  min-height: 8.4rem;
  padding: 2.2rem 3rem;
  border: 0.3rem solid #E3D9B4;
  border-radius: 1.6rem;
  background-color: #FFFFFF;
  font-family: inherit;
  font-size: 2.2rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.6;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-field select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 7rem;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23333333' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2.8rem center;
  background-size: 1.8rem auto;
  cursor: pointer;
}
.contact-field input[type="date"] {
  -webkit-appearance: none;   /* iOSの独自幅・独自見た目を解除してはみ出しを防ぐ */
  appearance: none;
  min-width: 0;               /* グリッド内で親幅より広がらないようにする */
  max-width: 100%;
  text-align: left;
  position: relative;
}

.contact-field input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}

/* iOSのみ：未入力時に空白ではなく案内文を表示 */
@supports (-webkit-touch-callout: none) {
  .contact-field input[type="date"]:invalid::before {
    content: "日付を選択してください";
    color: #AAAAAA;
  }
}

.contact-field textarea {
  min-height: 28rem;
  resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: #C30D23;
  box-shadow: 0 0 0 0.4rem rgba(195, 13, 35, 0.12);
}

.contact-field ::placeholder {
  color: #AAAAAA;
}

.contact-datetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.4rem;
}

.contact-note {
  margin-top: 1.6rem;
  font-size: 1.7rem;
  line-height: 1.8;
  color: #666666;
}

.contact-error {
  margin-top: 1rem;
  font-size: 1.9rem;
  font-weight: 700;
  color: #C30D23;
}

.contact-error[hidden] {
  display: none;
}

.contact-submit {
  display: flex;
  justify-content: center;
  margin-top: 7rem;
}

.btn-submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
  background-color: #C30D23;
  box-shadow: 0 0.6rem 0 #8E0A1A;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============================
   送信完了・エラーページ
============================ */
.thanks {
  background-color: #FDF6DA;
  padding: 22rem 0 16rem;
}

.thanks-box {
  max-width: 110rem;
  margin: 0 auto;
  padding: 8rem 7rem 7rem;
  background-color: #FFFFFF;
  border: 0.5rem solid #FFDC6C;
  border-radius: 4rem;
  text-align: center;
}

.thanks-mascot {
  display: block;
  width: 16rem;
  margin: 0 auto 2.4rem;
}

.thanks-heading {
  font-size: 4rem;
  font-weight: 900;
  color: #C30D23;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.thanks-text {
  margin-top: 3.2rem;
  font-size: 1.9rem;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.thanks-note {
  margin-top: 2rem;
  font-size: 1.5rem;
  line-height: 2;
  color: #666666;
}

.thanks-errors {
  display: inline-block;
  margin-top: 3.2rem;
  text-align: left;
}

.thanks-errors li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  color: #C30D23;
  line-height: 2.2;
}

.thanks-errors li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.thanks .btn-row {
  margin-top: 5.6rem;
}

.btn-back {
  background-color: #C30D23;
  box-shadow: 0 0.6rem 0 #8E0A1A;
}

/* --- タブレット（〜1280px） --- */
@media screen and (max-width: 1280px) {
  /* メディア掲載 */
  .media {
    padding: 9rem 0 0;
  }

  .media-box {
    padding: 4.8rem 3.2rem 4rem;
    border-width: 0.4rem;
    border-radius: 2.8rem;
  }

  .media-label {
    padding: 0.5rem 2.4rem;
    font-size: 1.3rem;
  }

  .media-heading {
    font-size: 2.6rem;
  }

  .media-heading-strong {
    font-size: 3.2rem;
  }

  .media-text {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .media-date {
    font-size: 1.3rem;
  }

  .media-img {
    width: 48rem;
    margin-top: 3.2rem;
  }

  /* ご相談予約フォーム */
  .contact {
    padding: 9rem 0 10rem;
  }

  .contact-lead {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }

  .contact-form {
    max-width: 68rem;
    margin-top: 4.8rem;
    padding: 4rem 4rem 4.8rem;
    border-width: 0.4rem;
    border-radius: 2.8rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2.8rem 0;
    border-bottom-width: 0.1rem;
  }

  .contact-label {
    padding-top: 0;
    font-size: 1.7rem;
  }

  .contact-required,
  .contact-optional {
    font-size: 1.1rem;
    padding: 0.1rem 1rem;
  }

  .contact-field input[type="text"],
  .contact-field input[type="tel"],
  .contact-field input[type="email"],
  .contact-field input[type="date"],
  .contact-field select,
  .contact-field textarea {
    min-height: 5.6rem;
    padding: 1.4rem 1.6rem;
    border-width: 0.2rem;
    border-radius: 1rem;
    font-size: 1.6rem;   /* 16px未満だとiOSで入力時に自動ズームされるため */
  }

  .contact-field select {
    padding-right: 4.4rem;
    background-position: right 1.6rem center;
    background-size: 1.2rem auto;
  }

  .contact-field textarea {
    min-height: 16rem;
  }

  .contact-note {
    font-size: 1.3rem;
  }

  .contact-error {
    font-size: 1.4rem;
  }

  .contact-submit {
    margin-top: 4rem;
  }

  /* 送信完了 */
  .thanks {
    padding: 14rem 0 10rem;
  }

  .thanks-box {
    padding: 5.6rem 6% 4.8rem;
    border-width: 0.4rem;
    border-radius: 2.8rem;
  }

  .thanks-mascot {
    width: 11rem;
  }

  .thanks-heading {
    font-size: 2.8rem;
  }

  .thanks-text {
    margin-top: 2.4rem;
    font-size: 1.5rem;
  }

  .thanks-note {
    font-size: 1.3rem;
  }

  .thanks-errors li {
    font-size: 1.5rem;
  }

  .thanks .btn-row {
    margin-top: 4rem;
  }
}

/* --- スマートフォン（〜600px） --- */
@media screen and (max-width: 600px) {
  /* メディア掲載 */
  .media-box {
    padding: 3.6rem 2.4rem 3.2rem;
    border-width: 0.3rem;
    border-radius: 2rem;
  }

  .media-heading {
    font-size: 2rem;
  }

  .media-heading-strong {
    font-size: 2.4rem;
  }

  .media-text {
    font-size: 1.4rem;
    text-align: left;
  }

  /* ご相談予約フォーム */
  .contact-lead {
    font-size: 1.4rem;
  }

  .contact-form {
    padding: 2.8rem 2rem 3.2rem;
    border-width: 0.3rem;
    border-radius: 2rem;
  }

  .contact-label {
    font-size: 1.5rem;
  }

  .contact-datetime {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .contact-note {
    font-size: 1.2rem;
  }

  /* 送信完了 */
  .thanks {
    padding: 10rem 0 8rem;
  }

  .thanks-box {
    padding: 4rem 6% 3.6rem;
    border-width: 0.3rem;
    border-radius: 2rem;
  }

  .thanks-heading {
    font-size: 2.2rem;
  }

  .thanks-text {
    font-size: 1.4rem;
  }

  .thanks-note {
    font-size: 1.2rem;
  }
}

/* ============================
   タブレット（〜1280px）
   vwスケーリングを解除して固定サイズ・段組み変更
============================ */
@media screen and (max-width: 1280px) {
  html {
    font-size: 10px;
  }

  .container {
    width: 88vw;
  }

  .section-heading {
    font-size: 3rem;
  }

  /* ボタン */
  .btn-row {
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
  }

  .btn {
    width: 100%;
    max-width: 56rem;
    height: 8rem;
    font-size: 2.1rem;
  }

  .btn-icon {
    width: 3.4rem;
    height: 3.4rem;
  }

  /* ヘッダー・メニュー */
  .site-header {
    padding: 2.4rem 0 0 6vw;
  }

  .site-logo-img {
    width: 15rem;
  }

  .site-logo-branch {
    font-size: 2rem;
  }

  .menu-btn {
    width: 7.6rem;
    height: 7.6rem;
    gap: 0.6rem;
  }

  .menu-btn-line {
    width: 3.4rem;
    height: 0.2rem;
  }

  .menu-btn-label {
    font-size: 1.1rem;
  }

  .global-menu {
    width: 36rem;
    padding: 11rem 4.4rem 4.4rem;
  }

  .global-menu-item a {
    font-size: 1.7rem;
    padding: 1.8rem 0;
  }

  /* ファーストビュー */
  .hero {
    padding-top: 12rem;
  }

  .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-title-red {
    font-size: 5rem;
  }

  .hero-lead {
    margin-top: 2.4rem;
    font-size: 2rem;
  }

  .hero-circles {
    gap: 1.8rem;
    margin-top: 3.2rem;
  }

  .hero-circle {
    width: 13rem;
    height: 13rem;
  }

  .hero-circle-num {
    font-size: 3.6rem;
  }

  .hero-circle-text {
    font-size: 1.3rem;
  }

  .hero-photo {
    flex: none;
    width: 100%;
    max-width: 64rem;
    padding-top: 4.4rem;
  }

  .hero-bubble {
    left: 7rem;
    font-size: 1.5rem;
    padding: 1rem 2.4rem;
  }

  .hero-mascot {
    width: 8.5rem;
    top: 3.2rem;
    left: -1rem;
  }

  .hero-caption {
    font-size: 1.5rem;
  }

  .hero .btn-row {
    margin-top: 5rem;
  }

  /* とは */
  .about {
    margin-top: -4rem;
    padding-top: 13rem;
    border-radius: 50% 50% 0 0 / 6rem;
  }

  .about-heading-logo {
    width: 19rem;
  }

  .about-heading-text {
    font-size: 3.4rem;
  }

  .about-lead {
    margin-top: 4rem;
    font-size: 2rem;
  }

  .about-body {
    max-width: 72rem;
    margin-top: 4.8rem;
  }

  .about-body p {
    font-size: 1.5rem;
  }

  .about-body p + p {
    margin-top: 2.8rem;
  }

  .about-stats {
    gap: 3.2rem;
    margin-top: 6.4rem;
  }

  .about-stat {
    width: 32rem;
    padding: 3.2rem 2.4rem;
    border-radius: 2rem;
  }

  .about-stat-place {
    font-size: 1.7rem;
  }

  .about-stat-num {
    font-size: 5.2rem;
  }

  .about-stat-unit {
    font-size: 1.7rem;
  }

  .about-illust {
    margin-top: 0rem;
    margin-bottom: 0rem;
  }

  .about-illust img {
    width: 32rem;
  }

  /* メリット */
  .merit {
    padding-bottom: 10rem;
  }

  .merit-box {
    border-radius: 4rem;
    padding: 11rem 6% 7rem;
  }

  .merit-logo {
    width: 16rem;
  }

  .merit-heading-small {
    font-size: 2.2rem;
  }

  .merit-heading-strong {
    font-size: 2.8rem;
  }

  .merit-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-top: 5.6rem;
  }

  .merit-card {
    border-radius: 2.8rem;
    padding: 4.8rem 3.6rem;
  }

  .merit-card-num {
    font-size: 3.4rem;
  }

  .merit-card-title {
    margin-top: 1.6rem;
    font-size: 2.4rem;
  }

  .merit-card-text {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .merit-message {
    font-size: 2rem;
    padding: 2rem 0;
  }

  /* CTA */
  .cta {
    padding: 7rem 0 9rem;
  }

  .cta-box {
    border-width: 0.4rem;
    border-radius: 2.8rem;
    padding: 5.6rem 6% 4.8rem;
  }

  .cta-mascot {
    width: 9rem;
  }

  .cta-mascot-top {
    top: -4.4rem;
    right: -1rem;
  }

  .cta-mascot-bottom {
    bottom:0rem;
    left:0.5rem;
  }

  .cta-logo-img {
    width: 15rem;
  }

  .cta-logo-branch {
    font-size: 1.8rem;
  }

  .cta-heading {
    margin-top: 2rem;
    font-size: 3rem;
  }

  .cta .btn-row,
  .cta-box .btn-row {
    margin-top: 3.2rem;
  }

  .cta-bottom {
    flex-direction: column;
    gap: 2.4rem;
    margin-top: 4rem;
  }

  .cta-bottom-text {
    font-size: 1.8rem;
  }

  .cta-zero {
    width: 11rem;
    height: 11rem;
  }

  .cta-zero-num {
    font-size: 3rem;
  }

  .cta-zero-text {
    font-size: 1.2rem;
  }

  /* こんな方 */
  .donata {
    padding: 9rem 0 7rem;
  }

  .donata-heading {
    font-size: 2.8rem;
  }

  .donata-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4.8rem;
  }

  .donata-card {
    border-width: 0.2rem;
    border-radius: 2.4rem;
    min-height: 0;
    padding: 2.4rem 3.2rem;
  }

  .donata-card p {
    font-size: 1.7rem;
  }

  /* 赤帯バナー */
  .banner {
    border-radius: 2rem;
    padding: 3.6rem 3.2rem;
    height: auto;
    gap: 2rem;
  }

  .banner-staff {
    display: none;
  }

  .banner-center {
    margin: 0 auto;
    text-align: center;
  }

  .banner-note {
    font-size: 1.6rem;
  }

  .banner-main {
    flex-direction: column;
    gap: 1.6rem;
    margin-top: 1.2rem;
  }

  .banner-logo {
    width: 22rem;
  }

  .banner-text {
    font-size: 2.6rem;
    text-align: center;
  }

  /* サービス内容 */
  .service {
    padding: 9rem 0 2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 6.4rem;
    margin-top: 5.6rem;
  }

  .service-item {
    max-width: 64rem;
    margin: 0 auto;
  }

  .service-title {
    margin-top: 2.8rem;
    font-size: 2.1rem;
  }

  .service-text {
    margin-top: 1.6rem;
    font-size: 1.5rem;
  }

  /* スタッフ紹介 */
  .staff {
    padding: 9rem 0 10rem;
  }

  .staff-grid {
    grid-template-columns: 1fr;
    gap: 8rem;
    margin-top: 5.6rem;
  }

  .staff-item {
    max-width: 64rem;
    margin: 0 auto;
  }

  .staff-photo {
    width: 30rem;
  }

  .staff-role {
    margin-top: 4rem;
    font-size: 1.5rem;
  }

  .staff-name {
    font-size: 2.4rem;
  }

  .staff-text {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  .staff-label {
    margin-top: 3.2rem;
    font-size: 1.5rem;
  }

  .staff-list {
    margin-top: 0.8rem;
  }

  .staff-list li {
    font-size: 1.5rem;
  }

  /* お客様の声 */
  .voice {
    padding: 9rem 0 8rem;
  }

  .voice-grid {
    grid-template-columns: 1fr;
    gap: 4.4rem;
    margin-top: 5.6rem;
  }

  .voice-item {
    max-width: 56rem;
    margin: 0 auto;
  }

  .voice-text {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }

  .voice-btn {
    width: 34rem;
    margin-top: 5.6rem;
    padding: 1.6rem 2rem;
  }

  .voice-btn-main {
    font-size: 1.7rem;
  }

  .voice-btn-note {
    font-size: 1.1rem;
  }

  /* よくあるご質問 */
  .faq {
    padding: 9rem 0 10rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    margin-top: 5.6rem;
  }

  .faq-card {
    border-width: 0.2rem;
    border-radius: 2.4rem;
    padding: 4rem 3.2rem;
  }

  .faq-q {
    font-size: 1.9rem;
  }

  .faq-a {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  /* アクセス */
  .access {
    padding: 9rem 0 10rem;
  }

  .access-inner {
    flex-direction: column;
    gap: 4rem;
    margin-top: 5.6rem;
  }

  .access-left {
    flex: none;
  }

  .access-info-row {
    gap: 2rem;
    margin-top: 2.4rem;
  }

  .access-info-text {
    font-size: 1.5rem;
  }

  .access-shop {
    width: 18rem;
    margin-top: 0;
  }

  .access-right {
    padding-top: 0;
  }

  .access-interior {
    width: 100%;
  }

  .access-kids {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2.4rem;
  }

  .access-kids-note p {
    font-size: 1.3rem;
  }

  .access-mascot {
    width: 5.6rem;
  }

  .access-kids-img {
    width: 100%;
  }

  /* フッター */
  .site-footer {
    padding: 7rem 0 4rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 3.2rem;
  }

  .footer-logo-img {
    width: 15rem;
  }

  .footer-logo-branch {
    font-size: 1.9rem;
  }

  .footer-link {
    margin-top: 2rem;
    font-size: 1.4rem;
  }

  .footer-info {
    font-size: 1.4rem;
  }

  .footer-copyright {
    margin-top: 5.6rem;
    font-size: 1.2rem;
  }
}

/* ============================
   スマートフォン（〜600px）
============================ */
@media screen and (max-width: 600px) {
  .container {
    width: 90vw;
  }

  .section-heading {
    font-size: 2.4rem;
  }

  .btn {
    height: 6.8rem;
    font-size: 1.7rem;
    gap: 1.2rem;
    border-radius: 1rem;
  }

  .btn-icon {
    width: 2.8rem;
    height: 2.8rem;
  }

  /* ヘッダー・メニュー */
  .site-logo-img {
    width: 20rem;
  }

  .site-logo-branch {
    font-size: 1.6rem;
  }

  .menu-btn {
    width: 6rem;
    height: 6rem;
    gap: 0.5rem;
  }

  .menu-btn-line {
    width: 2.6rem;
  }

  .menu-btn-label {
    font-size: 0.9rem;
  }

  body.is-menu-open .menu-btn-line:nth-child(1) {
    transform: translateY(0.7rem) rotate(45deg);
  }

  body.is-menu-open .menu-btn-line:nth-child(3) {
    transform: translateY(-0.7rem) rotate(-45deg);
  }

  .global-menu {
    width: 100%;
    padding: 9rem 3.2rem 3.2rem;
  }

  /* ファーストビュー */
  .hero {
    padding-top: 9rem;
  }

  .hero-title {
    font-size: 2.9rem;
  }

  .hero-title-red {
    font-size: 3.6rem;
  }

  .hero-lead {
    font-size: 1.6rem;
  }

  .hero-circles {
    gap: 1.2rem;
  }

  .hero-circle {
    width: 10rem;
    height: 10rem;
  }

  .hero-circle-num {
    font-size: 2.9rem;
  }

  .hero-circle-text {
    font-size: 1.1rem;
  }

  .hero-bubble {
    left: 5rem;
    font-size: 1.15rem;
    padding: 0.8rem 1.6rem;
  }

  .hero-mascot {
    width: 6.4rem;
    top: 2.8rem;
    left: -0.5rem;
  }

  .hero-caption {
    font-size: 1rem;
  }

  /* とは */
  .about-heading-logo {
    width: 14rem;
  }

  .about-heading-text {
    font-size: 2.6rem;
  }

  .about-lead {
    font-size: 1.6rem;
  }

  .about-body p {
    font-size: 1.3rem;
    text-align: justify;
  }

  .about-stats {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .about-stat {
    width: 100%;
    max-width: 30rem;
  }

  .about-illust img {
    width: 22rem;
  }

  /* メリット */
  .merit-box {
    border-radius: 2.4rem;
    padding: 8rem 6% 5rem;
  }

  .merit-logo {
    width: 13rem;
  }

  .merit-heading-small {
    font-size: 1.8rem;
  }

  .merit-heading-strong {
    font-size: 2.2rem;
  }

  .merit-card {
    border-radius: 2rem;
    padding: 3.2rem 2.4rem;
  }

  .merit-card-num {
    font-size: 2.8rem;
  }

  .merit-card-title {
    font-size: 1.9rem;
  }

  .merit-card-text {
    font-size: 1.3rem;
  }

  .merit-message {
    font-size: 1.7rem;
  }

  /* CTA */
  .cta-box {
    border-width: 0.3rem;
    border-radius: 2rem;
    padding: 4.4rem 6% 3.6rem;
  }

  .cta-mascot {
    width: 10rem;
    bottom:-10rem;
  }

  .cta-mascot-top {
    top: -4rem;
    right: -0.5rem;
  }

  .cta-logo-img {
    width: 20rem;
  }

  .cta-logo-branch {
    font-size: 1.5rem;
  }

  .cta-heading {
    font-size: 2rem;
  }

  .cta-bottom-text {
    font-size: 1.2rem;
  }

  .cta-zero {
    width: 9rem;
    height: 9rem;
    bottom:-9rem;
    right:-2rem;
  }

  .cta-zero-num {
    font-size: 2.4rem;
  }

  .cta-zero-text {
    font-size: 1rem;
  }

  /* こんな方 */
  .donata-heading {
    font-size: 2.2rem;
  }

  .donata-card {
    border-radius: 1.8rem;
    padding: 2rem 2.4rem;
  }

  .donata-card p {
    font-size: 1.5rem;
  }

  /* 赤帯バナー */
  .banner {
    border-radius: 1.6rem;
    padding: 2.8rem 2rem;
  }

  .banner-note {
    font-size: 1.3rem;
  }

  .banner-logo {
    width: 16rem;
  }

  .banner-text {
    font-size: 1.8rem;
  }

  /* サービス内容 */
  .service-title {
    font-size: 1.8rem;
  }

  .service-text {
    font-size: 1.4rem;
  }

  /* スタッフ紹介 */
  .staff-photo {
    width: 22rem;
  }

  .staff-role {
    margin-top: 2.8rem;
    font-size: 1.3rem;
  }

  .staff-name {
    font-size: 2rem;
  }

  .staff-text,
  .staff-label,
  .staff-list li {
    font-size: 1.3rem;
  }

  /* お客様の声 */
  .voice-text {
    font-size: 1.5rem;
  }

  .voice-btn {
    width: 28rem;
  }

  .voice-btn-main {
    font-size: 1.5rem;
  }

  .voice-btn-note {
    font-size: 1rem;
  }

  /* よくあるご質問 */
  .faq-card {
    border-radius: 2rem;
    padding: 3.2rem 2.4rem;
  }

  .faq-q {
    font-size: 1.7rem;
  }

  .faq-a {
    font-size: 1.4rem;
  }

  /* アクセス */
  .access-info-text {
    font-size: 1.2rem;
  }

  .access-shop {
    width: 12rem;
  }

  .access-mascot {
    width: 5rem;
  }

  .access-kids-note p {
    font-size: 1.2rem;
  }

  /* フッター */
  .footer-logo-img {
    width: 14rem;
  }

  .footer-logo-branch {
    font-size: 1.7rem;
  }

  .footer-link,
  .footer-info {
    font-size: 1.3rem;
  }

  .footer-copyright {
    font-size: 1.1rem;
  }
	.site-footer {
    padding: 7rem 0 12rem;
  }
}

.spFootBanner{
	width:100%;
	background:#fff;
	padding:2px;
	position:fixed;
	bottom: 0;
	left:0;
	display: flex;
	justify-content: space-between;
}
.banBox1{
	width:33%;
	text-align: center
}
.button a{
	display: block;
	padding:1.4em 0;
	border-radius:2px;
	font-size:1.6rem;
	font-weight: bold
}
a.call{
	background:#F4C73B;
}
a.lineaccess{
	background:#06C755;
	color:#fff;
}
a.accessbtn{
	background:#DD533F;
	color:#fff;
}


@media screen and (min-width: 600px) {
.spFootBanner{
	display: none;
}
	}