@charset "utf-8";

/* ==============================================
   リセット＆ベース設定（iPhone SEファースト）
============================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
  font-size: 15px;
  /* SEでも読みやすいサイズ */
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

.inner {
  padding: 0 5%;
  /* SEの端ギリギリにならないよう余白確保 */
  max-width: 800px;
  /* PCで見たときは最大800pxで中央寄せ */
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.sec-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
  line-height: 1.4;
  position: relative;
}

.sec-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: hwb(0 0% 20%);
  /* 大成輪業のアクセントカラー（赤） */
  margin: 15px auto 0;
}

.bg-gray {
  background-color: #d8e8ca;
}

/* ==============================================
   ボタン共通
============================================== */
.btn-area {
  text-align: center;
  margin: 30px 0;
}

.btn {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn-red {
  background-color: #cc0000;
  color: #fff;
}

.btn-large {
  font-size: 18px;
  padding: 20px;
}

/* ==============================================
   各セクション
============================================== */
/* MV */
.mv {
  padding-top: 30px;
}

.logo img {
  max-width: 200px;
  margin-bottom: 20px;
}

.catch {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

.mv-img img {
  width: 100%;
}

.shop-info-top {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
}

.shop-info-top .tel a {
  color: #333;
  font-size: 24px;
}

.shop-info-top .hours {
  font-size: 14px;
  color: #666;
}

/* 3つの強み */
.strengths .card {
  margin-bottom: 40px;
}

.strengths .card:last-child {
  margin-bottom: 0;
}

/*.strengths .num {
  display: inline-block;
  color: #cc0000;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  margin-bottom: 5px;
}*/
/* ==============================================
   リボン風の数字装飾（01, 02, 03）
============================================== */
.strengths .num {
  display: inline-block;
  position: relative;
  background-color: #53a9ff;
  /* 画像のようなダークグレー */
  color: #fff;
  /* 文字は白 */
  font-size: 28px;
  /* 少し大きめに */
  font-family: "Times New Roman", serif;
  /* 画像のようなどこかクラシカルな書体 */
  width: 60px;
  /* リボンの横幅 */
  height: 70px;
  /* リボンの縦幅 */
  line-height: 55px;
  /* 数字の縦の配置調整 */
  text-align: center;
  margin-bottom: 20px;
}

/* リボンの下の「切り込み」を作る魔法のコード */
.strengths .num::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 15px solid #fff;
  /* 背景と同じ「白」で上書きして切り込みに見せる */
}

.strengths h3 {
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
}

.strengths img {
  margin-bottom: 15px;
  border-radius: 4px;
}

/* 事業内容 */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.service-tags span {
  background-color: #fff;
  border: 1px solid #d03d3d;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
}

/* 代表メッセージ */
.message img {
  border-radius: 4px;
  margin-bottom: 10px;
}

.president-name {
  text-align: right;
  font-weight: bold;
  margin-bottom: 20px;
}

/* フッター・会社概要 */
.bg-dark {
  background-color: #222;
  color: #fff;
  padding: 40px 0;
}

.footer-logo {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  font-size: 14px;
}

.info-table th,
.info-table td {
  padding: 10px;
  border-bottom: 1px solid #444;
}

.info-table th {
  width: 30%;
  text-align: left;
  font-weight: normal;
  color: #ccc;
}

.map-wrap {
  margin-bottom: 20px;
}

.copyright {
  text-align: center;
  color: #888;
}

/* ==============================================
   PC・タブレット向け調整（768px以上）
============================================== */
@media (min-width: 768px) {

  /* PCでは電話リンクを無効化する */
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }

  /* PCでは少し余白を大きく */
  .section {
    padding: 80px 0;
  }

  .catch {
    font-size: 28px;
  }
}

/**/
/* ==============================================
   追加・修正部分（ヘッダー上部固定＆リード文フル幅）
============================================== */

/* ① 上部固定のロゴエリア */
.fixed-logo-area {
  position: fixed;
  /* スクロールしても常に固定 */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  /* 背景を白にしないと裏側が透けてしまいます */
  z-index: 100;
  /* 全ての要素の一番手前に表示 */
  text-align: center;
  padding: 10px 0;
  /* 上下の余白 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* うっすら影をつけると境界線が綺麗です */
}

.fixed-logo-area .logo img {
  width: 100%;
  max-width: 320px;
  margin-bottom: 0;
  margin-top: 10px;
  /* ←これを追加してオレンジの余白を消す！ */
}

.fixed-logo-area .logo img {
  width: 100%;
  max-width: 320px;
  /* ここでロゴの大きさを微調整 */
}

/* 固定したロゴの高さ分、ページ全体を下にズラす（写真が頭隠れしないように） */
body {
  padding-top: 70px;
  /* お使いのロゴ画像の高さに合わせて 70px〜100px 辺りで調整してください */
  background-image: linear-gradient(transparent 19px, #f0f0f0 20px), linear-gradient(90deg, transparent 19px, #f0f0f0 20px);
  background-size: 20px 20px;
}


/* ② リード文のフル幅＆写真密着 */
.lead-full-width {
  background-color: #afdfff;
  /* いただいた画像のイメージに近い水色です */
  width: 100%;
  /* 左右いっぱいまで広げる */
}

.Lead-in {
  text-align: center;
  padding: 20px 10px;
  /* 文字の周りの余白（上下20px 左右10px） */
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
  /* pタグ特有のデフォルト余白を消すことで、上の写真と完全に密着します */
}

/* ==============================================
   追加：リボンとタイトルの横並び（B案）
============================================== */
.title-wrap {
  display: flex;
  align-items: center;
  /* リボンと文字の縦の真ん中を綺麗に揃える */
  gap: 15px;
  /* リボンと文字の隙間（お好みで調整OK） */
  margin-bottom: 15px;
  border-bottom: 2px solid #eee;
  /* タイトル下の下線をこの箱に引く */
  padding-bottom: 10px;
}

/* 元の指定を上書きして調整 */
.strengths .num {
  margin-bottom: 0;
  flex-shrink: 0;
  /* 画面が狭いスマホでも、リボンの横幅が潰れないようにする魔法 */
}

.strengths h3 {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
  /* 元々h3にあった下線を消す */
  font-size: 16px;
  /* 横に並べるので、文字サイズを少しだけ小さく調整 */
}

/*PC*/
/* ==============================================
   PC画面（768px以上）の時のレイアウト調整
============================================== */
@media (min-width: 768px) {

  /* ① 3つの理由の「写真」と「テキスト」を左右2カラムにする魔法 */
  .strengths .card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 画面を左右半々に分ける */
    gap: 0 30px;
    /* 左右の隙間を30px空ける */
  }

  /* ② タイトル（リボン部分）だけは、左右をぶち抜いて1行のままにする */
  .strengths .title-wrap {
    grid-column: 1 / -1;
  }

  /* ③ 写真の幅を左半分のエリアにピッタリ合わせる */
  .strengths img {
    width: 100%;
    margin-bottom: 0;
  }
}

html,
body {
  overflow-x: hidden;
  /* 横方向のはみ出しを隠し、横スクロールを禁止する魔法 */
}