@charset "utf-8";
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700;900&display=swap');
/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
/* 変数／基本 */
* {
  box-sizing: border-box;
}
.container {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding-inline: 16px;
}

/*全体の設定
---------------------------------------------------------------------------*/
body *  {
  box-sizing: border-box;
}
html,body  {
  font-size: 15px;	/*基準となるフォントサイズ。*/
}
body  {
  padding-top: 90px;
  margin: 0;
  font-family: "Noto sans JP";	/*フォント種類（ゴシック）*/
  font-optical-sizing: auto;
  font-style: normal;
  -webkit-text-size-adjust: none;
  background: var(--base-color);		/*背景色。css冒頭のbase-colorを読み込みます。*/
  color: var(--base-inverse-color);	/*文字色。css冒頭のbase-inverse-colorを読み込みます。*/
  line-height: 2;		/*行間*/
  overflow-x: hidden;
}
/*リセット*/
figure  {
  margin: 0;
}
dd  {
  margin: 0;
}
nav,ul,li,ol  {
  margin: 0;padding: 0; list-style: none;
}
nav ul  {
  list-style: none;
}
/*table全般の設定*/
table  {
  border-collapse:collapse;
}
/*画像全般の設定*/
img  {
  border: none;max-width: 100%;height: auto;vertical-align: middle;
}
/*section*/
section  {
  /**padding: var(--content-space) 0;	/*section内の余白。上下にcss冒頭のcontent-spaceを読み込み、左右は0（ゼロ）**/
}
/* PC用 */
.nav-sp  {
  display: none;
}
/* スマホ用 */
@media (max-width: 767px)  {
  .nav-pc  {
    display: none;
  }
  .nav-sp  {
    display: inline;
  }
}
/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a  {
  color: inherit;
  transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
  text-decoration: none;
}
/*コンテナー（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container  {
  position: relative;
  animation: opa1 1s 0.4s both;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 var(--content-space);	/*コンテナー内の余白。上下は0（ゼロ）、左右はcss冒頭のcontent-spaceを読み込む。*/
}
/*main visual
---------------------------------------------------------------------------*/
.mv  {
  width: 100%;
  background-image: url("../images_2512/mv-bg.png") !important;
  background-size: cover;
  background-position: bottom center;
  overflow: hidden;
  text-align: center;
  padding-bottom: 35px;
}
.catch  {
  margin: 100px auto 20px auto;
}
.pc-catch{
	display: block;
}
.sp-catch{
	display: none;
}
@media screen and (max-width: 768px)  {
  .mv  {
    background-image: url("../images_2512/mv-bg-sp.png") !important;
    padding-bottom: 25px;
  }
  .catch  {
    margin: 30px 10px 20px 10px;
  }
	.pc-catch{display: none;}
.sp-catch{display: block;}
	.sp-catch img { width: 100%;}	
  picture img  {
    width: 75%;
  }
}
/* スライドショー全体 */
#mainimg  {
  overflow-x: hidden;
  position: relative;
  background: #e8e1d6;
  padding: 10px;
}
/* スライドを横並びに */
#mainimg .img  {
  display: flex;
  width: 200%; /* JSで増える想定でもOK */
  animation: slide-left 20s linear infinite;
}
/* 各画像の共通スタイル */
#mainimg .img > div  {
  flex: 0 0 12.5%; /* デフォルトで8個 */
  width: 12.5%;
}
/* 画像にちょい余白 */
#mainimg .img img  {
  width: 100%;
  padding: 0 1vw;
  box-sizing: border-box;
}
/* スマホ対応：画像を4個にして幅を広げる！ */
@media screen and (max-width: 768px)  {
  #mainimg .img > div  {
    flex: 0 0 15% !important;
    width: 15% !important;
  }
  #mainimg .img img  {
    padding: 0 0.5vw;
  }
}
/*右から左へ、左から右へ、のアニメーション*/
#mainimg .rtl, #mainimg .ltr  {
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#mainimg .rtl  {
  animation-name: slide-rtl;
}
#mainimg .ltr  {
  animation-name: slide-ltr;
}
@keyframes slide-rtl  {
  0%  {
    transform: translateX(0);
  }
  100%  {
    transform: translateX(-50%);
  }
}
@keyframes slide-ltr  {
  0%  {
    transform: translateX(-50%);
  }
  100%  {
    transform: translateX(0);
  }
}
/*コンテンツ
---------------------------------------------------------------------------*/
/*コンテンツブロック*/
#contents  {
}
section .d {
  padding: 50px 0;
}
@media screen and (max-width: 768px)  {
  section .d {
    padding: 20px 0;
  }
}
.contents-inner  {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
/*タイトル フォント
---------------------------------------------------------------------------*/
.section-ttl {
  font-size: 36px; font-weight: 900; text-align: center; line-height: 1.7;
}
.sub-ttl {
  font-size: 16px; font-weight: 800; text-align: center;
}
.color-yellow  {
  color: #fffa67;
}
.color-lblue  {
  color: #d6fff4;
}
.color-white  {
  color: #fff;
}
.color-grn  {
  color: #1eb5a0;
}
@media screen and (max-width: 768px)  {
  .section-ttl {
    font-size: 22px;
  }
  .sub-ttl {
    font-size: 15px; margin-bottom: 10px; padding: 0 10px;line-height:1.6;font-weight: 700;
  }
}
/*背景色
---------------------------------------------------------------------------*/

.case-study {padding: 0 0 15px 0;
background: #77E4D5;}
/*Wave
---------------------------------------------*/
.wave-only svg {
  display: block;
  width: 100%;
  height: 140px; /* 高さは調整してOK */
}
.wave-only path {
  fill: var(--wave-color);
}
/* 色バリエーション */
.wave-green {
  --wave-color: #77E4D5;
  background: #e8f6f7;  /* 上側の背景にしたい色 */
}
.wave-gray {
  --wave-color: #f5f5f2;
  background: #088bc1;
}
@media screen and (max-width: 768px)  {
  .wave-only {
    display: none;
  }
	.case-study {padding: 30px 0;}
}
/*ヘッダーナビ
---------------------------------------------------------------------------*/
.site-header  {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
/* 上段 */
.header-top  {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  max-width: 290px;
  width: 100%;
}
.cta-area  {
  display: flex;
  gap: 10px;
  height: 40px; /* 画像サイズは必要に応じて */
}
.cta-area .cta__btn  {
  display: inline-block;
  padding: 5px 15px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}
.cta__btn.tel  {
  padding:0;
  font-size: 26px;
  font-weight: 700;
  color: #00a68e;
  margin: 0 0 6px;
  font-family: Barlow;
  line-height: 1.0;
}
.cta__btn.tel i {
  color:#000;
  font-size: 20px;
  margin-right: 10px;
}
.cta__btn.tel div {
  font-size: 10px;
  color: #000;
  margin-left: 40px;
}
.cta__btn.line  {
  background: #00c300;
}
.cta__btn.line img  {
  width: 20px;
  margin: 0 10px 0 0;
}
.cta__btn.mail  {
  background: #ff4089;
}
.cta__btn.mail i  {
  font-size: 18px;
  margin: 5px 10px 0 0;
}
/**スマホ用**/
@media screen and (max-width: 768px)  {
  .cta-area  {
    gap: 0; height: 40px;
  }
  .cta__btn.tel  {
    background: #fffc0c;
    margin: 0;
  }
  .header-top  {
    padding: 0;
  }
  .cta-area .cta__btn  {
    padding: 10px;
    border-radius: 0;
    width:40px;
  }
  .logo img  {
    width: 60%;
	  margin: 5px;
  }
  .cta__btn.tel,
  .cta__btn.line,
  .cta__btn.mail  {
    font-size: 0;
  }
  .cta__btn.tel img,
  .cta__btn.line img,
  .cta__btn.mail img {
    width: 100%;
    margin: 0;
  }
}
/* ナビゲーション */
.header-nav  {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background: #fff;
}
.header-nav ul  {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.header-nav li  {
  border-left: 1px solid #d5e7e2;
  flex: 0 0 auto;
}
.header-nav li:last-child  {
  border-right: 1px solid #d5e7e2;
}
.header-nav a  {
  display: flex;
  flex-direction: column; /* 縦並び */
  align-items: center;
  padding: 5px 20px;
  color: #333;
  font-weight: 900;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.4;
}
.header-nav a:hover  {
  color: #00a68e;
}
.header-nav a::after  {
  font-family: "Font Awesome 6 Free";  /* ✅ バージョン6に対応 */
  font-weight: 900;
  content: "\f0d7"; /* caret-down */
  color: #1eb5a0;
}
/**スマホ用**/
@media screen and (max-width: 768px)  {
  .header-nav ul  {
    justify-content: space-between;
  }
  .header-nav li  {
    flex: 1;
    text-align: center;
  }
  .header-nav a {
    padding: 3px 1px;
    text-align: center;
    font-size: 0.85em;
	  line-height: 1.2;
  }
	.header-nav a::after  {
		line-height: 1.0;
	}
}
/*お悩み
-----------------------------------------*/
/* セクション背景 */
.trouble {
  background: linear-gradient(180deg, #1eb5a0 0%, #bbebef 100%);
  padding: 30px 16px 120px 16px;
}
.trouble__inner {
  max-width: 900px;
  margin-inline: auto;
}
/* 黄色カード */
.trouble__card {
  position: relative;
  background: #fff29b;
  border-radius: 30px;
  padding: clamp(28px, 5vw, 65px) clamp(20px, 5vw, 65px) clamp(80px, 10vw, 120px);
}
/* 見出し */
.trouble__title {
  margin: 0 0 30px;
  color: #e60012;
  font-weight: 900;
  line-height: 1.35;
  font-size: clamp(20px, 3.2vw, 36px);
  text-align: center;
}
/* 箇条書き */
.trouble__list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 22px;
  line-height: 1.9;
	font-weight: 700;
}
.trouble__list li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
.trouble__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #e60012;
  font-weight: 800;
}
/* 人物イラスト（1枚） */
.trouble__people {
  position: absolute;
  left: 50%;
  bottom: -120px;       /* 下に余分にはみ出させる */
  transform: translateX(-50%);
}
.trouble__people img {
  display: block;
  width: 580px;        /* 固定で大きめに */
  height: auto;
}
/**スマホ用**/
@media screen and (max-width: 768px)  {
  .trouble {
    padding-bottom: 50px;
  }
  .trouble__list {
    font-size: 16px;
    line-height: 1.6;
  }
  .trouble__card {
    padding-bottom: 70px;
  }
  .trouble__people {
    bottom: -50px;
    left: 10%;
    transform: translateX(-5%);
  }
}
/*選ばれる理由
---------------------------------------------------------------------------*/

.reasons {
  background: #e8f6f7;
  padding: 56px 16px 72px;
}
.reasons__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.speechBubble {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 150px;
  border-radius: 9999px;
  background:  linear-gradient(180deg, #3cadf2 0%, #1382db 100%);
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: .03em;
}
.speechBubble::before  {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #e8f6f7 transparent transparent;
  translate: -50% 100%;
}
.speechBubble::after  {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #1382db transparent transparent;
  translate: -50% 100%;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 50px;
  margin-top: 24px;
}
.reason {
  text-align: center;
  position: relative;
  padding: 8px 10px;
}
.reason__num {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-6px);
  font-weight: 600;
  font-size: 40px;
  color: #777;
  font-family: Barlow;
}
.reason__icon {
  max-width: 180px;
  height: auto;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.reason__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.reason__head {
  margin: 4px 0 6px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 800;
  color: #096a62;
}
.reason__text {
  margin: 0 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  text-align: left;
}
/* レスポンシブ */
@media (max-width: 960px) {
  .reasons__grid {
    grid-template-columns: repeat(2, 1fr); gap: 30px 18px;
  }
  .reason__num {
    font-size: 28px;
  }
  .reason__icon {
    width: 112px; height: 112px;
  }
}
@media (max-width: 767px) {
  .reasons {
    padding: 20px 14px 40px;
  }
  .speechBubble {
    padding: 5px 40px;
	  font-size: 16px;
  }
  .reason__head {
    font-size: 17px;
  }
  .reason {
    padding-left: 6px; padding-right: 6px;
  }
  .reason__text {
    font-size: 15px;margin: 0;
	  line-height: 1.7;
  }
}
/*CTA
---------------------------------------------------------------------------*/
.contact {
  background: linear-gradient(180deg, #0a5389 0%, #098ac2 100%);
  text-align: center;
  padding: 60px 16px 50px;
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* カード部分 */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 30px;
  margin: 0 auto;
  grid-template-rows: auto auto;
}
.contact-card__tel {
  font-size: 25px;
	padding: 15px 0;
  font-weight: 700;
  color: #00a68e;
  font-family: Barlow;
  line-height: 1.0;
	border-radius: 5px;
	background: #fff;
}
.contact-card__tel i {
  margin-right: 2px;color: #000;font-size: 0.8em;
}
.contact-card__time {
  font-size: 11px;
  color: #555;
  margin: 0 0 0 20px;
  font-weight: 700;
}
/* ボタン */
.contact-card__btn {
  display: flex;
  align-items: center;     /* 縦 */
  justify-content: center; /* 横 */
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
}
.contact-card__btn.line {
  background: #00c300;
}
.contact-card__btn.mail {
  background: #ff4089;
}
.contact-card__btn i {
  margin-right: 6px;
}
/* イラスト配置 */
.contact__illust {
  position: absolute;
  right: 0;
  bottom: -130px;
  z-index: 2;
}
.contact__illust img {
  width: 200px;
  height: auto;
}
@media (max-width: 768px) {
  .contact__cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact-card__text {
  margin: 16px 10px;
}
	.contact-card__tel {
		margin-top: 15px;
	padding: 10px 0;
}
  .contact__illust {
  position: absolute;
  right: 0;
  top: -60px;
  z-index: 1;
width:40%;
  }
  .contact{
	  padding: 20px 16px 40px;
  }
}
/*ご利用の流れ
---------------------------------------------------------------------------*/
/* 背景と余白 */
.flow {
  background: #f3f3ef;
  padding-bottom: 40px;
}
.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 33px;               /* 行間/列間 */
  position: relative;
}
/* カード */
.flow-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 15px 22px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-align: left;
}
/* アイコン（ダミー画像を中央に） */
.flow-card__icon {
  max-width: 117px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}
.flow-card__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
/* STEP ラベル（ティール） */
.flow-card__step {
  margin: 2px 0 0;
  text-align: center;
  color: #2ab8a3;               /* ティール */
  font-weight: 800;
  letter-spacing: .04em;
  font-size: 15px;
}
/* タイトル（太字・中央寄せ） */
.flow-card__title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 900;
  text-align: center;
  color: #111;
}
/* 説明文 */
.flow-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
}
/* カード間の矢印（PCでのみ表示） */
@media (min-width: 901px) {
  .flow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -32px; 
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M8 3l8 9-8 9V3z'/%3E%3C/svg%3E") no-repeat center / contain;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M8 3l8 9-8 9V3z'/%3E%3C/svg%3E") no-repeat center / contain;
    color: #2ab8a3;             /* 矢印色（ティール） */
    opacity: .9;
  }
}
/* レスポンシブ */
@media (max-width: 900px) {
  .flow__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 20px;
  }
  /* タブレットでは矢印を非表示に（見づらくなるため） */
  .flow-card::after {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .flow {
    padding: 30px 0 40px 0;
  }
  .flow__inner {
    gap: 15px;
    margin-top: 25px;
	padding: 10px 10px 25px 10px;  
  }
  .flow-card {
    padding: 18px 16px 16px;
	  margin: 0;
  }
  .flow-card__icon {
    width: 96px; height: 96px;
  }
  .flow-card__title {
    font-size: 16px;
  }
  .flow-card__text {
    font-size: 15px;
	  line-height: 1.6;
  }
}
/*特殊清掃の流れ
---------------------------------------------------------------------------*/
.service-flow {
  background: url("../images_2512/tokushu_bg.png");
  background-size: cover;
  padding: 60px 16px 80px;
}
.service-flow__inner {
  max-width: 1100px;
  margin: 0 auto;
}
/* 2列レイアウト */
.service-flow__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 40px;
  margin-top:50px;
}
/* カード */
.service-flow-card {
  background: #ecfcfe;
  border-radius: 10px;
  padding: 20px;
  display: grid;
  grid-template-columns: 160px 1fr; /* 画像＋本文 */
  gap: 32px;
  position: relative;
  align-items: start;
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
/* 番号バッジ */
.sfc-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1eb5a0;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 30px;
}
/* 画像 */
.sfc-img {
  border-radius: 6px;
  overflow: hidden;
}
.sfc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 本文 */
.sfc-title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #1eb5a0;
}
.sfc-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}
/* スマホで1列に */
@media (max-width: 768px) {
  .service-flow {
  padding: 30px 16px 40px;
}
  .service-flow__grid {
    grid-template-columns: 1fr;
  }
  .service-flow-card {
    grid-template-columns: 1fr;
	gap: 20px;  
  }

  .sfc-img {
    height: 160px;
  }
	.sfc-title {
    font-size: 18px;}
}
/*サービス一覧
------------------------------------------------------------*/
.service-list {
  background: #fff;
  padding: 60px 16px 130px;
  text-align: center;
}
.service-list__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.service-list__title span {
  color: #18b9a2;
}
/* グリッド */
.service-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
/* カード */
.service-card {
  background: #e8f6f7;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
}
.service-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* ブラウザが対応していればこれでOK */
  overflow: hidden;
}
.service-card__img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* はみ出した部分は切り取り */
}
.service-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
}
.service-card__title:before, .service-card__title:after  {
  border-top: 2px solid;
  content: "";
  width: 2em; /* 線の長さ */
}
.service-card__title:before  {
  margin-right: 0.6em; /* 文字の右隣 */
}
.service-card__title:after  {
  margin-left: 0.6em; /* 文字の左隣 */
}
.service-card__text {
  margin: 0 40px;
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
/* レスポンシブ */
@media (max-width: 960px) {
  .service-list__grid {
    grid-template-columns: repeat(2, 1fr);
  }
	.service-card__title {
  font-size: 18px;
}
	.service-card__text {
  margin: 0 25px;}
	.service-list{padding: 30px 16px 120px;}
}
@media (max-width: 767px) {
  .service-list__grid {
    grid-template-columns: 1fr;
  }
  .service-card__img {
    height: 200px;
  }
}
/*事例
---------------------------------------------------------------------------*/
.case-bg-01  {
  padding: 20px 0 30px 0;
}

.case-cate-bbl {
  position: relative;
	display: inline-block;
  margin-bottom: 20px;
  padding: 15px;
  background:  #096a62;
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  letter-spacing: .03em;
	width: 900px;
	border-radius: 5px;
}
.case-cate-bbl::before  {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 20px 10px 0 10px;
  border-color: #77E4D5 transparent transparent;
  translate: -50% 100%;
}
.case-cate-bbl::after  {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15.5px 7.8px 0 7.8px;
  border-color: #096a62 transparent transparent;
  translate: -50% 100%;
}




.case-cate-ttl  {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  font-size: 26px;
  font-weight: 900;
}
.case-cate-ttl:before, .case-cate-ttl:after  {
  border-top: 2px solid;
  content: "";
  width: 4em; /* 線の長さ */
}
.case-cate-ttl:before  {
  margin-right: 1em; /* 文字の右隣 */
}
.case-cate-ttl:after  {
  margin-left: 1em; /* 文字の左隣 */
}

.swing {
    -webkit-animation:swing 0.5s infinite linear alternate;
    animation:swing 0.5s infinite linear alternate;
	text-align: right;
	margin-right: 10px;
}

@-webkit-keyframes swing {
    0% {-webkit-transform:translate(0, 0) rotate(-1deg);}
    50% {-webkit-transform:translate(0, -0.5px) rotate(0deg);}
    100% {-webkit-transform:translate(0, 0)rotate(1deg);}
}

@keyframes swing {
    0% {transform:translate(0, 0) rotate(-1deg);}
    50% {transform:translate(0, -0.5px) rotate(0deg);}
    100% {transform:translate(0, 0)rotate(1deg);}
}

/* 外枠 */
.peek-carousel {
  margin-inline: auto;
  position: relative;
  overflow: hidden; /* 右端のオーバーレイ用 */
  margin-left: 50px;
}
/* 横スクロールの本体 */
.track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 8px 0 14px;
  /* 最後のカードを“先頭合わせ”で止めても右に余白を残して綺麗に終わるよう調整 */
  padding-right: calc(70px + 40px);
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
	overflow-y: hidden;
	cursor: grab;                 /* 追加：ドラッグできそうな見た目 */
  user-select: none;            /* 追加：テキスト選択防止 */
  -webkit-overflow-scrolling: touch; /* 追加：SPで慣性スクロール */
}

