/* ==========================================================================
   Generic Reset & Base Styles
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  background-color: #fcfcfc;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Header Styles (PC Base)
   ========================================================================== */
.uss_site-header {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  z-index: 9999;
}

.uss_header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ロゴ */
.uss_header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.uss_logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.uss_logo-text {
  display: flex;
  flex-direction: column;
}

.uss_main-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #2c3e35;
  letter-spacing: 0.05em;
padding-top: 10px;
}

.uss_sub-title {
  font-size: 0.65rem;
  color: #b59a7c;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* ナビゲーション全体包装 */
.uss_header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-grow: 1;
  justify-content: flex-end;
}

/* ナビゲーションメニュー */
.uss_nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

.uss_nav-list a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s;
}

.uss_nav-list a:hover {
  color: #b59a7c;
}

.uss_nav-list a.uss_highlight {
  color: #b59a7c;
}

/* 右側ボタンエリア */
.uss_header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.uss_btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #3a4d44;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: bold;
  color: #3a4d44;
  transition: all 0.3s;
}

.uss_btn-phone:hover {
  background-color: #3a4d44;
  color: #fff;
}

.uss_btn-reserve {
  display: inline-block;
  padding: 11px 24px;
  background-color: #3a4d44;
  border: 1px solid #b59a7c;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #ffffff;
  transition: opacity 0.3s;
}

.uss_btn-reserve:hover {
  opacity: 0.9;
color: #fff
}

/* ハンバーガーボタン（PC時は非表示） */
.uss_hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 200;
}

.uss_hamburger-btn span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #3a4d44;
  left: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.uss_hamburger-btn span:nth-child(1) { top: 0; }
.uss_hamburger-btn span:nth-child(2) { top: 11px; }
.uss_hamburger-btn span:nth-child(3) { bottom: 0; }


/* ==========================================================================
   Responsive Styles (Mobile / Tablet)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .uss_header-nav {
    gap: 20px;
  }
  .uss_nav-list {
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .uss_hamburger-btn {
    display: block;
  }

  /* ナビゲーションをスマホ用ドロワーに変形 */
  .uss_header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 40px;
    padding: 80px 30px 40px;
    transition: right 0.3s ease;
  }

  /* メニューが開いた時のクラス */
  .uss_header-nav.uss_is-active {
    right: 0;
  }

  .uss_nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .uss_nav-list li {
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .uss_nav-list a {
    font-size: 1.05rem;
    display: block;
    width: 100%;
  }

  .uss_header-cta {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }


  .uss_btn-phone, .uss_btn-reserve {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ハンバーガーボタンのアニメーション（オープン時） */
  .uss_hamburger-btn.uss_is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .uss_hamburger-btn.uss_is-active span:nth-child(2) {
    opacity: 0;
  }
  .uss_hamburger-btn.uss_is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}




/* ==========================================================================
   Footer Styles (PC Base)
   ========================================================================== */
.uss_site-footer {
  width: 100%;
  background-color: #314239; /* 画像通りの深いダークグリーン */
  color: rgba(255, 255, 255, 0.8); /* 少し不透明度を下げた白 */
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

.uss_footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 40px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

/* --- 左側：店舗ロゴと説明 --- */
.uss_footer-info {
  flex: 1 1 35%;
  max-width: 400px;
}

.uss_footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  text-decoration: none;
}

/* 白背景の丸ロゴを模したプレースホルダー */
.uss_footer-logo-circle {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 2px solid #b59a7c; /* ゴールド枠 */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uss_footer-logo-sprout {
  font-size: 1.5rem;
  line-height: 1;
}

.uss_footer-logo-text {
  display: flex;
  flex-direction: column;
}

.uss_footer-main-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.05em;
}

.uss_footer-sub-title {
  font-size: 0.65rem;
  color: #b59a7c; /* ゴールド */
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.uss_footer-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45); /* 元画像に合わせたかなり暗めの透過文字 */
  line-height: 1.7;
}

