@charset "utf-8";
/* CSS Document */

/*分からないこともある。調べる。font-familyはそのままでいい*/
body {
	margin: 0;
	padding: 0;
	background-image: url(../images/bg_header.png);
	background-repeat: repeat-x;
	color: #333333;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 87.5%;
	line-height: 1.5em;
}

/*ロゴ中央 中央揃えでmargin: 0 auto;を使う場合は、基本的にwidthを指定する必要がある。width: 1000px;絶対に横幅を変えたくないデザイン*/
header .headerContent .logo img {
  display: block;
  width: 100%;
  max-width: 700px;
  height: auto;
  margin: 0 auto;
}

/* ヘッダー全体 */
header.header1 {
  height: 200px;             /* ヘッダーの高さ */
  background-color: #fff;    /* お好みで背景色 */
}

/* h1内の横並び・中央揃え */
header.header1 h1 {
  display: flex;             /* 横並び */
  align-items: center;       /* 縦中央揃え */
  justify-content: center;   /* 横中央揃え */
  gap: 10vw;                  /* 画面幅に応じた間隔 */
  height: 100%;              /* 親高さに合わせる */
  margin: 0;                 /* 余白リセット */
}

/* 共通：画像表示設定 */
header.header1 h1 img {
  display: block;            /* 余白を消す */
}

/* ロゴ画像 */
header.header1 h1 a.logo img {
  height: 140px;             /* ロゴ高さに統一 */
  width: auto;               /* 横比率維持 */
}

/* 丸画像 */
header.header1 h1 a.link img {
  height: 100px;             /* 丸画像はロゴより小さく */
  width: auto;
}

/* 📱 スマホ対応 */
@media screen and (max-width: 767px) {
  header.header1 h1 a.logo img {
    height: 100px;           /* ロゴ縮小 */
  }
  header.header1 h1 a.link img {
    height: 50px;            /* 丸画像縮小 */
  }
  header.header1 h1 {
    gap: 25px;               /* スマホで間隔を広めに調整 */
    flex-wrap: wrap;         /* 画面幅が狭い場合は折り返しも可能 */
  }
}

/*スライダ*/

.slider {
	margin: 0 auto;
	width: 100%;
}

.banaers {
	margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

section h2, p {
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
}

#opinionbox {
	margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#shopinfo {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#map {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#mymap {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#parking {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#shopfront {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

#comment1 {
  margin: 0 auto;
	max-width: 1000px;
  width: 100%;
}

footer p {
	text-align:  center;
}

/* 共通：中央揃え＋比率維持 */
img,
iframe {
  display: block;
  margin: 0 auto;
  height: auto;
}

/* 📱 スマホだけ：画面いっぱい */
@media screen and (max-width: 767px) {
  img,
  iframe {
    width: 100%;
    max-width: 100%;
  }
}



.banaers {
  display: flex;
  justify-content: center;  /* 中央寄せ */
  gap: 20px;                /* バナー間の余白 */
}

/* 📱 スマホ：縦並び */
@media screen and (max-width: 767px) {
  .banaers {
    flex-direction: column;
    align-items: center;
  }
}



/*スライダー*/

.slider {
  max-width: 100%;
  overflow: hidden;   /* ←はみ出し防止の要 */
}

.slider img {
  max-width: 100%;
  height: auto;
  display: block;
}



/* バナー画像 310*310*/
.banaers img {
  display: block;
  margin: 0 auto;
 max-width: 100%;
  height: auto;
  
}

.banaers {
  display: flex;
  justify-content: center;
  gap: 20px;              /* バナー間の余白 */
  max-width: 700px;     /* ← 横幅の上限 */
  margin: 0 auto;        /* 全体を中央へ */
  width: 700px;        /* ← max-width ではなく width */
  
}

/*はみ出ないように*/
.banaers {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;   /* ←これ超重要 */
  margin: 0 auto;
}

.banaers img {
  max-width: 100%;
  height: auto;
}


