@charset "UTF-8";
/*----------------------------------------*/
/* custom.css */
/*----------------------------------------*/
body.custom-background { 
  background-color: #fff; /*#f7f7f7; */
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 80px;
}

.l-header__inner{width:1100px;max-width:94%;}

.wp-block-image{margin-bottom:0;}
	
body, .page-template-page-front .l-content-wrap--front-page .l-content-wrap__inner{background-color:#f5f5f5 !important;}

.pcOnly{display:block;}
.spOnly{display:none;}

.centerImportant{text-align:center !important;}

.single .p-entry-eyecatch {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
}

.single .p-entry-eyecatch img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width:640px) {
	
p{font-size:3.8vw !important;}

.pcOnly{display:none;}
.spOnly{display:block;}
.main .l23b-section__inner{width:100%;}
.wp-block-columns.is-layout-flex{gap:10px;}
.has-large-font-size{font-size:4vw !important;}
.has-medium-font-size{font-size:4vw !important;text-align:left;}
.wp-block-lab23-blocks-label-card-list .l23b-label-card{font-size:3.6vw !important;padding:4px 8px;}
}

/*FormCSS*/
.form {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

/* 基本余白 */
.form p {
  margin: 0 0 14px;
}

/* 項目名 */
.form h3 {
  margin: 30px 0 12px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
  position: relative;
  padding-bottom: 10px;
}

/* 最初の見出しだけ上余白を詰める */
.form h3:first-child {
  margin-top: 0;
}

/* 下線アクセント */
.form h3::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin: 10px auto 0;
  background: #ff6900;
  border-radius: 999px;
}

	
.form h3 span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background: #d9534f;
  border-radius: 999px;
  vertical-align: middle;
}

/* テキスト系 */
.form input[type="text"],
.form input[type="email"],
.form input[type="tel"],
.form input[type="file"],
.form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fafafa;
  border: 1px solid #d8dee8;
  border-radius: 10px;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* フォーカス */
.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form input[type="tel"]:focus,
.form input[type="file"]:focus,
.form textarea:focus {
  outline: none;
  background: #fff;
  border-color: #4a90e2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.12);
}

/* textarea */
.form textarea {
  min-height: 180px;
  resize: vertical;
}

/* file */
.form input[type="file"] {
  padding: 12px 14px;
  background: #fff;
}

/* ラジオ全体 */
.form .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
}

/* ラジオの各項目 */
.form .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid #d8dee8;
  border-radius: 999px;
  background: #fafafa;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

/* labelがある場合 */
.form .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* hover */
.form .wpcf7-list-item:hover {
  background: #f2f7ff;
  border-color: #4a90e2;
}

/* radio本体 */
.form input[type="radio"] {
  margin: 0 8px 0 0;
  accent-color: #4a90e2;
  transform: translateY(1px);
}

/* submit */
.form input[type="submit"] {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 32px;
  padding: 16px 20px;
  border: none;
  border-radius: 999px;
  background: #008000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.form input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(53, 122, 189, 0.28);
}

.form input[type="submit"]:active {
  transform: translateY(0);
}

/* 説明文や補足 */
.form small,
.form .note {
  display: block;
  margin-top: 8px;
  color: #666;
  line-height: 1.7;
  font-size: 0.9rem;
}

/* CF7のエラー */
.form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
}

.wpcf7-response-output {
  max-width: 760px;
  margin: 20px auto 0;
  border-radius: 10px;
  box-sizing: border-box;
}

/* スマホ */
@media (max-width: 767px) {
  .form {
    padding: 22px 14px;
    border-radius: 12px;
  }

  .form h3 {
    margin: 24px 0 10px;
    font-size: 0.95rem;
  }

  .form input[type="text"],
  .form input[type="email"],
  .form input[type="tel"],
  .form input[type="file"],
  .form textarea,
  .form input[type="submit"] {
    font-size: 16px;
  }

  .form .wpcf7-radio {
    justify-content: flex-start;
  }

  .form .wpcf7-list-item {
    padding: 9px 12px;
  }
}

