﻿@charset "utf-8";

/* ーーー　◆基本レイアウト（ＰＣ）◆　ーーー */
body {
	margin: 0px;     /* ブラウザの余白対策   */
  background-color: #ffffff;
	background-repeat: repeat-x;
	background-position: center top;
	color: #354383;             /* テキスト色  #666666 */         
	font-size: 125%;              /* 全体の最小文字サイズ　16px⇒20px相当に設定 */
	line-height: 1.5;             /* 行間 　※単位なし　*/
}
header, nav, #breadcrumb, #contents, #contents-price, #pagetop, footer {
	width: 1200px;                 /* コンテンツ全体の横幅 */
	margin: 0 auto;               /* ボーダーの外側の余白　上、右、下、左の順 */
	background-color: #ffffff;
}

/* ーーー　◆タイトル画像の設定◆　ーーー */
header h1 img {
	width: 50%;                  /* 親要素の幅（1200px)の50%で表示 */
	height: auto;                /* 縦横比を維持 */
	margin-top: 10px;
} 
header h1 {
	background-color: #ffffff; /* タイトルエリアの背景色を設定*/
	text-align: center;          /* タイトル画像を中央寄せ */
	margin: 0;
	padding: 0;                  /* コンテンツの外側の余白 */
}

/* ーーー　◆ナビの設定◆　ーーー */
nav {
  border-bottom: 3px solid #4aa3ff; /* 好きな青に変更OK */
}

nav ul {                       /* navエリアの、箇条書きに対し */
	display: flex;               /* 子要素(li)を横並びにする。float不要。誤差ゼロで安定 */
  font-size: 1.2rem;
	margin: 0;
	padding: 0;
	list-style: none;            /* 箇条書きの・を消す */
}

  /* ▼各ナビ項目を均等に広げる */
nav ul li {                    /* navエリアの、箇条書きの、リストに対し */
	flex: 1;                     /* 子要素を「均等に1:1:1:1:1」で横幅配分する */
}

  /* ▼リンク部分のデザイン */
nav ul li a {                  /* a:ナビゲーションのリンクテキスト */
	display: flex;               /* テキストを中央に配置するためにflexを使用 */
  justify-content: center;     /* 横方向の中央揃え */
  align-items: center;         /* 縦方向の中央揃え */
  width: 100%;
  height: 30px;                /* 1段の高さ（画像の上段と一致させる） */
  line-height: 0px;            /* テキストの縦位置を揃える要 */
	padding-bottom: 0;
	background-repeat: no-repeat;
	background-size: 100% 60px;  /* 100% 高さ60px（画像サイズに合わせる） */
  background-position: 0 0;    /* 左上に固定 */ 
  color: #354383;
  font-weight: bold;           /* 見やすくしたい場合はbold（太字） */
  text-decoration: none;       /* 下線を消す */
}

/* ▼ 各ナビに画像を設定（白→青の縦スプライト） */
#nav_home a,                   /* ナビゲーションのリンクに背景画像を指定する　*/
#nav_introduction a,
#nav_service a,
#nav_price a,
#nav_contact a {
  background-image: url(../images/navi1.png);
}

/* ▼ ホバー時に青部分を表示（画像の下半分へ移動） */
nav ul li a:hover {              /* 全てのnavに対し設定 */
	background-position: 0 -30px;  /* マウスをポイントしたら縦位置のみ上に30px分上にずらして青部分を表示 */
  color: #fff;                 /* 青背景に合わせて文字色を白に */
}

/* ーーー　◆パンくずリスト設定◆　ーーー */
#breadcrumb-mobile {
  display: none;
}

#breadcrumb ul {
  list-style: none;          /* 黒丸を消す */
  padding-left: 20px;
  margin:0;
  display: flex;             /* 横並びにする */
  gap: 10px;                 /* 項目の間に少し余白 */
  font-size: 1.4rem;            /* 少し小さめで上品に   100⇒0%でパンくず表示なし*/
}

#breadcrumb li::after {
  content: "＞";             /* 区切り記号を追加 */
  margin-left: 5px;
}

#breadcrumb li:last-child::after {
  content: "";               /* 最後の項目だけ区切りを消す */
}