.banaers a:hover img,
.banaers a:active img {
  transform: scale(1.04);
}
/*背景をcssで作るやり方*/
.banaers {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/***** cssで丸い背景を作る *****/
.circle-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 310px;              /* 背景の大きさ */
  height: 310px;
  background-color: #fdecef; /* ベージュ#e9dccb　もう少しピンク#ecd6d0 #f0cfc8*/
  border-radius: 50%;
  text-decoration: none;
}
/*透明感*/
.circle-link {
   border-radius: 50%;
  position: relative;
  overflow: hidden;
  
}

/* すでにある「浮く」ホバーに色だけ足す */
.circle-link:hover {
  background-color: #f7d6dd; /* ホバー時：少しピンク寄り */
}


/* スマホ：丸アイコンを押した瞬間 */
@media (hover: none) {

  .circle-link:active {
    background-color: #f4c6d4;      /* 少し濃いピンク */
    transform: translateY(3px) scale(0.96);
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
  }
}



/* 中の画像 */
.circle-link img {
  width: 200px;   /* 少し小さくして余白を作る */
  height: auto;
  display: block;
}

/*丸アイコン　スマホ対応*/
@media screen and (max-width: 600px) {
  .circle-link {
    width: 260px;
    height: 260px;
  }

  .circle-link img {
    width: 160px;/*スマホで見たときの画像の大きさ*/
  }
}


/* ご意見・ご要望：完全隔離 */
.opinion {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  overflow: hidden;
}

.opinion h2 {
  margin: 30px auto 20px;
  padding: 0;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-align: center;

  /* ← スマホはみ出し完全防止 */
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media screen and (max-width: 767px) {
  .opinion h2 {
    letter-spacing: 0.05em;
  }
}

#opinionbox {
  width: 100%;
  text-align: center;
}

#opinionbox img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
}

/* ===== ご意見・ご要望 デザイン調整 ===== */
.opinion {
  padding: 20px 0 60px;
}

.opinion h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.75;
  margin: 40px auto 24px;
  text-align: center;
  color: #222;
}

@media screen and (max-width: 767px) {
  .opinion h2 {
    font-size: 16px;
    letter-spacing: 0.06em;
  }
}
/*もう少しかわいく*/
.opinion h2 {
  font-family: "Hiragino Maru Gothic ProN", "メイリオ", sans-serif;
}



	
	
/* ===== 画像カード共通 ===== */
.img-card {
  max-width: 220px;
  width: 70%;
  background-color: #fff;              /* カードの白背景 */
  border: 1px solid rgba(0, 0, 0, 0.25); /* 見える薄線 */
  border-radius: 8px;                  /* 角丸 */
  padding: 10px;                       /* 枠内余白 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* 影でカード感 */
  display: block;
  margin: 0 auto;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.img-card:hover {
  transform: scale(1.03);
  opacity: 0.9;
}

#opinionbox .img-card {
  max-width: none;   /* 制限を外す */
  width: auto;       /* 元の画像サイズを使う */
}



/* 店舗情報 */
#shopinfo {
  text-align: center;
  padding-top: 1px;  /* 1pxでOK */
  margin-top: 30px;
}

#shopinfo dt {
  font-weight: 700;
}

/*スマホ対策*/
#shopinfo {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

#shopinfo dl {
  margin: 0 auto;
  padding: 0;
}

#shopinfo dd {
  margin-left: 0;
}

/*作成地図*/
#mymap img {
  width: 100%;
  max-width: 400px;  /* ← 好きな大きさに調整 */
  height: auto;
}

/*地図、写真の横幅*/
/* ★ まず全画像が画面をはみ出さないための保険 ★ */
img {
  max-width: 100%;
  height: auto;
}

/* 共通：中央寄せ */
#mymap img,
#parking img,
#shopfront img {
  display: block;
  margin: 0 auto;
}

/* 📱 スマホ */
@media screen and (max-width: 767px) {
  #mymap img,
  #parking img,
  #shopfront img {
    width: 100%;
    max-width: 100%;
  }
}



/*横幅を変えるため*/
.headerContent {
  width: 100%;
  max-width: 1000px;  /* PCでは今まで通り */
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .headerContent {
    width: 100%;
    max-width: 100%;
  }
}
 img {
  max-width: 100%;
  height: auto;
}