/* =========================
   地域LP用：areaパラメータがある時だけ有効
   ========================= */

/* ロゴ右の地域対応バッジ */
body.area-lp-active .l-site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

body.area-lp-active .area-header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dd3333;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  white-space: nowrap;
}

/* メイン画像内に重ねるための基準 */
body.area-lp-active .main .changeImg {
  position: relative;
  display: inline-block;
  width: 100%;
}

body.area-lp-active .main .changeImg figure {
  position: relative;
  display: block;
	width:1100px;
  max-width: 100%;
	margin:auto;
}

body.area-lp-active .main .changeImg figure img {
  display: block;
  width: 100%;
  height: auto;
}

/* メイン画像右上：満足度マーク付近に重ねる丸バッジ */
body.area-lp-active .area-main-badge {
  position: absolute;
  z-index: 6;

  /* 満足度マークの位置に合わせる */
  top: 7%;
  right: 14%;

  width: clamp(120px, 14vw, 180px);
  height: clamp(120px, 14vw, 180px);
  padding: 14px;

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

  border-radius: 9999px;
  background: #dd3333;
  border: 5px solid #fff;
  color: #fff;

  font-weight: 700;
  font-size: clamp(16px, 1.9vw, 24px);
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;

  box-shadow: 0 6px 16px rgba(0,0,0,.22);
  transform: rotate(10deg);
}

/* 内側の白線：スタンプ風 */
body.area-lp-active .area-main-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(255,255,255,0.75);
  border-radius: 9999px;
  pointer-events: none;
}

/* スマホではメイン画像上のバッジ非表示 */
@media screen and (max-width: 640px) {
  body.area-lp-active .area-main-badge {
    display: none;
  }

  body.area-lp-active .area-header-badge {
    font-size: 11px;
    padding: 4px 8px;
  }
}

/* スマホ時：ヘッダー右上の電話番号をアイコンだけにする */
@media screen and (max-width: 640px) {
  body.area-lp-active .l-header a[href^="tel:"] {
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
		padding-left:8px !important;
    font-size: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 5px !important;
  }

  body.area-lp-active .l-header a[href^="tel:"] svg {
    width: 22px !important;
    height: 22px !important;
    margin: 0 !important;
    display: block !important;
  }


.c-page-top .c-page-top__btn {
    background-color: var(--wp--preset--color--luminous-vivid-orange, #ff6900);
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    height: 40px;
    position: relative;
    width: 40px;
    margin-bottom: 60px;
}

}







/* エリアマップ */

.area-map-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  box-sizing: border-box;
}

.area-map-label {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #4a90e2;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.area-map-title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.4;
  color: #222;
}

.area-map-text {
  margin: 0 0 20px;
  line-height: 1.8;
  color: #444;
}

.area-map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 16px;
  display: block;
}
.area-map-text {
  white-space: pre-line;
  text-align:center;
}

@media screen and (max-width: 640px) {
.area-map-section {
    padding: 36px 12px;
}

.area-map-inner {
    padding: 20px 14px;
    border-radius: 16px;
}

.area-map-title {
    font-size: 22px;
  }

.area-map-embed iframe {
    height: 320px;
    border-radius: 12px;
  }
}

/* フロートCTAが下部コンテンツに被らないようにする */
body {
  padding-bottom: 120px;
}

/* フロートCTA全体の背景領域 */
.bottom-float-cta-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;

  width: 100%;
  padding: 12px 14px 18px;
/* background: rgba(255, 255, 255, .82); */
/* backdrop-filter: blur(6px); */

  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 -6px 22px rgba(0, 0, 0, .12);
}

/* ボタンを中央寄せで最大幅制限 */
.bottom-float-cta {
  display: flex;
  gap: 12px;

  width: min(1120px, 100%);
  margin: 0 auto;
}