/* --- 中央・右側共通のヘッディング --- */
.uss_footer-heading {
  font-size: 1.05rem;
  font-weight: bold;
  color: #b59a7c; /* ゴールド */
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

/* --- 中央：メニュー --- */
.uss_footer-menu {
  flex: 1 1 25%;
}

.uss_footer-links li {
  margin-bottom: 15px;
}

.uss_footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.uss_footer-links a::before {
  content: "・";
  margin-right: 4px;
}

.uss_footer-links a:hover {
  color: #b59a7c;
}

/* --- 右側：お問い合わせ --- */
.uss_footer-contact {
  flex: 1 1 30%;
  max-width: 360px;
}

.uss_footer-hours,
.uss_footer-address {
  font-size: 0.9rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.uss_footer-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 260px;
  background-color: #ffffff;
  color: #314239;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  border: 2px solid #b59a7c; /* ゴールドの枠線 */
  text-decoration: none;
  margin-top: 15px;
  transition: background-color 0.3s, color 0.3s;
}
.uss_footer-phone-btn img {
  width: 20px;
}

.uss_footer-phone-btn:hover {
  background-color: #b59a7c;
  color: #ffffff;
}

/* --- 下部：コピーライト --- */
.uss_footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 20px;
  margin-top: 40px;
}

.uss_footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.uss_copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Responsive Styles (Mobile / Tablet)
   ========================================================================== */
@media screen and (max-width: 960px) {
  .uss_footer-container {
    flex-wrap: wrap;
    gap: 40px 20px;
  }
  .uss_footer-info {
    flex: 1 1 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
  }
  .uss_footer-menu {
    flex: 1 1 45%;
  }
  .uss_footer-contact {
    flex: 1 1 45%;
  }
}

@media screen and (max-width: 768px) {
  .uss_footer-container {
    flex-direction: column;
    padding: 40px 20px 20px;
    gap: 35px;
  }
  .uss_footer-menu,
  .uss_footer-contact {
    flex: 1 1 100%;
  }
  .uss_footer-heading {
    margin-bottom: 15px;
  }
  .uss_footer-phone-btn {
    max-width: 100%;
  }
  .uss_footer-bottom {
    margin-top: 20px;
    padding: 20px 15px;
  }
  .uss_copyright {
    font-size: 0.7rem;
    line-height: 1.5;
    text-align: left; /* スマホ時は折り返しを考慮して左寄せに */
  }
}


.hgjsr {
width: 15px;
}




/* ==========================================================================
   Article Layout (横幅800px・中央配置)
   ========================================================================== */
.uss_article-wrapper {
  max-width: 800px;  /* 横幅を800pxに制限 */
  background-color: #ffffff;
  border: 1px solid #ededed;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
margin-bottom: 80px;
margin-left: auto;
margin-right: auto;
}

.uss_article-container {
  padding: 40px; /* 内側の余白 */
}

/* --- カテゴリータグ --- */
.uss_entry-category {
  margin-bottom: 20px;
}

.uss_entry-category span {
  display: inline-block;
  background-color: #f2f2f2;
  color: #444444;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 4px;
}

/* --- 記事タイトル --- */
.uss_entry-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #2c3e35; /* 特徴的な深緑がかったダークカラー */
  line-height: 1.4;
  margin-bottom: 25px;
  letter-spacing: 0.03em;
}

/* --- 投稿メタ情報 --- */
.uss_entry-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: #777777;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 15px;
  margin-bottom: 40px;
}

.uss_meta-date i,
.uss_meta-author i {
  margin-right: 5px;
  color: #8da499; /* アイコンに淡いニュアンスカラー */
}

/* ==========================================================================
   本文内（H2見出し・段落）のデザイン
   ========================================================================== */
.uss_entry-content p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 25px;
  letter-spacing: 0.02em;
}

/* 左側に縦線が入るH2見出し */
.uss_entry-content h2 {
  font-size: 1.35rem;
  font-weight: bold;
  color: #2c3e35;
  position: relative;
  padding-left: 15px;
  margin-top: 50px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

/* 見出しの左側の縦線（画像再現） */
.uss_entry-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 4px;
  height: 70%;
  background-color: #3a4d44; /* 深緑の縦線 */
}


/* ==========================================================================
   Responsive (スマホ表示時の微調整)
   ========================================================================== */