/* 強制：画面からはみ出す原因を潰す */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* すべての親を画面幅に縛る */
header,
.headerContent,
#mymap,
#parking,
#shopfront {
  width: 100%;
  max-width: 100%;
}

/* すべての画像を画面内に収める */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*駐車場と店の写真*/
.photoWrap {
  display: flex;
  flex-direction: column;  /* 縦並び */
  align-items: center;     /* 中央揃え */
  gap: 20px;               /* 上下の間隔（ピクセル単位で調整可能） */
  margin: 40px 0;          /* 外側の余白も必要なら追加 */
}

.photoWrap img {
  width: 400px;      /* 横幅を揃える */
  height: auto;      /* 高さは比率に合わせて自動 */
  display: block;    /* 余白を消す */
}

/* ===== スライダー最終固定（他CSSの影響を完全遮断） ===== */
.slider {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.slider img {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 auto;
}



/*上に戻るボタンの装飾css #90BE59(黄緑) #E1851E（オレンジ色）　#C7357E（濃いピンク色）　displayをnoneにすると消える*/

a.gototop {
background-color: #276F4A;
bottom: 2%;
color: #fff;
display: block;
font-size: 2rem;
height: 3rem;
line-height: 3.8rem;
position: fixed;
right: 2%;
text-align: center;
text-decoration: none;
width: 3rem;
}
/* =========================
   電話番号（ボタン風）
========================= */

.telBox {
  text-align: center;
  margin: 20px 0;
}

.tel-btn a {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  background: #e6f5e9;                  /* 薄い緑 */
  border: none;                          /* 縁なし */
  border-radius: 30px;

  color: #1f5e3b;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;

  /* 初期のほんのり立体感 */
  box-shadow: 0 2px 3px rgba(0,0,0,0.08);
  transform: translateY(0);
  transition: transform 0.1s, box-shadow 0.1s;
  cursor: pointer;
}

/* ホバー時：少し浮く */
.tel-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* クリック時：押し込む */
.tel-btn a:active {
  transform: translateY(2px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* アイコンサイズ */
.tel-icon {
  font-size: 20px;
}

/*よくある質問*/
.faq-preview {
  text-align: center;
  max-width: 600px;
  margin: 40px auto;
}

.faq-preview h2 {
  font-size: 1.5em;
}

.faq-preview ul {
  list-style: none;  /*Qの前の・削除*/
  padding: 0;
}

.faq-preview li {
  margin: 10px 0;
}

/* ===== FAQカード ===== */

.faq-preview {
  text-align: center;
  max-width: 700px;
  margin: 60px auto;
}

/* カード並び */
.faq-card-wrap {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

/* カード */
.faq-card {
  display: block;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-decoration: none;
  color: #333;
  font-size: 1.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.25s;
}

/* ホバー効果 */
.faq-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Qの装飾 */
.faq-card .q {
  color: #e91e63;
  font-weight: bold;
  margin-right: 6px;
}

/* すべて見る */
.faq-more {
  margin-top: 20px;
}

.faq-more a {
  text-decoration: none;
  font-weight: bold;
}

/* スマホだけ電話とLINE固定 */
@media screen and (max-width: 767px) {

  .fixed-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    display: flex;
    z-index: 9999;
    border-top: 1px solid #ddd;
  }

  .fixed-contact a {
    flex: 1;
    text-align: center;
    padding: 14px;
    font-weight: bold;
    text-decoration: none;
  }

  .fixed-tel {
    background: #e6f5e9;
    color: #000;
  }

  /* ★ここが重要 */
  .fixed-line,
  .fixed-line a {
    background: #06c755;
    color: #fff;
  }
}

/*ページ下部のブランドストーリー*/
.brand-message{
  text-align: center;     /* PCは中央 */
  font-size: 1.1em;
  margin: 40px auto;
  max-width: 900px;
  line-height: 1.8;
}

.brand-message{
  font-weight: 500; /*少し軽く*/
}

/* スマホだけ左揃え */
/*とりあえず削除
@media screen and (max-width: 767px){
  .brand-message{
    text-align: left;
    padding: 0 16px;      /* スマホは左右に少し余白 */
  }
} */

/*ヘッダーのロゴと電話を横並び*/
.header1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}