#breadcrumb a {
  text-decoration: none;
  color: #007acc;          /* リンク色（好みで変更可） */
}

/* ◆ページタイトル設定（全ページ共通） */
#page-title {
  width: auto;                 /* 枠の横幅（中央に余白を作る） */
  border-bottom: 2px solid #007BFF;  /* 青い太下線 */
  text-align: center;          /* 文字を中央揃え */
  font-size: 1.5rem;            /* 少し大きめの文字 */
  font-weight: bold;           /* 太字で見やすく */
  color: #333;               /* 文字色 */
  background-color: #fff;    /* 白背景（好みで変更可） */
  margin-top: 20px;
}

/* ーーー ◆ＴＯＰページのメイン画像設定  ーーー　*/
.main {
  position: relative;
  width: 100%;
  height: 600px;           /* 高さは画像に合わせて調整 */
  margin-top: 5px; 
  overflow: hidden;
}

/* ▼コンセプトテキスト設定 */
#main-comment h1 {
  width: auto;
  font-size: 3rem; /* 個別に文字大きさ設定 */
  font-style: italic;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  text-align: center;
  margin: 20px auto 10px auto; /* Navと動画との間隔調整 */
}

/* ▼動画スライドショーの基本設定 */
.pc-only { display: block; }
.sp-only { display: none; }

.hero-video-pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.topics-sub-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

/* トピックス */
#topics {
  width: 65%;
  margin-top: 20px;
}
#topics h2 {                    /* 『トピックス』文字設定　*/
  margin-top: 30px;             /* メイン画像とトピックス文字の間隔設定　*/
  width: 300px;                 /* トピックス 表示幅設定　*/
  border-radius: 5px;           /* BOXの角R設定　*/
  text-align: center;           /* BOX内の位置設定　*/
  background-color: rgba(0, 251, 255, 0.15); /* BOX内の色設定　*/
}
#topics .topic-item {
  display: flex;
  font-size: 1.2rem;
  padding: 4px 0;
  border-bottom: 2px solid #b3d7fd; /* ラインの色と太さ */
  padding-bottom: 6px;              /* ラインとの余白 */
  margin-bottom: 8px;               /* 次の項目との間隔 */
}
#topics .topic-date {
  width: 120px;                     /* PCでは日付欄を固定幅に */
  font-weight: bold;
}
#topics .topic-text {
  flex: 1;
}
#campain {                      /* キャンペーン価格設定　*/
  color: red;
}

/* subリンク（ガラス風＋軽いボタン） */
.sub {
  margin-top: 80px;         /* sub領域の高さ位置調整 */
  width: 30%;              /* sub領域の横幅調整定*/
  float: none;             /*  float を無効化定 */
  display: flex;            /* 中の要素（リンク）を「フレックスボックス」で並べる設定 */
  flex-direction: column;   /* 縦方向に並べる。横並びにしたいなら row に変更。*/
  gap: 12px;                /* リンク同士の間隔。数字を変えると上下の余白が変わる。*/
}
 /* 通常リンク */
.sub-link {
  display: block;           /* リンクを「ブロック要素」にして横幅いっぱいクリックできるボタン風にする。*/
  padding: 8px 14px;        /*内側の余白。数字を増やすとボタンが大きくなる。*/
  border-radius: 10px;      /* 角丸の大きさ。*/
  background: rgba(207, 229, 255, 0.8);
  backdrop-filter: blur(4px);/*背景をぼかす効果。ガラス風の質感が出る。※背景画像の上に置くと特に綺麗。*/
  text-decoration: none;    /* リンクの下線を消す。*/
  font-size: 1.2rem;
  color: #354383;
  font-weight: 500;         /* 文字の太さ。*/
  transition: 0.25s;        /* ホバー時のアニメーション速度。ふわっと変わる感じを作る。*/
  border: 1px solid rgba(255,255,255,0.6);/* 白の半透明ボーダー。ガラス風デザインに必須。 */
}
.sub-link:hover {
  background: rgba(18, 212, 255, 0.4);
  transform: translateY(-2px);
}

 /* お問い合わせ（アクセント） */