@media screen and (max-width: 768px) {
  body {
    padding: 10px 0; /* スマホ時はbodyの余白を詰める */
  }
  
  .uss_article-wrapper {
    border: none;
    border-radius: 0;
    box-shadow: none;

  }

  .uss_article-container {
    padding: 20px 15px;
  }

  .uss_entry-title {
    font-size: 1.6rem;
  }

  .uss_entry-meta {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.pan {
width: 94%;
padding-top: 120px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
font-size: 12px;
}
.pan div {
float: left;
}
.pan div a:hover {
color: #000;
}




/* ==========================================================================
   Profile Card Layout (横幅800px・中央配置 & 横並び)
   ========================================================================== */
.uss_profile-wrapper {
  max-width: 800px;  /* 全体の横幅を800pxに制限 */
 margin-bottom: 50px;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}

.uss_profile-card {
  background-color: #ffffff;
  border: 1px solid #e2e8e5; /* 枠線 */
  border-radius: 12px;       /* 柔らかい角丸 */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  
  /* 画像とテキストを横並びにするための設定 */
  display: flex;
  align-items: center; /* 上揃え */
  gap: 20px;               /* 画像とテキストの間隔 */
padding: 20px;
}

/* --- セクション見出し (発毛施術者プロフィール) --- */
/* 横並びにするため、h2は見出しとして独立させます。HTMLの変更が必要です（後述） */
.uss_profile-heading {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e35;      /* メインの深緑系カラー */
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  margin-bottom: 30px; /* 見出し下の余白 */
  position: relative;
  width: 100%;        /* 見出し全体を横幅いっぱいに */
}

.uss_profile-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #b59a7c; /* ゴールドの下線 */
}

/* --- メインエリア（画像・名前・肩書） --- */
.uss_profile-main {
  flex: 0 0 100px;      /* 画像エリアの幅を固定 */
  text-align: center;   /* 名前と肩書は中央揃え */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* プロフィール画像 (丸形) */
.uss_profile-img-box {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 50%;
}

.uss_profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 名前 */
.uss_profile-name {
  font-size: 14px;
  font-weight: bold;
  color: #2c3e35;
  margin-bottom: 0px;
  letter-spacing: 0.05em;
  width: 100%; /* 名前エリア全体に広げる */
}

/* 肩書・資格 */
.uss_profile-title {
  font-size: 13px;
  font-weight: 500;
  color: #b59a7c; /* ゴールド系の文字色 */
  line-height: 1.6;
  letter-spacing: 0.03em;
  width: 100%; /* 肩書エリア全体に広げる */
}

.uss_profile-subtitle {
  font-size: 13px;
}

/* --- 紹介テキスト --- */
.uss_profile-body {
  flex: 1;              /* 残りの幅をすべて使用 */
}

.uss_profile-body p {
  font-size: 1.05rem;
  color: #444444;
  text-align: left;
  letter-spacing: 0.03em;
  line-height: 1.8;
}

/* ==========================================================================
   Responsive (スマホ表示時の微調整)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .uss_profile-card {
    padding: 25px 20px;
    flex-direction: column; /* スマホでは縦並びに戻す */
    align-items: center;    /* 中央揃え */
    gap: 20px;              /* 間隔を詰める */
  }

  .uss_profile-heading {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .uss_profile-main {
    flex: none; /* 固定幅を解除 */
    width: 100%;
  }

  .uss_profile-img-box {
    width: 120px;
    height: 120px;
  }

  .uss_profile-name {
    font-size: 1.3rem;
  }

  .uss_profile-body p {
    font-size: 0.95rem;
  }
}






/* ==========================================================================
   CTA Section Layout (横幅800px・中央配置)
   ========================================================================== */
.uss_cta-wrapper {
  max-width: 800px;  /* 横幅を800pxに制限 */
  margin: 0 auto;    /* 左右中央に配置 */
}

.uss_cta-container {
  background-color: #f4f6f5; /* 画像の淡い背景色 */
  border: 1.5px dashed #c5b29d; /* ゴールドベージュ系の点線枠 */
  border-radius: 12px;       /* 柔らかな角丸 */
  padding: 30px 30px;        /* 上下左右の内側余白 */
  text-align: center;        /* 内の要素をすべて中央揃えに */
}

/* メインキャッチコピー */
.uss_cta-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2c3e35;            /* ブランドカラーの深緑 */
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

/* サブテキスト */
.uss_cta-lead {
  font-size: 1.05rem;
  color: #444444;
  letter-spacing: 0.03em;
  margin-bottom: 35px;
}

/* ボタンのコンテナ */
.uss_cta-action {
  display: flex;
  justify-content: center;
}

/* 電話相談予約ボタン */
.uss_cta-btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 520px;           /* PC表示時のボタン最大幅 */
  background-color: #3a4d44;  /* メインの深緑 */
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 18px 30px;
  border: 2px solid #b59a7c;   /* ゴールドの外枠線 */
  border-radius: 50px;        /* 完全なカプセル型 */
  text-decoration: none;
  letter-spacing: 0.05em;
  
  /* 画像の綺麗な立体感を再現するシャドウ */
  box-shadow: 0 8px 20px rgba(58, 77, 68, 0.25);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}