.track.is-dragging {
  cursor: grabbing;
}
/* 1枚表示＋次をチラ見せ：カード幅 = 100% - (ギャップ + peek) */
.card {
  flex: 0 0 900px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #e6e8eb;
  border-radius: 15px;
  padding: 40px 30px;
  min-height: 180px;
  box-shadow: 0 6px 10px rgba(0,0,0,.5);
  margin: 30px 0;
}
/* 右端に「まだ続くよ」感のグラデ（任意）
.peek-carousel::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: max(60px, 70px);
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,1));
}
*/
/* (任意) ホバー演出 */
.track:has(.card:hover) .card:not(:hover) {
  filter: saturate(.95) contrast(.98);
}
/* (任意) WebKit系スクロールバー */
.track::-webkit-scrollbar  {
  height: 8px;
}
.track::-webkit-scrollbar-thumb  {
  background: #ff6993; border-radius: 8px;
}
.track::-webkit-scrollbar-track  {
  background: #f3f5f7;
}
/**スマホ用**/
@media screen and (max-width: 768px)  {
  .card {
    flex: 0 0 75vw;
    padding: 20px 15px;
    margin: 0 0 30px 0;
  }
  .peek-carousel {
    width: 90%;
    margin: 10px auto 20px auto;
  }
  .track {
    gap: 20px;
  }
  .case-bg-01  {
    padding: 0;
  }
.case-cate-bbl {
  padding: 7px;
  font-size: 18px;
  font-weight: 900;
width: 90%;
	margin-top: 10px;
}	
	
	
	
	
  .case-cate-ttl  {
    font-size: 20px;
	  margin:0.5em;
  }
  .case-cate-ttl:before, .case-cate-ttl:after  {
    border-top: 2px solid;
    content: "";
    width: 1.5em; /* 線の長さ */
  }
}
/* 見た目用の色だけ。不要なら消してOK */
.box.before img,
.box.after img  {
  border-radius:12px;
}
/* 共通 */
.case-frame {
  display:grid;
  gap:40px;
  /* PC：左にA/Bのカラム、右にC */
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "case-photos detail";
}
.case-photos {
  grid-area: case-photos;
  display:grid;
  gap:3px;
  /* PC：A↓矢印↓B（縦積み） */
  grid-template-rows: 1fr auto 1fr;
  grid-template-areas:
  "before"
  "arrow"
  "after";
}
.box {
  display:grid;
}
/* 矢印（PCは下向き） */
.arrow {
  grid-area: arrow;
  width:0; height:0;
  justify-self:center; align-self:center;
  border-left:14px solid transparent;
  border-right:14px solid transparent;
  border-top:20px solid #e23d62;   /* ▼ */
}
.before {
  grid-area:before;
}
.after {
  grid-area:after;
}
.detail {
  grid-area:detail;
}
/* --- SP（ブレークポイント）は並び替え＋矢印向き変更 --- */
@media (max-width: 767px) {
  .box.before img,
  .box.after img  {
    border-radius:5px;
  }
  .case-frame {
    /* SP：上段にA/B、下段にC */
    grid-template-columns: 1fr;
    grid-template-areas:
    "case-photos"
    "detail";
    gap:10px;
  }
  .case-photos {
    /* SP：A ▶ B（横並び） */
    grid-template-rows: auto;
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "before arrow after";
    align-items: stretch;
  }
  .box {
    min-height:60px;
  }
  /* モバイルでは少し低めに */
  .arrow {
    /* 右向きに描き直し */
    border: none;
    border-top:7px solid transparent;
    border-bottom:7px solid transparent;
    border-left:10px solid #e23d62;  /* ▶ */
  }
}