.sub-link-contact {
  display: block;           /* リンクを「ブロック要素」にして横幅いっぱいクリックできるボタン風にする。*/
  padding: 8px 14px;        /*内側の余白。数字を増やすとボタンが大きくなる。*/
  border-radius: 10px;      /* 角丸の大きさ。*/
  background: rgba(255, 204, 128, 0.9);
  backdrop-filter: blur(4px);/*背景をぼかす効果。ガラス風の質感が出る。※背景画像の上に置くと特に綺麗。*/
  text-decoration: none;    /* リンクの下線を消す。*/
  font-size: 1.3rem;
  color: #333;
  font-weight: 600;         /* 文字の太さ。*/
  transition: 0.25s;        /* ホバー時のアニメーション速度。ふわっと変わる感じを作る。*/
  border: 1px solid rgba(255,255,255,0.6);/* 白の半透明ボーダー。ガラス風デザインに必須。 */
}
.sub-link-contact:hover {
  background: #fbbd03;
  transform: translateY(-2px);
}



/* ーーー ◆ 紹介（introduction）設定  ーーー */

#introduction {
  margin: 10px auto auto auto;
  width: 100%;
  list-style-type: none;
}

@media screen and (min-width: 768px) {
  .summary-table {
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    table-layout: fixed;
    word-break: break-word;
  }

  .summary-table th {
    width: 150px;              /* 項目列の幅を固定 */
    text-align: center;
    vertical-align: top;
    background-color: #cfe5ff;
    padding: 12px;
  }

  .summary-table td {
    text-align: left;
    vertical-align: top;
    padding: 12px;
  }
}

/*#introduction span {
  font-size: 1.2rem;              /* 会社名の頭文字のみ大きく設定 *
}*/
#img-kitai {
  width: 130px;                 /* ドローン画像大きさ設定　*/
}
#introduction td{
  padding: 10px;
}

/* ーーー ◆「サービス内容」ページ設定  ーーー */
.service-main {
  width: 100%;
  margin: 0 auto;
}
.service-main h2 {
  width: 500px;
  background:#cfe5ff;
  border-radius: 5px;           /* 角丸の大きさ。*/
  padding: 5px 10px;
  margin-top: 10px;
}
.service-main h3 {
  margin-bottom: 0;
}
.service-comment p {
  /*width: 100%;
  display: block;*/
  padding-left: 10px;
  margin-top: 0;
}

/* 画像：2列 */
.service_images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
  margin-bottom: 20px;
}
.service_images img {
  width: 100%;
  height: auto;
  display: block;
}

/* 動画：2列 */
.service_video {
  /*width: 100%;*/
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.service_video video {
  width: 100%;
  height: auto;
  display: block;
}

.site-name {
  margin-top: 6px;   /* 距離を調整 */
  text-align: center;
  font-size: 18px;
}
.video-name{
  margin-top: 6px;   /* 距離を調整 */
  text-align: center;
  font-size: 18px;
}
.youtube-container {
  position: relative;
  width: 100%;
  max-width: 560px; /* PCで大きくなりすぎないように調整 */
  aspect-ratio: 16 / 9;
  margin-top: 20px;
}

.youtube-container iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

/*　ーーー ◆「料金」ページ設定　ーーー */

#price h1 {                  /* キャンペーン価格のお知らせ　*/
  text-align:center;
  font-size: 1.7rem;
  background-color: rgb(252, 252, 97);
  margin-bottom: 0;
  padding-bottom: 0;
}
#price h2,#price2 h3 {
  margin: 0 auto 0 auto;
  padding-top: 10px;
}
#price h2,#price3 h2 {
  margin: 40px auto 0 auto;
}
table tbody tr th {
  width: 180px;
}
#price table {
  width: auto;                  /* 画面全幅で表示　*/
  border-collapse: collapse;    /* 二重線を1本線にする　*/
  border: 4px solid blue;     /* 料金表（テーブル）の外枠線の設定　*/
} 
#price table th,#price table td {
  border: 1px solid blue;     /* 料金表（テーブル）の内側線の設定　*/
  padding: 5px 10px;
} 
table thead th,table tbody th {
  background-color: #cfe5ff;  /* 料金表（テーブル）の項目の背景色設定　*/
}
#price2 table {
  width: auto;                  /* 画面全幅で表示　*/
  border-collapse: collapse;    /* 二重線を1本線にする　*/
  border: 1px solid blue;     /* 料金表（テーブル）の外枠線の設定　*/
}
#price2 table th,#price2 table td {
  border: 1px solid blue;    /* 料金表（テーブル）の内側線の設定　*/
  border-collapse: collapse;    /* 二重線を1本線にする　*/
  padding: 0px 10px;
  margin: 0px;
  /*border: 1px solid red; /* ★最終的に削除すること！ */
} 
#price3 table {
  width: auto;                  /* 画面全幅で表示　*/
  border-collapse: collapse;    /* 二重線を1本線にする　*/
  border: 4px solid rgb(253, 132, 2);     /* 料金表（テーブル）の外枠線の設定　*/
} 
#price3 table th,#price3 table td {
  border: 1px solid rgb(253, 132, 2);    /* 料金表（テーブル）の内側線の設定　*/
  border-collapse: collapse;    /* 二重線を1本線にする　*/
  padding: 0px 10px;

} 
.campain {                      /* キャンペーン価格設定　*/
  color: red;
  font-size: 120%;
  font-weight: 400;
}
.price-note {
  padding: 0px 5px;
  margin: 0px;
  /*border: 1px solid red; /* ★最終的に削除すること！ */
}
  /* その他 */