/* ボタン共通 */
.bottom-float-cta__btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  min-height: 72px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  line-height: 1.15;
  border-radius: 14px;

  transition: transform .15s ease, opacity .15s ease, box-shadow .15s ease;
}

/* リンク状態でも文字色を白固定 */
.bottom-float-cta__btn,
.bottom-float-cta__btn:visited,
.bottom-float-cta__btn:hover,
.bottom-float-cta__btn:active,
.bottom-float-cta__btn:focus {
  color: #fff !important;
}

/* ホバー時 */
.bottom-float-cta__btn:hover {
  opacity: .94;
  transform: translateY(2px);
}

/* LINE */
.bottom-float-cta__line {
/*   flex: 0 0 33%; */
  flex: 0 0 20%;
  background: #32cd32;
  box-shadow: 0 7px 0 #556b2f;
}

/* Instagram */
.bottom-float-cta__insta {
/*   flex: 0 0 33%; */
  flex: 0 0 10%;
  background: #CB0065;
  box-shadow: 0 7px 0 #650019;
  border-radius: 40px;
}

/* メール */
.bottom-float-cta__mail {
  flex: 0 0 33%;
  background: #008000;
  box-shadow: 0 7px 0 #556b2f;
}

/* 電話 */
.bottom-float-cta__tel {
  flex: 1;
  background: #9acd32;
  box-shadow: 0 7px 0 #556b2f;
}

/* ホバー時の影 */
.bottom-float-cta__line:hover {
  box-shadow: 0 4px 0 #556b2f;
}

.bottom-float-cta__insta:hover {
  box-shadow: 0 4px 0 #650019;
}


.bottom-float-cta__mail:hover {
  box-shadow: 0 4px 0 #556b2f;
}

.bottom-float-cta__tel:hover {
  box-shadow: 0 4px 0 #556b2f;
}

/* メイン文字 */
.bottom-float-cta__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .42em;

  font-size: 24px;
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Font Awesomeアイコン */
.bottom-float-cta__main i {
  font-size: 1.05em;
  line-height: 1;
}

/* サブ文字 */
.bottom-float-cta__sub {
  display: block;
  margin-top: 5px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
}

/* 電話だけサブ文字が上にあるので調整 */
.bottom-float-cta__tel .bottom-float-cta__sub {
  margin-top: 0;
  margin-bottom: 5px;
}

/* スマホ */
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 86px;
  }

  .bottom-float-cta-wrap {
    padding: 7px 6px 12px;
    background: rgba(255, 255, 255, .86);
  }

  .bottom-float-cta {
    gap: 6px;
    width: 100%;
  }

  .bottom-float-cta__btn {
    min-height: 58px;
    border-radius: 10px;
  }

  .bottom-float-cta__line,
  .bottom-float-cta__mail {
/*    flex: 0 0 28%; */
    flex: 0 0 22%;
  }
  .bottom-float-cta__insta{
    flex: 0 0 12%;
    border-radius: 35px;
  }

  .bottom-float-cta__tel {
    flex: 1;
  }

  .bottom-float-cta__main {
    font-size: 15px;
    gap: .32em;
  }

  .bottom-float-cta__tel .bottom-float-cta__main {
    font-size: 17px;
    letter-spacing: 0;
  }

  .bottom-float-cta__sub {
    font-size: 10px;
    margin-top: 4px;
  }

  .bottom-float-cta__tel .bottom-float-cta__sub {
    margin-top: 0;
    margin-bottom: 4px;
  }
}

.p-paging{display:none;}

/*----------------------------------------*/
/* core-block-supports-inline-css
/*----------------------------------------*/
.wp-container-core-columns-is-layout-ae7499c7{flex-wrap:nowrap;}
.wp-container-core-columns-is-layout-8f761849{flex-wrap:nowrap;}