/* ボタンホバー時のエフェクト */
.uss_cta-btn-phone:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(58, 77, 68, 0.3);
color: #fff;
}

.uss_cta-btn-phone:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(58, 77, 68, 0.25);
}

/* ==========================================================================
   Responsive (スマホ表示用の調整)
   ========================================================================== */
@media screen and (max-width: 768px) {
  .uss_cta-container {
    padding: 35px 20px;
  }

  .uss_cta-title {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .uss_cta-lead {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .uss_cta-btn-phone {
    font-size: 1.05rem;
    padding: 14px 20px;
    width: 100%; /* スマホでは横幅いっぱいまで広げる */
  }
}
.uss_cta-action .hgjsr {
width: 20px;
}





.uss_cta-title span {
display: block;
}
.spnone {
display: none;

}



.menu-trigger {
	display: inline-block;
	width: 36px;
	height: 28px;
	vertical-align: middle;
	cursor: pointer;
	position: fixed;
	top: 28px;
	right: 15px;
	z-index: 9999;
}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */
.menu-trigger span {
	display: inline-block;
	box-sizing: border-box;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	transition: all .5s;
	background-color: #000;
}
.menu-trigger.active span {
	background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
	top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
	transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
	top: 12px;
	width: 50%;
}
.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
	bottom: 0px;
}
.menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-12px) rotate(45deg);
}
.menu-trigger p {
	padding-top: 29px;
	font-size: 11px;
	color: #000;
	background-color: none;
	text-align: center;
	font-weight: 600;
}
.menu-trigger.active p {
	opacity: 0;
}