.price-note h3 {
  width: 100px;
  border-bottom: 1px solid #007BFF;  /* 青い太下線 */
  margin-top: 10px;
  /*border: 1px solid red; /* ★最終的に削除すること！ */
}
#price-mobile {
  display: none;
}
/*　ーーー ◆「ご依頼／お問い合わせ」ページ 設定　ーーー */

/* 非表示用 */
.hidden {
  display: none;
}
/* 表示時の余白調整 */
#service-detail {
  margin: 10px 0 20px;
  margin-left: 1em;   /* ← 1文字分右へ */
}
/*#service-detail p {
  margin-top: 0;      /* 上の余白をゼロに *
  margin-bottom: 10px; /* 下は少しだけ余白 *
}*/

#service-detail label {
  display: block;
  margin-bottom: 6px; /* 少し余白をつけると見やすい */
}

.required {  color: red; }

form p {
	margin-top: 0;
	margin-bottom:15px;
}

/* PC版 入力欄の基本デザイン */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: 1.2rem;        /* PCで読みやすい標準サイズ */
  padding: 8px 10px;      /* 高さを確保（スマホより控えめ） */
  width: 400px;
  border: 1px solid #999;
  box-sizing: border-box;
}
/* PC版 textarea の高さ調整 */
textarea {
  height: 150px;          /* 115px → PCでは少し広めに */
}

.confirm-buttons {
  display: flex;
  gap: 20px; /* ボタン同士の間隔 */
  margin-top: 20px; /* 上に余白 */
}

/*  ーーー ◆ footer 設定 ーーー */
#pagetop {
  width: 100%px;
  font-size: 1.2rem;
  margin: 0 auto;
  clear: both;
  text-align: right;
  padding: 10px 0;

}
.footer-pc { display: block; }
.footer-sp { display: none; }

footer {
	clear: both;                  /* floatの悪影響を受けたfooterに対し、floatを解除する */
  background-color: #edf4fb; 
	padding: 10px 0;
  margin: 0 auto 0 auto;
  text-align: center;
  border-bottom: 5px double #007BFF;
}
/* ============================================
   ◆ ボタン共通デザイン（PC/スマホ共通）
============================================ */
.btn-submit {
  background-color: #0077cc;
  color: #fff;
  font-size: 1.5rem;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-submit:hover {
  background-color: #005fa3;
}

/* =================================================================================
   ◆ スマホ対応（幅 768px 以下）
================================================================================== */
@media (max-width: 768px) {

  body {
    font-size: 110%;              /* スマホ全体の最小文字サイズ　16px⇒18px相当に設定 */
    color: #333;
    line-height: 1.6;
  }

/* タイトル画像　表示エリア設定 */
  header h1 img {
    width: 100%;   /* 画面幅100％　*/
    height: auto;
  }

/* 　各ページ・項目の全体幅設定 */
  header, nav, #breadcrumb, #contents, #contents-price, #pagetop, footer {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
  }

/* ナビを縦並びに */
  nav ul {
    flex-direction: column;
  }

  nav ul li a {
    font-size: 1.0rem;
    background-size: 100% 60px;  /* 100% 高さ60px（画像サイズに合わせる） */
    background-position: 0 0;    /* 左上に固定 */ 
    border-bottom: 1px solid #ddd;
    margin: 5px auto;
  }

/* ▼ ホバー時に青部分を表示（画像の下半分へ移動） */
    nav ul li a:hover {              /* 全てのnavに対し設定 */
	  background-position: 0 -30px;  /* マウスをポイントしたら縦位置のみ上に30px分上にずらして青部分を表示 */
    color: #fff;                 /* 青背景に合わせて文字色を白に */
  }

/* ▼コンセプトテキスト設定 */
#main-comment h1 {
  font-size: 1.2em;
  text-align: center;
}