/* ヘッダー（金額） */
.case-head {
  display:flex; align-items:center; gap:10px;
  margin-bottom: 8px;
}
.price {
  font-size: 28px; font-weight: 800; letter-spacing:.02em;
	  line-height: 1.0;
}
/* タイトル行（作業内容） */
.case-title {
  display:flex;
	align-items:center; 
	gap:10px;
  margin-bottom: 12px;
}
.work {
  margin: 0;
  font-size: 16px; line-height:1.5; font-weight: 800;
}
/* バッジ */
.badge {
  display:inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  color:#fff; font-weight: 800; font-size: 16px;
  white-space: nowrap;
	line-height:1.5;
}
.badge--pink {
  background:#ff6ea1;
}
.badge--green {
  background:#1eb5a0;
}
.badge--black {
  background:#333;
}
/* スペック（定義リストを行形式で） */
.spec {
  margin: 0 0 12px; padding: 0;
  border: 1px solid #d7dfdf;
  border-radius: 8px; overflow: hidden;
  background:#fff;
}
.spec .row {
  display:grid; 
	grid-template-columns: 110px 1fr;
  gap: 0; align-items: stretch;
  border-top: 1px solid #e6ecec;
}
.spec .row:first-child {
  border-top: none;
}
.spec dt, .spec dd {
  margin:0; padding:2px 5px;
  font-size: 15px;
}
.spec dt {
  background:#f6fbfb; color:#333; 
  border-right: 1px solid #e6ecec;word-break:keep-all;
}
.spec dd {
  color:#333;
	font-weight:700;
}
/* 説明文 */
.desc {
  margin: 10px 2px 0;
  font-size: 15px; line-height: 1.9;
  color:#2b2b2b;
}
@media (max-width: 767px) {
	.case-title {
  
}
  .badge {
    font-size: 14px;
	  padding: 5px;
	  line-height: 1.0;
  }
  .price {
    font-size: 18px;
  }
	.work {
  font-size: 14px;font-weight: 500;
}
	.desc {
line-height: 1.6;}
}
/*お客様の声
---------------------------------------------------------------*/
/* セクション全体 */
.voices {
  position: relative;
  overflow: hidden;
  padding: 72px 16px 96px;
  background: #d8f0f1;
  clip-path: ellipse(120% 100% at 50% 100%);
  margin-top: -90px;
}
/* 背景SVG（葉っぱ風） */
.voices__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.voices__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* コンテンツ幅 */
.voices__inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
/* 3カラムのカードグリッド */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
/* カード */
.voice-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  text-align: left;
}
/* タグ（左上のピル） */
.voice-card__tag {
  display: inline-block;
  margin: 0 0 10px;
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  color: #34baa7;
  border: 2px solid #34baa7;
}
/* タイトル（太字） */
.voice-card__title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.65;
}
/* メタ（地域・年代） */
.voice-card__meta {
  margin: 0 0 8px;
  font-size: 15px;
  color: #34baa7;
  font-weight: 700;
}
/* 本文 */
.voice-card__text {
  margin: 20px 0 0 0;
  font-size: 15px;
  line-height: 1.9;
}
/* レスポンシブ */
@media (max-width: 980px) {
  .voices__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .voices {
    padding: 56px 14px 72px;
    clip-path: ellipse(400% 100% at 50% 100%);
  }
  .voices__grid {
    grid-template-columns: 1fr;
  }
}
/*FAQ
------------------------------------------------------------------*/
.faq  {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 16px;
}
.faq-group__title  {
  margin: 40px 0 12px;
  font-size: 18px;
  font-weight: 900;
  color: #333;
}
.faq-item  {
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}
/* 質問ボタン */
.faq-question  {
  width: 100%;
  text-align: left;
  padding: 14px 18px;
  background: #e4f5f3;
  color: #333;
  font-weight: 700;
  font-size: 16px;
	line-height: 1.7;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover  {
  background: #eee;
}
.faq-icon  {
  font-weight: 900;
  transition: transform 0.3s;
}
/* 答え */
.faq-answer  {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #f9f9f9;
  padding: 0 18px;
}
.faq-answer p  {
  margin: 12px 0;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.faq-answer dl,
.faq-answer ol,
.faq-answer ul {
  margin: 20px 0 20px 10px;
}
.faq-answer dt {
  font-weight: 700;
  margin-top: 20px;
}
.faq-answer li  {
  font-weight: 700;
  list-style-type: square;
}
/* 開いたとき */
.faq-item.active .faq-answer  {
  max-height: 1200px; /* 十分に大きくとる */
  padding: 12px 18px;
}
.faq-item.active .faq-icon  {
  transform: rotate(45deg); /* ＋を×に */
}
@media (max-width: 767px)  {
	.faq  {padding: 30px 16px 40px;}
}
/*当社について
-----------------------------------------------------------------------------*/
/* セクション全体 */
.about  {
  background: #fff;
}
/* 上部：テキスト＋写真 */
.about__row  {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 16px;
  display: grid;
  grid-template-columns: minmax(420px, 560px) 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
/* 左：上下角丸のパネル */
.about__panel  {
  padding: 28px;
}
.about__subtitle  {
  margin: 0 0 40px;
  font-size: 18px;
  font-weight: 900;
  color: #1eb5a0;
}
.about__panel p  {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: #444;
}

.about__panel table {
	margin: 30px 10px;
}

.about__panel table th{
	text-align: left;
	padding: 2px 10px;
	white-space: nowrap;
}
.about__panel table td{
	padding: 2px 10px;
}
/* 右：写真を右端にベタ付け */
.about__photo  {
  margin: 0;
  margin-right: calc(50% - 50vw); /* 画面右端まで伸ばす */
}
.about__photo img  {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 80px 0 0 80px; /* 左角だけ軽く丸める（不要なら0） */
}
/* 下のポイント群 */
.about__points  {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.about-point  {
  background: #f5f5f2;
  border-radius: 6px;
  padding: 0;
}
.about-point__title  {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  padding: 5px 30px;
  color: #fff;
  background: #1eb5a0;
}
.about-point p  {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  padding: 20px 30px;
  color: #333;
}


/* レスポンシブ */
@media (max-width: 767px)  {
  .about__row  {
    grid-template-columns: 1fr;
    padding: 30px 16px;
  }
  .about__photo  {
    margin-right: 0; /* 右端ベタ付け解除 */
  }
  .about__panel {
    padding: 0 15px;
  }
  .about__photo img  {
    border-radius: 12px;
    max-height: 260px;
  }
  .about__points  {
    grid-template-columns: 1fr;
	  margin: 0 auto ;
  padding: 0 16px 60px 16px;
  }
	.about-point p  {
  padding: 15px;
}
	.about__subtitle  {
  margin: 0 0 20px;}
}
.about-point__title  {
  font-size: 16px;
  font-weight: 700;
margin: 0;}
.about__panel table {
	margin: 20px 0 10px;
}
.about__panel table th{
	font-size: 14px;
	padding: 2px 5px;
}
.about__panel table td{
	padding: 2px 5px;
}
table.about__table td,
table.about__table th{
	line-height: 1.6;
	padding: 5px;
}
table.about__table th{
	border-bottom: 1px solid #333;}
table.about__table td{
	font-size: 0.9em;
}

/*フッターエリア
-----------------------------------------------------------------------------*/
/* セクション全体 */
.foot-area  {
  background: #c7e0dd;
	text-align: center;
}
.footer-links{
  display: flex;
  justify-content: right; /* 中央寄せ */
  gap: 30px;              /* リンクの間隔 */
  flex-wrap: wrap;        /* スマホで折り返す */
padding: 20px 20px 0;
}
.footer-links a {
  text-decoration: none;
  color: #1eb5a0;
  font-size: 14px;
font-weight: 700;
}

.footer-links a:hover {
  color: #1eb5a0; /* ホバー時の色（例: 緑） */
}
.copy{
	font-size: 12px;
	color: #333;
}
@media (max-width: 769px)  {
	.footer-links{
		gap:10px;
	}
}

/*フッターCTA
---------------------------------------------------------------------------*/
.footer-cta  {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  font-family: sans-serif;
}
/* PC用 */
.footer-cta-pc  {
  display: flex;
}
.footer-cta-pc .footer-cta-item  {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  color: #000;
  font-size: 15px;
  text-decoration: none;
  font-weight: 600;
  line-height: 1.5;
  justify-content: center;
}
.footer-cta-pc a:hover.footer-cta-item {
	background: #d7fdf8;
}
.footer-cta-pc .footer-cta-icon  {
  height: 28px;
  width: auto;
  margin-right: 10px;
}
.footer-cta-pc strong  {
  font-size: 18px;
}
/* スマホ用 */
.footer-cta-sp  {
  display: none;
  grid-template-columns: repeat(3, 1fr); /* 横いっぱいで3分割 */
  width: 100%;
}
.footer-cta-sp .footer-cta-item  {
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer-cta-sp .footer-cta-icon  {
  height: 24px;
  width: auto;
  margin-bottom: 4px;
}
/* 色 */
.footer-cta-tel,
.footer-cta-line,
.footer-cta-mail  {
  border-right: 3px solid #1eb5a0;
	border-top: 3px solid #1eb5a0;
	border-bottom: 3px solid #1eb5a0;
	background: #fff;
}
.footer-cta-tel{border-left: 3px solid #1eb5a0;}
/* レスポンシブ */
@media (max-width: 767px)  {
  .footer-cta-pc  {
    display: none;
  }
  .footer-cta-sp  {
    display: grid;
  }
}
@media (min-width: 769px)  {
  .footer-cta-pc  {
    display: flex;
  }
  .footer-cta-sp  {
    display: none;
  }
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show  {
  display: block;
}
/*ボタンの設定*/
.pagetop a  {
  display: block;text-decoration: none;text-align: center;z-index: 99;
  animation: opa1 1s 0.4s both;
  position: fixed;
  right: 20px;
  bottom: 120px;
  font-size: 1.5rem;
  background: #1eb5a0;	
  color:#fff;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
}

@media only screen and (max-width:767px)  {
	.pagetop a  {
		right: 10px;
  bottom: 100px;
  font-size: 1.2rem; 
		width: 35px;
  line-height: 35px;
	}
}
/*利用規約
---------------------------------------------------------------------------*/
.terms {
  padding: 60px 16px 50px;
}
.terms__inner {
  max-width: 1100px;
  margin: 0 auto;
}
h1.hdg-terms {
  font-size: 25px;
  font-family: "Noto sans JP";
  border-bottom: 1px solid #333;
}
table.terms  {
  width: 90%;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}
table.terms th  {
  background: #c4dfdb;
  padding: 5px 10px;
  border: 1px solid #ccc;
}
table.terms td  {
  padding: 5px 10px;
  border: 1px solid #ccc;
}
@media only screen and (max-width:767px)  {
  .m-t-100  {
    margin-top: 0 !important;
  }
  h1.hdg-terms {
    font-size: 20px;
  }
  table.terms  {
    width: 100%;
    font-size: 1rem;
  }
	.terms {
  padding: 30px 16px;
}
}
/*sectionの両サイドの余白を相殺するスタイル
---------------------------------------------------------------------------*/
.margin-lr0  {
  margin: 0 calc(-1 * var(--content-space));
}
/*その他
---------------------------------------------------------------------------*/
.clearfix::after  {
  content: "";display: block;clear: both;
}
.color-check, .color-check a  {
  color: #ff0000 !important;
}
.l  {
  text-align: left !important;
}
.c  {
  text-align: center !important;
}
.r  {
  text-align: right !important;
}
.g  {
  color: var(--primary-color)
}
.or  {
  color: #e15501;
}
.ws  {
  width: 95%;display: block;
}
.wl  {
  width: 95%;display: block;
}
.mb0  {
  margin-bottom: 0px !important;
}
.mb30  {
  margin-bottom: 30px !important;
}
.look  {
  display: inline-block;padding: 0px 10px;background: #eee;border: 1px solid #ccc; color: #888; border-radius: 3px;margin: 5px 0; word-break: break-all;
}
.small  {
  font-size: 0.75em;
}
.large  {
  font-size: 2em; letter-spacing: 0.1em; line-height: 1.0;
}
.pc  {
  display: none;
}
.dn  {
  display: none !important;
}
.mark  {
  background: linear-gradient(transparent 60%, #ffd850 60%);
}
.font-l  {
  font-size: 1.1em; letter-spacing: 0.1em;
}
.block  {
  display: block !important;
}
.brlw  {
  font-family: 'Barlow'; font-weight: bold;
}
.font-ll  {
  font-size: 1.5em !important; letter-spacing: 0.05em;
}
.b  {
  font-weight: 900;
}
.table-scroll  {
  overflow: scroll;
}
.m-t-100  {
  margin-top: 100px;
}
.m-t-50  {
  margin-top: 50px;
}

.m-t-case  {
  margin-top: 50px;
}
.p-b-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width:767px)  {
	.m-t-case  {
  margin-top: 20px;
}
	.p-b-80 {
  padding-bottom: 0;
}
}

.p-b-copy  {
  padding-bottom: 100px;
}
h2  {
  margin-block-start: 0.5em;
  margin-block-end: 0.5em;
}

/**PCで解除される改行（スマホでは改行）**/
.br-pc-off {
	display: none;
}

@media only screen and (max-width:767px)  {
	.br-pc-off {
	display: block;
	}
	/**スマホで解除される改行（PCでは改行）**/
	.br-sp-off{
		display: none;
	}
}