nav.open {
	transform: translateZ(0);
}
.spsrid {
	width: 100%;
	height: 100%;
	padding-top: 40px;
	background-color: rgba(14,34,75,0.68);
	position: fixed;
	top: -20px;
	right: 0px;
	z-index: 600;
	transform: translate(100%);
	transition: all .5s;
	font-size: 13px;
	font-weight: 600;
	-webkit-overflow-scrolling: touch;
}
.spsrid a {
	color: #000;
}
.spsrid a:hover {
	color: #000;
}
.spmenu_box {
	width: 100%;
	height: 100%;
	overflow: auto;
	
}
.spmenu_box_logo {
	width: 40%;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
	padding-top: 100px;
}
.menu_list {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
	padding-top: 90px;
}
.menu_list div {
	width: 48%;
	float: left;
	margin-right: auto;
	margin-left: auto;
	background-color: #fff;
	border-radius: 6px;
	position: relative;
	margin-bottom: 4%;
}
.menu_list div p {
	margin-left: 10px;
	padding-top: 15px;
	padding-bottom: 15px;
}
.menu_list div span {
	position: absolute;
	top: 54%;
	right: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.menu_list div span img {
	width: 10px;
}
.menu_list .menu_list_left {
	margin-right: 4%;
}
.menu_list .online {
	width: 100%;
	margin-right: 0%;
	margin-right: auto;
	margin-left: auto;
}
.menu_list .online p {
	margin-left: 50px;
	padding-top: 23px;
	padding-bottom: 23px;
	font-size: 15px;
}
.menu_list .kago {
	position: absolute;
	top: 54%;
	left: 10px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.menu_list .kago img {
	width: 55px;
}
.sp_menu_bn {
	width: 96%;
	margin-right: auto;
	margin-left: auto;
}

.spmenu_box_icon {
	width: 139px;
	margin-right: auto;
	margin-left: auto;
	margin-top: 40px;
	padding-bottom: 200px;
}
.spmenu_box_icon div {
	width: 33px;
	float: left;
	margin-right: auto;
	margin-left: auto;
}
.spmenu_box_icon div img {
	width: 100%;
}
.spmenu_box_icon .in_icon {
	margin-right: 20px;
	margin-left: 20px;
}

a[href^="tel:"] {
	color: #508FFF;
}
a:hover[href^="tel:"] {
	color: #508FFF;
}



/*--------------------------------------
　　ページャー
--------------------------------------*/

.paged2{
    padding-top: 30px;
    padding-bottom: 10px;
    width: 90%;
　　 text-align: center;
	color: #000000;
    margin-left: auto;
    margin-right: auto;
	position: relative;
}
.pager{
    width: 100%;
    padding-top: 30px;
    padding-bottom: 50px;
　　 text-align: center;
	color: #000000;
    margin-left: auto;
    margin-right: auto;
	position: relative;
display: flex;
    justify-content: center;
    align-items: center;
}
.pagination{
    text-align: center;
}
.page-numbers{
    padding:15px 15px;
    margin:0 2px;
    text-decoration: none;
}
a.page-numbers,.pagination .current{
    background: #fff;
    border: solid 1px #ccc;
    padding:15px 15px;
    margin:0 2px;
    text-decoration: none;
}
.Public {
	width: 100%;
	padding-top: 20px;
}
.Public p {
    text-align: center;
	font-size: 20px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 20px;
}
.Public .uesen {
	border-top: 1px solid #E1E1E1;
	width: 100%;
}
.Public dl {
	width: 100%;
	border-bottom: 1px solid #E1E1E1;
}
.Public dl dt {
	display: table-cell;
	height: 70px;
	vertical-align: middle;
}
.Public dl a {
	color: #000000;
	display: block;
	text-decoration: none;
}
.Public dl a:hover {
	opacity: 0.5;
}
.Public dl dt:first-child {
	height: 70px;
	width: 20%;
	padding-top: 3px;
	padding-bottom: 5px;
	padding-left: 3%;
}
.Public dl dt:first-child img {
	height: 70px;
	width: 100%;
	padding-top: 5px;
}
.Public dl dt:last-child {
	width: 70%;
	height: 70px;
	font-size: 14px;
	line-height: 20px;
	padding-right: 2%;
	padding-left: 2%;
	vertical-align: top;
}
.Public dl dt:last-child li:first-child {
	padding-top: 4%;
        list-style-type: none
}





.catetitle {
width: 100%;
margin-left: auto;
margin-right: auto;
padding-top: 120px;
padding-bottom: 50px;
text-align: center;
font-size: 20px;
}
.Blog {
width: 90%;
margin-left: auto;
margin-right: auto;
}
.blog_box {
width: 100%;
margin-left: auto;
margin-right: auto;
margin-bottom: 30px;
border: solid 1px #8D866E;
}
.blog_box dl {
width: 94%;
margin-top: 20px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
}
.blog_box dl dt span {
display: block;
color: #8D866E;
margin-bottom: 5px;
font-size: 13px;
}
.blog_box dl dt h2 {
display: block;
color: #000;
margin-bottom: 10px;
font-weight: bold;
font-size: 16px;
}
.blog_box dl dd {
display: block;
color: #000;
margin-bottom: 10px;
font-size: 13px;
}
.blog_box dl dd span {
display: block;
color: #000;
margin-top: 10px;
}

.uss_bttn55 {
margin-top: 20px;
}

.uss_bttn33 {
width: 70%;
margin-bottom: 0px;
margin-left: auto;
margin-right: auto;
}


.Conhed{width:100%;padding-top:130px;margin-bottom:50px;position:relative}.Conhed .wrap3{width:100%;background-color:#344943;height:5pc}.Conhed h2{color:#fff;font-size:30px;line-height:5pc;text-align:center}.Conhed .wrap4,.Conhed h2{margin-right:auto;margin-left:auto;position:relative}.Conhed .wrap4{width:90%;margin-top:30px}.Conhed .wrap4 p{margin-bottom:0}.Conhed .wrap4 h3{font-size:25px;margin-top:30px;margin-bottom:30px;text-align:center;font-weight:600}.form dl{margin-top:0}.form dl dt{width:90%;height:50px;vertical-align:top;line-height:50px;text-align:left}.form dl dt span{padding-left:10px;color:#ff0004;font-size:14px}.form .Ftext{height:50px;vertical-align:top}.form .Ftext,.form dl .big{width:100%;background-color:#f1f1f1}.form dl .big{height:300px}.form div #SendBtn{margin-right:auto;margin-left:auto;position:relative;height:40px;margin-top:50px;text-align:center;color:#fff;line-height:40px}.foot,.form div #SendBtn{width:100%;background-color:#344943}

.form .acceptance {
	margin-top: 50px;
	margin-bottom: 50px;
}
.form .acceptance p {
	margin-bottom: -5px;
	margin-left: 10px;
}
.form .acceptance div {
	float: left;
}