/* メイン画像 */
  .pc-only { display: none; }
  .sp-only { display: block; }

  .hero-video-sp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  .main {
    position: relative;   /* ← 必須 */
    width: 100%;
    height: 250px;
    overflow: hidden;     /* ← 必須 */
  }

  .main-bg {
    height: 250px;
    object-fit: cover;
  }

/* トピックスとsubの縦並び */
  #contents {
    display: block !important; /* ← スマホは縦並び */
    flex-direction: column;
  }
  .topics-sub-wrapper {
  display: block;
  }

   #topics {
    order: 1;
    width: 100%;
    padding: 0 5px;
  }
   #topics h2 { /*トッピクスの文字　*/
    font-size: 1.0rem;
    width: 100% !important;
    text-align: center;
  }
  #topics .topic-item {
    display: block;      /* ← スマホは縦並び */
    font-size: 0.8rem;   /* ← 文字を小さく */
    margin-bottom: 6px;
  }

  #topics .topic-date {
    display: block;
    font-weight: bold;
    margin-bottom: 2px;
  }

  #topics .topic-text {
    display: block;
    white-space: normal; /* ← 折り返しを許可 */
    word-break: break-word;
  }

/* sub（右側リンク） */
  .sub {
    order: 2;
    width: 100%;
    float: none !important;   /* ← これが最重要 */
    margin-top: 20px;
  }

/* スマホ用 subリンク（ボタン化） */
@media (max-width: 768px) {
  .sub a {
    display: block;
    width: 80%;
    margin: 5px auto;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    color: #354383;
    background: #e8f3ff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
  }

  /* お問い合わせだけアクセントカラー */
  .sub-link-contact {
    background: #ffcc80;
    color: #333;
    font-weight: 700;
  }
}

/* パンくず部の形式変更 */
    
  /* PC用パンくずは非表示 */
  #breadcrumb {
    display: none;
  }

  /* スマホ用の新しいバー */
  #breadcrumb-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f8faff;
    border-bottom: 2px solid #007BFF;
    font-size: 1.1rem;
  }

  .current-page {
   margin-left: 30px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #333;
  }

  /* Homeに戻る → ボタン風 */
  .back-home {
    font-size: 1rem;
    padding: 6px 12px;
    background: #e3f3ff;   /* 薄い水色 */
    color: #007BFF;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #bcdcff;
  }

  .back-home:active {
    background: #d4ecff;
  }

/* ページタイトルを非表示 */
  #page-title {
    display: none;
  }

/* TOPページ以外では nav を非表示 */
  body:not(.page-top) nav {
    display: none;
  }

/* contact / confirm / thanks も nav を非表示 */
  body.page-contact nav {
    display: none;
  }

/* 紹介ページ */
  #introduction  tr th {
    width: 100px !important;
  }

/* サービスページ */
  .service-main h2 {
    width: 90%;
    font-size: 1.2rem;
  }
  .service-main h3 {
    font-size: 1.2rem;
    padding-left:10px;
  }
