@charset "UTF-8";
/* *****************************************************************

Stylesheet: ベーススタイル（全て）に適応

******************************************************************/
/* TOPのパネル */
.top-panel {
  /* 位置調整 */
  position: relative;
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
  z-index: 1;
}

.top-panel .smb-panels__item {
  /* パネルの影 */
  -webkit-box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0 -6px 8px rgba(0, 0, 0, 0.1) !important;
}

.top-panel .smb-panels__item:hover {
  /* 標準であるホバーエフェクトの除去 */
  -webkit-box-shadow: none;
          box-shadow: none;
}

.top-panel .smb-panels__item__body {
  /* 標準のh2装飾の除去 */
  padding: 80px;
}

.top-panel .smb-panels__item__body h2 {
  background-color: transparent;
  border-left: none;
}

/* 3枚並んだパネルの装飾 */
.panels .c-row__col {
  /* パネルの余白除去 */
  padding: 0;
}

.panels .smb-panels__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  /* パネルホバー時の装飾 */
}

.panels .smb-panels__item__figure {
  /* テキストと画像の位置変更 */
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  overflow: hidden;
}

.panels .smb-panels__item__figure::before {
  /* ホバー時の装飾 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  content: '';
  white-space: pre;
  background: radial-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: 13px;
  -webkit-transition: all 0.6s 70ms;
  transition: all 0.6s 70ms;
  opacity: 0;
  z-index: 1;
}

.panels .smb-panels__item__figure img {
  /* 変化の時間 */
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}