.sp-site-name {
  margin-top: 6px;   /* 距離を調整 */
  text-align: center;
  font-size: 10px;
}
.sp-video-name{
  margin-top: 6px;   /* 距離を調整 */
  text-align: center;
  font-size: 10px;
}
/* ◆料金ページ */
  #price h1 {                  /* キャンペーン価格のお知らせ　*/
    width: 100%;
    text-align:left;
    font-size: 1.1rem;
    background-color: rgb(252, 252, 97);
    margin-bottom: 0;
    padding-bottom: 0;
  }

 /* --- 料金ページ：カード型レイアウトに変換 --- */
  #price table,
  #price2 table,
  #price3 table {
    border: none !important;
    width: 100%;                 /* 100%でスマホ幅に合わせる */
    border-collapse: collapse;   /* 余計な隙間をなくす */
    display: block;              /* table をブロック化 → カード型にしやすい */
    box-sizing: border-box;
    width: fit-content;     /* ← 内容幅に合わせて縮む */
    max-width: 100%;        /* ← はみ出し防止 */
    margin: 0 auto;         /* ← 中央寄せの本命 */
  }

  #price table thead,
  #price2 table thead,
  #price3 table thead {
    display: none;               /* スマホではヘッダーを非表示（カード内に情報をまとめるため） */
  }

  #price table tr,
  #price2 table tr,
  #price3 table tr {
    display: block;              /* 行をブロック化 → カードとして扱う */
    margin-bottom: 8px;         /* カード同士の間隔（減らすとスクロール量が減る） */
    padding: 6px;                /* カード内の余白（減らすとコンパクトになる） */
    /*border: 1px solid #ccc;      /* カードの枠線 */
    border-radius: 10px;          /* カードの角丸 */
    background: #fff;            /* 背景色（白） */
  }

  #price table tr {
    border: 3px solid blue;
  }
    #price2 table tr {
    border: 2px solid #007BFF;
  }
    #price3 table tr {
    border:3px solid rgb(253, 132, 2);
  }

  #price table th,
  #price2 table th,
  #price3 table th,
  #price table td,
  #price2 table td,
  #price3 table td {
    border: none;
    display: block;              /* セルを縦並びにする */
    width: 100%;                 /* 横幅いっぱいに広げる */
    padding: 2px;                /* 各項目の余白（ここを減らすとさらにコンパクト） */
    text-align: center;          /* 中央寄せで読みやすく */
    word-break: break-word;      /* 長い文章を折り返す */
  }

  #price2 .detail {
    text-align: left;
    word-break: break-word;      /* 長い文章を折り返す */
  }

  /* キャンペーン価格の強調 */
  #price .campain p,
  #price2 .campain p,
  #price3 .campain p {
    font-size: 1.2rem;           /* キャンペーン価格の文字サイズ */
    font-weight: bold;           /* 太字で強調 */
    color: red;                /* 赤色で目立たせる */
    margin: 4px 0;               /* 上下余白（調整可能） */
  }

  /* rowspan のセルも縦並びに展開 */
  #price table td[rowspan],
  #price3 table td[rowspan] {
    display: block;              /* rowspan を無効化して縦に並べる */
    width: 100%;                 /* 横幅いっぱい */
    margin-top: 8px;             /* 上の項目との間隔（調整可能） */
  }


  #price-mobile {
    text-align: right;
    padding: 10px 12px;
    font-size: 1.1rem;
  }

/* フォーム幅を100%に */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    width: 100%;
    box-sizing: border-box;
  }

/* 入力欄の基本デザイン */
  input,
  textarea {
    font-size: 1.1rem;
    padding: 10px;
    border: 1px solid #999;
  }

  /* 送信完了ページ 
  .page-contact .btn-submit {
    text-align: right;
  }*/

  /* ページＴＯＰへ戻る　設定 */
  #pagetop {
    order: 3;
    font-size: 1.1rem;
    margin-top: 30px;
  }

/* フッター設定 */
  .footer-pc { display: none; }
  .footer-sp { display: block; }
  
  footer {
    order: 4;
    text-align: center;
  }

  footer address,
  footer small {
    font-size: 0.8rem;
    line-height: 1.5;
    display: block;
  }

}

/* ============================================
   ◆ サービスページ専用 PC/SP 切り替え
============================================ */

/* PC（デフォルト） */
.service-main .pc-only { display: block !important; }
.service-main .sp-only { display: none !important; }

/* スマホ */
@media (max-width: 768px) {
  .service-main .pc-only { display: none !important; }
  .service-main .sp-only { display: block !important; }
}