.panels .smb-panels__item__body {
  /* パネルのボーダー部分 */
  -webkit-box-shadow: 0 0 0 1px #ccc;
          box-shadow: 0 0 0 1px #ccc;
  /* パネルのテキストと画像の順序を変更*/
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.panels .smb-panels__item__title {
  font-size: 24px;
}

.panels .smb-panels__item__content {
  font-size: 14px;
}

.panels .smb-panels__item:hover .smb-panels__item__figure::before {
  /* ホバー時に文字浮き出して見えるようにscaleで拡大 */
  -webkit-transform: scale(1.4);
          transform: scale(1.4);
  opacity: 1;
}

.panels .smb-panels__item:hover .smb-panels__item__figure img {
  /* ホバー時に画像を拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.smb-section__title {
  /* セクションタイトルサイズ変更 */
  font-size: 46px;/*2.5em*/
}

.smb-section__title::after {
  /* 標準であるセクションタイトルの下線除去 */
  display: none;
}

/* バナーの装飾 */
.banners .smb-items__banner__figure {
  /* デフォルトのfilterの除去 */
  -webkit-filter: none !important;
          filter: none !important;
}

.banners .smb-items__banner__figure img {
  /* 常時filterをかける */
  -webkit-filter: brightness(0.8);
          filter: brightness(0.8);
}

.banners .smb-items__banner__body {
  /* 変化にかける時間 */
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.banners .smb-items__banner__title {
  font-size: 24px;
  font-weight: 600;
}

.banners .smb-items__banner__lede {
  font-size: 16px;
}

.banners .smb-items__banner:hover .smb-items__banner__body {
  /* ホバー時に文字を右に移動 */
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

@media (max-width: 1023px) {
  /******************************************************************

Stylesheet: 1023px以下（タブレット）で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title h2 {
    font-size: 32px;
  }
  .hero .swiper-slide {
    height: 80vh;
  }
  /* タブレット以下でパネルの画像の重なりをなくす */
  .top-panel {
    margin-top: 30px;
    -webkit-transform: none;
            transform: none;
    /* パネルの影を調節 */
  }
  .top-panel .smb-panels__item {
    -webkit-box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
            box-shadow: 10px 0 -10px rgba(0, 0, 0, 0.2);
  }
  .top-panel .smb-panels__item__body {
    padding: 30px;
  }
  /* フッターウィジェットエリア */
  .l-footer-widget-area__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    border: none !important;
  }
}

@media (max-width: 639px) {
  /******************************************************************

Stylesheet: 639px以下(スマホ)で適用

******************************************************************/
  /* ヒーロースライダー */
  .hero__title {
    top: 15% !important;
  }
  .hero__title h2 {
    font-size: 24px !important;
  }
  .hero__btn {
    bottom: 20% !important;
  }
  .hero__btn a {
    /* ボタンのサイズを小さく */
    width: 180px !important;
    height: 45px !important;
  }
  /* 3つ並んだパネル */
  .panels {
    /* パネルの余白追加 */
  }
  .panels .c-row__col {
    padding: 0 14px;
  }
  /* ボタン */
  .btn .smb-btn {
    width: 180px !important;
    height: 45px !important;
    margin-top: 30px !important;
  }
  /* 任意のタクソノミーの投稿（リッチメディア）のスタイル（スマホ） */
  .c-entries--rich-media .c-entries__item:nth-of-type(-n + 5) {
    /* 6番目を除く */
    margin-bottom: 30px;
  }
  .c-entries--rich-media .c-entry-summary__content {
    /* スマホでテキスト除去 */
    display: none;
  }
  /* フッター */
  .info-inner {
    display: block !important;
    text-align: center !important;
    height: auto !important;
    padding: 40px;
  }
  .info__logo {
    margin-right: 0 !important;
    margin-bottom: 25px;
  }
  .info__logo img {
    width: 120px;
  }
  .info__text {
    margin-bottom: 25px;
  }
}

.swiper-slide {
  /* 表示させる高さの調整 */
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.swiper-slide .main-visual {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 9s ease;
  transition: -webkit-transform 9s ease;
  transition: transform 9s ease;
  transition: transform 9s ease, -webkit-transform 9s ease;
}

.swiper-slide-active .main-visual {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.swiper-slide-active .hero__title {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.swiper-slide-active .hero__btn {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
}

.hero {
  overflow: hidden;
}

.hero__title {
  position: absolute;
  top: 30%;
  left: 50%;
  color: #fff;
  text-align: center;
  width: 90vw;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s;
  transition: opacity 1.2s ease 1.5s, transform 1.2s ease 1.5s, -webkit-transform 1.2s ease 1.5s;
  z-index: 1;
  opacity: 0;
}

.hero__title h2 {
  font-size: 36px;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.8);
  line-height: 2em;
}

.hero__title span {
  display: block;
}

.hero__btn {
  position: absolute;
  bottom: 30%;
  left: 50%;
  font-size: 16px;
  color: #fff;
  -webkit-transform: translate(-50%, 20px);
          transform: translate(-50%, 20px);
  -webkit-transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s;
  transition: opacity 1.2s ease 2.5s, transform 1.2s ease 2.5s, -webkit-transform 1.2s ease 2.5s;
  opacity: 0;
  z-index: 1;
}

.hero__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #cd162c;
  text-decoration: none;
  width: 240px;
  height: 60px;
}

/* ヘッダー */
/* グローバルメニュー位置調整 */
.l-header .c-navbar__item {
  position: relative;
}

.l-header .c-navbar__item::after {
  /* メニューアイテムの左に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.l-header .c-navbar__item:last-of-type::before {
  /* 最後のメニューアイテムの右に区切り線 */
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  height: 30px;
  margin-top: -15px;
  border-right: 1px solid #ccc;
}

.btn .smb-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 60px;
  margin-top: 60px;
}

/* 最近の投稿（テキスト）のスタイル */
.c-entries--text {
  position: relative;
  background-color: #f9f9f9;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}

.c-entries--text .c-entries__item a {
  padding-right: 2em;
  padding-left: 2em;
}

.c-entries--text .c-entries__item .c-entry-summary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--text .c-entries__item .c-entry-summary__title {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.c-entries--text .c-entries__item .c-entry-summary__figure {
  display: block;
  position: absolute;
  top: -2px;
  left: 6em;
  /* 日付の長さに合わせて調整 */
  background-color: transparent;
}

.c-entries--text .c-entries__item .c-entry-summary__figure img, .c-entries--text .c-entries__item .c-entry-summary__figure::before {
  display: none;
}

.c-entries--text .c-entries__item .c-entry-summary__figure span {
  background-color: #fff;
  border-radius: 15px;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-4 {
  color: #333;
  border: 1px solid #333;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-6 {
  color: #cd162c;
  border: 1px solid #cd162c;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-5 {
  color: #104f96;
  border: 1px solid #104f96;
}

.c-entries--text .c-entries__item .c-entry-summary__term--category-7 {
  color: #e97501;
  border: 1px solid #e97501;
}

.c-entries--text .c-entries__item .c-entry-summary__term {
  position: relative;
  left: 0;
  white-space: nowrap;
}

.c-entries--text .c-entries__item .c-entry-summary__meta {
  margin-right: 10rem;
  /* カテゴリー名の長さにあわせて調整 */
}

.c-entries--text .c-entries__item:hover .c-entry-summary__title {
  color: #cd162c;
}

/* 任意のタクソノミーの投稿（リッチメディア）のスタイル */
.c-entries--rich-media .c-entries__item:nth-of-type(-n + 3) {
  /* メディアの下に余白を増やす */
  margin-bottom: 80px;
}

.c-entries--rich-media .c-entries__item .c-entry-summary {
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
  /* 作成したカテゴリーIDによって末尾の番号が変わります */
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure {
  /* border-leftを適応するためmarginを消す */
  margin-bottom: 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__figure img {
  /* 変化の時間 標準の装飾を除去 */
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-filter: none !important;
          filter: none !important;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-6 {
  background-color: rgba(205, 22, 44, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-5 {
  background-color: rgba(16, 79, 150, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__term--category-7 {
  background-color: rgba(233, 117, 1, 0.8);
}

.c-entries--rich-media .c-entries__item .c-entry-summary__body {
  /* 見栄えを良くするため左側に余白をつける テキスト左側の縦線 */
  padding-left: 30px;
  border-left: 5px solid #cd162c;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__header {
  /* c-entry-summary__figureでmarginを除去したので余白を埋め合わせ */
  padding: 20px 0;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__content {
  /* テキスト部分の装飾 */
  color: #333;
  font-size: 14px;
  line-height: 2.25em;
}

.c-entries--rich-media .c-entries__item .c-entry-summary__meta {
  /* 投稿者・日時の除去 */
  display: none;
}

.c-entries--rich-media .c-entries__item a:hover .c-entry-summary__figure img {
  /* ホバー時の画像拡大 */
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/* フッターの上 */
.info {
  /* フッター上部にボーダー */
  border-top: 1px solid #ccc;
}

.info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1180px;
  height: 140px;
}

.info__logo {
  margin-right: 30px;
}

.info__logo img {
  width: 150px;
}

.info__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
}

.info .social-nav {
  margin-left: 0;
}

.info .social-nav__icon {
  display: inline;
  margin: 0 10px;
  list-style: none;
}

.info .social-nav__icon a {
  color: #212121;
}

/* フッターウィジェットエリア */
.l-footer-widget-area {
  /* ウィジェットエリアの上部にボーダーを入れるため、paddingを除去 */
  border-top: 1px solid #ccc;
  padding: 0;
}

.l-footer-widget-area .c-row {
  /* 左右にボーダー */
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item {
  /* paddingを除去し、詰まったのでこちらで追加 */
  padding: 40px;
}

.l-footer-widget-area__item:nth-of-type(n + 2) {
  /* 最初の一つ目を除くブロックにボーダー */
  border-left: 1px solid #ccc;
}

.l-footer-widget-area__item .c-widget__title {
  /* タイトルを左寄せ */
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #26BDC2;
}

.l-footer-widget-area__item .c-widget__title::before, .l-footer-widget-area__item .c-widget__title::after {
  /* 左右のボーダーの除去 */
  display: none;
}



/**/

/* ===== FV全体 ===== */
.labo-fv{
  padding: clamp(24px,4vw,60px);
  font-family:"Noto Sans JP",sans-serif;
}

/* =========================
   小見出し（白フチ文字）
========================= */
/* ===== 小見出し（滑らか袋文字） ===== */
.labo-fv__lead{
  font-size:16px;
  letter-spacing:.12em;
  color:#ffffff;
  margin-bottom:14px;
  font-weight:500;

  text-shadow:
    0 2px 6px rgba(0,0,0,0.35);
}

/* =========================
   メインタイトル（白フチ太）
========================= */
/* ===== メインタイトル（上品な袋文字） ===== */
.labo-fv__title{
  font-size:clamp(32px,4vw,56px);
  font-weight:700;
  line-height:1.3;
  color:#ffffff;
  margin-bottom:40px;

  /* 白縁を細く＋自然な影 */
  text-shadow:
    0 0 2px #ffffff,
    0 0 6px rgba(0,0,0,0.25),
    0 4px 18px rgba(0,0,0,0.35);
}

/* =========================
   丸3つ（完全な正円）
========================= */
.labo-fv__circles{
  display:flex;
  gap:20px;
  margin-bottom:26px;
}

/* aspect-ratioで絶対に歪ませない */
.labo-fv__circle{
  width:140px;
  aspect-ratio:1/1; /* ← 正円固定 */
  background:#e9bc73e3;/*#E9BC73>#e9bc73e3;*/
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-weight:700;
  font-size:16px;
  color:#1F2A44;

  position:relative;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* 「など」 */
.labo-fv__circle--etc span{
  position:absolute;
  bottom:16px;
  right:20px;
  font-size:12px;
  font-weight:400;
  color:#333;
}
.big-font{
	font-size:30px;
}



/*2026/03/09追加*/
.labo-fv__circle{
  width:140px;
  aspect-ratio:1/1;
  background:#e9bc73e3;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  font-weight:700;
  font-size:16px;
  color:#1F2A44;

  position:relative;

  box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

/* 内側ライン */
.labo-fv__circle::before{
  content:"";
  position:absolute;
  inset:4px;   /* ← この数字で内側距離調整 */

  border:2px solid #1f4d2e;
  border-radius:50%;
}



/* =========================
   下コピー（白文字＋袋文字）
========================= */
.labo-fv__note{
  font-size:16px;
  letter-spacing:.1em;
  color:#fff;
  font-weight:700;

  text-shadow:
    -2px -2px 0 #1F2A44,
     2px -2px 0 #1F2A44,
    -2px  2px 0 #1F2A44,
     2px  2px 0 #1F2A44;
}

/* ===== スマホ ===== */
@media(max-width:768px){

  .labo-fv__circles{
    justify-content:center;
    gap:12px;
  }

  .labo-fv__circle{
    width:100px;
    aspect-ratio:1/1;
    font-size:13px;
  }

  .labo-fv__title{
    font-size:26px;
  }

  .labo-fv__note{
    text-align:center;
  }
	
	.big-font {
    font-size: 26px;
}
}


/**/



/* =================================
   指定セクションだけ帯タイトル化
================================= */

.is-wide-title .smb-section__header{
  position:relative;
}

.is-wide-title .smb-section__title{
  background:#3C444A;
  color:#fff;

  padding:28px 20px;
  text-align:center;
  letter-spacing:.08em;
  font-weight:700;

  /* コンテナ突破 */
  width:100vw;
  margin-left:calc(50% - 50vw);
}

/* 下の余白調整 */
.is-wide-title .smb-section__header + *{
  margin-top:40px;
}

.is-wide-title
h2.smb-section__title {
    margin-top: 0;
}

/**/


/* ===========================
   看板風タイトル
=========================== */

.sign-title{
  display:inline-block;
  padding:18px 42px;

  background:#E7896A;
  color:#fff;

  font-size:24px;
  font-weight:700;
  letter-spacing:.15em;

  border-radius:8px;

  /* 看板らしい縁取り */
  border:4px solid #ffffff;

  /* ほんのり奥行き */
  box-shadow:
    0 4px 0 rgba(0,0,0,0.15);

}
.sign-title{
  background:#E9BC73;
  border:4px solid #fff;

  box-shadow:
    inset 0 2px 6px rgba(255,255,255,0.25),
    0 4px 0 rgba(0,0,0,0.15);
}



/**/


/* =========================
   横幅完全統一
========================= */

/* カラムを伸ばす */
.is-feature-3col .c-row{
  align-items:stretch;
}

/* カード全体 */
.is-feature-3col .smb-items__item{
  height:100%;
}

/* 中身をフル幅にする */
.is-feature-3col .smb-items__item__body{
  display:flex;
  flex-direction:column;
  height:100%;
  padding:0;
}

/* -------------------------
   画像エリア
------------------------- */
.is-feature-3col figure{
  margin:0;
  padding:40px 0;     /* ←左右padding削除 */
  background:#FFF4C6;
  width:100%;         /* フル幅 */
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:260px;
}

/* -------------------------
   タイトル
------------------------- */
.is-feature-3col h3{
  margin:0;
  padding:20px 0;     /* ←左右padding削除 */
  background:#3c444a;
  color:#fff;
  width:100%;
  text-align:center;
  font-size:18px;
  letter-spacing:.08em;
}

/* -------------------------
   テキスト
------------------------- */
.is-feature-3col p{
  margin:0;
  padding:24px 0;     /* ←左右padding削除 */
  background:#3c444a;
  color:#fff;
  width:100%;
  line-height:1.8;
  flex-grow:1;
  text-align:center;
}


/* ==========================
   3カラム 画像を正方形に統一
========================== */

.smb-items__item__body figure{
  background:#fff;      /* 薄い黄色 */
  aspect-ratio:1 / 1;      /* 正方形 */
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;            /* 余白 */
  margin:0;
}

/* 画像そのもの */
.smb-items__item__body figure img{
  width:100%;
  height:100%;
  object-fit:contain;      /* 比率維持 */
  max-width:100%;           /* ここでサイズ調整 */
}

/* ==========================
   画像を完全中央配置（強制）
========================== */

/* figure自体を中央レイアウト化 */
.is-feature-3col .wp-block-image{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

/* 正方形ボックス内の配置 */
.is-feature-3col figure{
  display:flex;
  justify-content:center;
  align-items:center;
}

/* 画像そのものを中央固定 */
.is-feature-3col figure img{
  margin:auto !important;
  display:block;
}

/* Snow Monkeyのaligncenter打ち消し */
.is-feature-3col .aligncenter{
  margin-left:auto !important;
  margin-right:auto !important;
}



/**/



/* ===============================
   サービス名ボックス装飾
================================ */

.labo-service-box{
  display:inline-block;
  background:#ffffff;
  padding:16px 28px;
  font-weight:700;
  letter-spacing:.08em;
  color:#222;
  border:2px solid #111;

  /* 右＋下シャドー */
  box-shadow:8px 8px 0 #3c444a;

  transition:.2s ease;
}

/* 少し浮かせる（任意） */
.labo-service-box:hover{
  box-shadow:12px 12px 0 #111;
  transform:translate(-2px,-2px);
}




/**/



/* =========================
   イラスト＋ラベル（3カラム）
========================= */

.labo-illus{
  padding: 60px 20px;
  background: transparent;
}

.labo-illus__wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

/* 1カード */
.labo-illus__item{
  text-align: center;
}

/* 画像枠：高さを揃える（重要） */
.labo-illus__figure{
  margin: 0 auto 18px;
  height: 220px;               /* ここで3つの高さが揃う */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 画像：サイズが違っても同じ見え方に */
.labo-illus__figure img{
  max-width: 320px;            /* 大きめに見せる */
  width: min(90%, 320px);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ラベル */
.labo-illus__label{
  margin: 0;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: .08em;
  color: #3c444a;
}

/* SP */
@media (max-width: 768px){
  .labo-illus__wrap{
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .labo-illus__figure{
    height: 200px;
  }
}

/* =========================
   正円カード化（浮かせる）
========================= */

.circle-card{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;          /* ← 正円維持の核心 */
  border-radius: 50%;
  background: #ffffff;
  padding: 40px 30px;
  box-sizing: border-box;

  /* 浮遊感 */
  box-shadow:
    0 20px 40px rgba(0,0,0,.08),
    0 8px 16px rgba(0,0,0,.06);

  transition: all .35s ease;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 少し浮き上がる動き */
.circle-card:hover{
  transform: translateY(-8px);
  box-shadow:
    0 30px 60px rgba(0,0,0,.12),
    0 12px 24px rgba(0,0,0,.10);
}

/* 画像位置を円の中で安定させる */
.circle-card .labo-illus__figure{
  height: auto;
  margin-bottom: 16px;
}

/* 画像サイズ統一 */
.circle-card img{
   width: 85%;
}

/* テキスト */
.circle-card .labo-illus__label{
  margin-top: 6px;
  font-size: clamp(16px,1.6vw,20px);
  font-weight: 600;
  letter-spacing: .08em;
}



/**/
/*ステッカー風文字*/


.labo-fv.sticker-text{
  position: relative;
  font-weight: 700;
  color: #000;

  text-shadow:
     4px  4px 0 #fff,
    -4px  4px 0 #fff,
     4px -4px 0 #fff,
    -4px -4px 0 #fff,
     0px  8px 18px rgba(0,0,0,.35);
}






/*# sourceMappingURL=style.css.map */
