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


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');



:root {
  --header-max-width: 1600px;
  --header-font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --header-font-weight: 800;
  --header-menu-gap: 4ch;
  --fz-hero: clamp(32px, 6vw, 68px);
  --fz-xl: clamp(28px, 4.8vw, 52px);
  --fz-lg: clamp(22px, 3.6vw, 34px);
  --fz-md: clamp(16px, 2.4vw, 24px);
  --fz-sm: clamp(13px, 1.8vw, 18px);
  --lp-section-title-fz: clamp(26px, 3.2vw, 44px);
  --lp-section-title-lh: 1.4;
}


.home .text-c74141 {
	color: #c74141;
}
.home .bg-c74141 {
	background: #c74141;
}

.home .lp-results-title,
.home .lp-checklist-title,
.home .lp-method-sub,
.home .lp-faq-title,
.home .lp-blog-title,
.home .lp-contact-form-title {
  font-size: var(--lp-section-title-fz);
  line-height: var(--lp-section-title-lh);
}

.home #main {
  margin: 0 auto;
  padding: 0;
}

body.home {
  background: #fffeea;
}

/* header menu li navi */




#header {
	background-color: #fddb18;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

#header-in {
    max-width: 1980px;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0 10px;
    box-sizing: border-box;
    position: relative;
}

/* 固定ヘッダー分の余白 */
body {
	padding-top: 97px;
}

html {
  scroll-behavior: smooth;
}

a#move-page-top {
    display: none;
}

#h-top {
	min-height: auto;
	position: relative;
}

#h-top .top-title-catchphrase.adpcustom {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 48px;
}

#site-title {
	margin: 0 !important;
	padding-bottom: 15px;
	flex: 0 0 auto;
	width: auto !important;
}
@media screen and (max-width: 1999px) {

	#site-title {
		padding-bottom: 8px;
	}

}
#site-title a {
	font-weight: 600;
	display: block;
}

#site-title .site-title-img {
	display: block;
	width: 315px;
}

@media screen and (max-width: 1999px) {

	#site-title .site-title-img {
		width: 280px;
	}
	
}

@media screen and (max-width: 1649px) {


	#site-title .site-title-img {
		width: 180px;
	}
	
}


#navi {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	align-self: flex-end;
}

#navi-in {
	width: auto;
}

#navi ul {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
	padding: 0 0 8px;
	list-style: none;
	border: none;
	background-color: transparent;
}

#navi ul li {
	margin-left: 50px;
	padding: 0;
}
#navi ul li#menu-item-45 {
	margin-left: 0;
}

#navi ul li#menu-item-61 a,
#navi ul li#menu-item-62 a {
	padding: 0;
}

#navi ul li#menu-item-61 {
	margin-left: 100px;
}
#navi ul li#menu-item-62 {
	margin-left: 15px;
}

@media screen and (max-width: 1999px) {

	#navi ul li {
		margin-left: 20px;
	}
	#navi ul li#menu-item-61 {
		margin-left: 30px;
	}
	#navi ul li#menu-item-62 {
		margin-left: 10px;
	}

}

@media screen and (max-width: 1649px) {

	#navi ul li {
		margin-left: 15px;
	}
	#navi ul li#menu-item-61 {
		margin-left: 25px;
	}
	#navi ul li#menu-item-62 {
		margin-left: 5px;
	}

}

@media screen and (max-width: 1110px) {

	#navi ul li,
	#navi ul li#menu-item-61,
	#navi ul li#menu-item-62 {
		margin-left: 0;
	}

}







#navi ul li a {
	display: block;
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: #333;
	text-decoration: none;
	white-space: nowrap;
	padding: 0 0 8px;
	position: relative;
	transition: color 0.3s ease, opacity 0.3s ease;
}

#navi ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2px;
	background-color: #333;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.3s ease;
}

#navi ul li a:hover {
	color: #333;
	opacity: 1;
	background: transparent;
	background-color: transparent;
}

#navi ul li a:hover::after {
	transform: scaleX(1);
}

/* 現在選択中メニュー */
#navi ul li.current-menu-item > a,
#navi ul li.current_page_item > a,
#navi ul li.current-menu-parent > a,
#navi ul li.current-page-ancestor > a,
#navi ul li.current_page_parent > a {
	color: #333;
}

/* 通常時は線を出さない */
#navi ul li.current-menu-item > a::after,
#navi ul li.current_page_item > a::after,
#navi ul li.current-menu-parent > a::after,
#navi ul li.current-page-ancestor > a::after,
#navi ul li.current_page_parent > a::after {
	transform: scaleX(0);
}

/* オンマウス時だけ線を出す */
#navi ul li.current-menu-item > a:hover::after,
#navi ul li.current_page_item > a:hover::after,
#navi ul li.current-menu-parent > a:hover::after,
#navi ul li.current-page-ancestor > a:hover::after,
#navi ul li.current_page_parent > a:hover::after {
	transform: scaleX(1);
}


#mobile-menu {
	display: none;
}

#kaizen,
#method,
#plan,
#qa,
#contact {
  scroll-margin-top: 90px;
}

@media screen and (max-width: 767px) {
  #kaizen,
  #method,
  #plan,
  #qa,
  #contact {
    scroll-margin-top: 78px;
  }
}



/* =========================
   1110px以下
========================= */
@media screen and (max-width: 1110px) {

	body {
		padding-top: 86px;
	}

	#header,
	#header-in,
	#h-top,
	#navi,
	#navi-in {
		max-width: 100%;
		box-sizing: border-box;
	}
	#header {
		max-height: 100vh;
		overflow-y: auto;
	}

	#header-in {
		padding: 14px 16px;
		overflow: visible;
	}

	#h-top .top-title-catchphrase.adpcustom {
		display: block;
	}

	#site-title {
		margin: 0 !important;
		padding-right: 64px;
		padding-bottom: 0;
	}
	#site-title a {
		padding-top: 10px;
	}

	#site-title .site-title-img {
		width: 200px !important;
		max-width: 100% !important;
		height: auto !important;
	}

	#mobile-menu {
		display: block;
		position: absolute;
		top: 14px;
		right: 16px;
		transform: none;
		z-index: 1002;
	}

	#mobile-menu a {
		display: block;
		padding: 0;
		color: #333;
		text-decoration: none;
		line-height: 1;
		margin-top: 0;
	}

	#mobile-menu .fa {
		font-size: 34px !important;
		line-height: 1;
	}

	#navi {
		display: block;
		width: 100%;
		padding-top: 10px;
		flex: none;
		align-self: auto;
		left: 0;
		right: 0;
	}

	#navi-in {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	#navi ul {
		display: none;
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding: 0;
		background-color: #fddb18;
		border-top: 1px solid rgba(0, 0, 0, 0.15);
		box-sizing: border-box;
		overflow-x: hidden;
	}

	#navi ul li {
		display: block;
		width: 100%;
		margin: 0;
		padding: 3%;
		border-bottom: 1px solid rgba(0, 0, 0, 0.12);
		box-sizing: border-box;
	}

	#navi ul li:last-child {
		border-bottom: none;
	}

	#navi ul li a {
		display: block;
		width: 100%;
		box-sizing: border-box;
		padding: 14px 16px;
		font-size: 16px;
		line-height: 1.4;
		letter-spacing: 0.05em;
		white-space: normal;
		word-break: break-word;
		position: relative;
	}

	#navi ul li a::after {
		display: none;
	}

	/* 開いた時だけ前面パネル化 */
	#navi ul.is-open {
		display: block !important;
		position: fixed;
		top: 86px;
		left: 0;
		width: 100%;
		height: calc(100vh - 86px);
		margin: 0;
		padding: 0;
		z-index: 999;
		overflow-y: auto;
		background-color: #fddb18;
	}
}


/* =========================
   767px以下
========================= */
@media screen and (max-width: 767px) {

	body {
		padding-top: 74px;
	}

	#header-in {
		padding: 12px 12px;
	}

	#site-title {
		padding-right: 52px;
		padding-bottom: 0;
		padding-top: 7px;
	}
	#site-title a {
		padding: 0;
	}

	#site-title .site-title-img {
		width: 200px !important;
	}

	#mobile-menu {
		top: 14px;
		right: 12px;
	}

	#mobile-menu .fa {
		font-size: 32px !important;
	}

	#navi ul li a {
		padding: 12px 14px;
		font-size: 15px;
	}

	#navi ul li a::after {
		display: none;
	}

	/* 767px以下ではヘッダー高さに合わせる */
	#navi ul.is-open {
        top: 65px;
        height: calc(100vh - 60px);
	}
}


/* =========================
   PCヘッダー お問い合わせボタン
========================= */



#navi ul li#menu-item-61 > a,
#navi ul li#menu-item-62 > a {
  display: block;
  width: 100%;
	max-width: 356px;
  aspect-ratio: 356 / 79;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
	box-sizing: border-box;
	transition: 0.1s;
}
#navi ul li#menu-item-61 > a {
	background: url("../images/btn-mail.png") no-repeat center / 100% auto;
}
#navi ul li#menu-item-61 > a:hover {
	background: url("../images/btn-mail-on.png") no-repeat center / 100% auto;
}
#navi ul li#menu-item-62 > a {
	background: url("../images/btn-tel.png") no-repeat center / 100% auto;
}
#navi ul li#menu-item-62 > a:hover {
	background: url("../images/btn-tel-on.png") no-repeat center / 100% auto;
}


@media screen and (min-width: 1111px) {

	#navi ul {
		align-items: center;
	}

	/* 通常メニューだけ可変 */
	#navi ul li:not(#menu-item-61):not(#menu-item-62) > a {
		font-size: 14px;
	}

	#navi ul li#menu-item-45 > a,
	#navi ul li#menu-item-46 > a,
	#navi ul li#menu-item-47 > a,
	#navi ul li#menu-item-48 > a,
	#navi ul li#menu-item-60 > a,
	#navi ul li#menu-item-266 > a {
		top: 14px;
	}

	/* 既存テーマの下線を消す */
	#navi ul li#menu-item-61 > a::after,
	#navi ul li#menu-item-62 > a::after {
		display: none;
	}

	#navi ul li#menu-item-61,
	#navi ul li#menu-item-62 {
	  width: 180px;
	}

}
@media screen and (min-width: 1300px) {

	/* 通常メニューだけ可変 */
	#navi ul li:not(#menu-item-61):not(#menu-item-62) > a {
		font-size: 16px;
	}
	
	#navi ul li#menu-item-45 > a,
	#navi ul li#menu-item-46 > a,
	#navi ul li#menu-item-47 > a,
	#navi ul li#menu-item-48 > a,
	#navi ul li#menu-item-60 > a,
	#navi ul li#menu-item-266 > a {
		top: 16px;
	}

	#navi ul li#menu-item-61,
	#navi ul li#menu-item-62 {
	  width: 230px;
	}

}

@media screen and (min-width: 1650px) {

	#navi ul li:not(#menu-item-61):not(#menu-item-62) > a {
		font-size: 18px;
	}
	
	#navi ul li#menu-item-45 > a,
	#navi ul li#menu-item-46 > a,
	#navi ul li#menu-item-47 > a,
	#navi ul li#menu-item-48 > a,
	#navi ul li#menu-item-60 > a,
	#navi ul li#menu-item-266 > a {
		top: 27px;
	}
	
	#navi ul li#menu-item-61,
	#navi ul li#menu-item-62 {
	  width: 300px;
	}

}



@media screen and (min-width: 2000px) {
	#navi ul li#menu-item-61,
	#navi ul li#menu-item-62 {
	  width: 356px;
	}
}



#footer a:hover{
  color:#ccc;
}


/* home body */
.home #body-in {
  width: auto;
}

@media screen and (max-width:1110px){

  .home div#footer-in{
    width: auto;
  }

}


.home #body {
	margin-top: 0;
}

.home #main {
	border: none;
	padding: 0;
}

/* sp時のみ改行 */
.sp-only-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-only-br {
    display: block;
  }
}

/* pc時のみ改行 */
.pc-only-br {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc-only-br {
    display: none;
  }
}

/* =========================
  基本
========================= */
.home .fv {
  position: relative;
	padding: 70px 0;
	background-color: #fffeea;
}

.home .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.home .fv-inner {
  position: relative;
  height: 300px; /* 任意 */
  display: flex;
}

/* =========================
  赤（右65%）
========================= */
.home .fv-red {
  width: 65%;
  margin-left: auto;
  height: 100%;
  background: red;
  position: relative;
  z-index: 2;
}

/* =========================
  青（中央より15%左 → 画面左端）
========================= */
.home .fv-blue {
  position: absolute;
  top: 0;
  bottom: 0;

  /* 中央(50%)から15%左 → 35% */
  left: 35%;

  /* ←ここが重要：さらに左に押し出す */
  transform: translateX(-100%);

  /* 幅は「中央まで」持たせる */
  width: 50vw;

  background: url("https://www.ad-printing.co.jp/lp-solution/wp-content/themes/simplicity2-child/images/fv.jpg") no-repeat 100% 33% / auto 144%;
  z-index: 1;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
}




@media (max-width: 767px) {

  .home .fv-inner {
    display: block;
    height: auto;
  }

  .home .fv-blue {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    height: 200px; /* 任意で調整 */
  }

  .home .fv-red {
    width: 100%;
    margin-left: 0;
    height: 200px; /* 任意で調整 */
  }

}


/* TOP home page */

.home .lp-contents-copy,
.home .lp-contents-copy-sub,
.home .lp-contents-copy-main,
.home .lp-contents-copy-title,
.home .lp-stat-label,
.home .lp-stat-value {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.home .lp-contents {
  background-color: #fffeea;
  padding: 3% 0 3%;
  overflow: hidden;

  /* 実績3丸の文字サイズ管理 */
  --lp-stat-size: 200px;
  --lp-stat-label-fz: clamp(13px, 1.1vw, 18px);
  --lp-stat-value-fz: clamp(16px, 1.4vw, 24px);
  --lp-stat-line-fz: clamp(34px, 5vw, 54px);
  --lp-stat-sub-fz: clamp(17px, 3.2vw, 24px);
}

.home .lp-contents-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.home .lp-contents-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
	align-items: stretch;
}

/* 左カラム */
.home .lp-contents-image {
  width: 40%;
	padding-right: 30px;
}
.home .lp-contents-image .wrap-image {
	background: url("../images/fv.jpg") no-repeat right center / cover;
	height: 100%;
	margin-left: calc(500px - 50vw);
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
}

/* 画像だけ左画面側へ広く見せる */
.home .lp-contents-image img {
  display: block;
  width: 46vw;
  max-width: none;
  height: 460px;
  margin-left: calc(50% - 36vw);
  object-fit: cover;
  border-top-right-radius: 220px;
  border-bottom-right-radius: 220px;
}

/* 右カラム */
.home .lp-contents-copy {
  width: 60%;
  flex: 0 0 60%;
  margin-left: 0;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.home .lp-contents-copy-sub {
  margin: 0 0 25px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
  text-align: center;
  letter-spacing: 0.08em;
}

.home .lp-contents-copy-sub::before,
.home .lp-contents-copy-sub::after {
  content: "＼";
  display: inline-block;
  font-size: 0.95em;
  margin: 0 14px;
  transform: translateY(-1px);
}

.home .lp-contents-copy-main {
  margin: 0 0 10px;
  font-size: 4.3em;
  font-weight: 800;
  line-height: 1.05;
  color: #c74141;
  text-align: center;
  letter-spacing: 0.02em;
}

.home .lp-contents-copy-main .lp-kara {
  font-size: 0.58em;
  display: inline-block;
  transform: translateY(-0.08em);
}

.home .lp-dot-chars {
  display: inline-flex;
  gap: 0.04em;
  font-size: 1em;
}

.home .lp-dot-char {
  position: relative;
  display: inline-block;
  font-size: 1em;
}

.home .lp-dot-char::before {
  content: "●";
  position: absolute;
  top: -1em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.25em;
  line-height: 1;
  color: currentColor;
}

.home .lp-exclamation {
  display: inline-block;
  margin-left: -0.3em;
}

.home .lp-contents-copy-title {
  margin: 0;
  padding: 13px 0 12px;
  border-top: 2px dashed #666;
  border-bottom: 2px dashed #666;
  font-size: 3.15em;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0.01em;
}

.home .lp-contents-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
	padding: 0 4%;
}

.home .lp-stat {
  width: 100%;
  border: 3px solid #222;
  border-radius: 50%;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  box-sizing: border-box;
  text-align: center;
  aspect-ratio: 1 / 1;
	max-width: 173px;
}

.home .lp-stat-label {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.home .lp-stat-value {
  margin: 0;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.25;
  color: #222;
  letter-spacing: 0;
}

.home .lp-stat-line {
  display: inline-block;
  position: relative;
  font-size: 50px;
  line-height: 0.95;
  z-index: 1;
}

.home .lp-stat-line::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: -0.1em;
  height: 0.38em;
  background: #f6d61b;
  z-index: -1;
}

.home .lp-stat-sub {
  display: inline-block;
  font-size: var(--lp-stat-sub-fz);
  line-height: 1;
  vertical-align: baseline;
  padding-left: 5px;
}



/* スライダー */
.home .lp-contents-slider {
  margin-top: 55px;
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.home .lp-swiper {
  width: 100%;
  overflow: hidden;
}

.home .lp-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.home .lp-swiper .swiper-slide {
  width: 137px;
  flex-shrink: 0;
}

.home .lp-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* =========================
  1000px以下
========================= */
@media screen and (max-width: 1000px) {
	
	

  .home .lp-contents {
    padding: 32px 20px 52px;

    --lp-stat-size: 132px;
    --lp-stat-label-fz: 14px;
    --lp-stat-value-fz: 18px;
    --lp-stat-line-fz: 44px;
    --lp-stat-sub-fz: 16px;
  }

	
  .home .lp-contents-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

	.home .lp-contents-image {
	  width: auto;
		padding-right: 0;
	}

  .home .lp-contents-image .wrap-image {
	  height: 300px;
	  border-radius: 10px;
	  margin-left: 0;
  }


  .home .lp-contents-copy {
    width: 100%;
	  max-width: 600px;
	  margin-right: auto;
	  margin-left: auto;
  }

  .home .lp-contents-copy-sub {
    font-size: 23px;
  }

  .home .lp-contents-copy-main {
    font-size: 60px;
  }

  .home .lp-contents-copy-title {
    font-size: 34px;
  }
}

/* =========================
  767px以下
========================= */
@media screen and (max-width: 767px) {

  .home .lp-contents {
    padding: 24px 16px 42px;
    --lp-stat-size: calc((100% - 16px) / 3);
    --lp-stat-label-fz: 11px;
    --lp-stat-value-fz: 14px;
    --lp-stat-line-fz: 22px;
    --lp-stat-sub-fz: 14px;
  }

  .home .lp-contents-inner {
    max-width: 100%;
  }



  .home .lp-contents-image,
  .home .lp-contents-copy {
    width: 100%;
    flex: none;
  }

  .home .lp-contents-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-left: 0;
    object-fit: contain;
    border-top-right-radius: 120px;
    border-bottom-right-radius: 120px;
  }

  .home .lp-contents-copy {
    padding-top: 0;
  }

  .home .lp-contents-copy-sub {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .home .lp-contents-copy-sub::before,
  .home .lp-contents-copy-sub::after {
    margin: 0 8px;
  }

  .home .lp-contents-copy-main {
    font-size: 40px;
    margin-bottom: 11px;
  }

  .home .lp-contents-copy-title {
    font-size: 27px;
    padding: 10px 0;
  }

  .home .lp-contents-stats {
    justify-content: space-between;
    gap: 8px;
    margin-top: 18px;
  }

  .home .lp-stat {
    padding: 8px 6px;
    border-width: 2px;
  }

  .home .lp-stat-label {
    font-size: 12px;
  }
	

  .home .lp-stat-value {
    font-size: 15px;
  }

	.home .lp-stat-line {
	  font-size: 30px;
	}

  .home .lp-stat-line::after {
    bottom: -2px;
  }

  .home .lp-contents-slider {
    margin-top: 22px;
  }

  .home .lp-swiper .swiper-slide {
    width: 110px;
  }

  .home .lp-stat-sub {
    padding-left: 2px;
  }
}

/* 改善実績  */

.home .lp-results,
.home .lp-results * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-results {
  background: #fff;
  padding: 88px 20px 96px;
}

.home .lp-results-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

/* 文字サイズの設計をここで一元管理 */
.home .lp-results {
  --lp-results-sub-fz: clamp(20px, 2vw, 32px);
  --lp-results-title-fz: clamp(30px, 4vw, 52px);

  --lp-result-case-fz: clamp(12px, 1.4vw, 18px);
  --lp-result-type-fz: clamp(16px, 2.1vw, 24px);
  --lp-result-label-fz: clamp(18px, 2.2vw, 27px);
  --lp-result-copy-fz: clamp(18px, 2.1vw, 25px);

  --lp-result-number-fz: clamp(42px, 6.2vw, 72px);
  --lp-result-subrate: 0.42;
  --lp-result-note-fz: clamp(18px, 2.3vw, 34px);
  --lp-result-note2-fz: clamp(18px, 2vw, 30px);
  --lp-result-side-fz: clamp(16px, 1.9vw, 24px);

  --lp-results-company-lead-fz: clamp(22px, 3vw, 34px);
  --lp-results-company-number-fz: clamp(56px, 9vw, 118px);
  --lp-results-tags-fz: clamp(13px, 1.6vw, 18px);
  --lp-results-company-text-fz: clamp(15px, 1.8vw, 22px);
}

.home .lp-results-sub {
  margin: 0 0 10px;
  text-align: center;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.2;
}

.home .lp-results-title {
  margin: 0;
  text-align: center;
  font-size: 39px;
  font-weight: 800;
}

.home .lp-results-cases {
	padding: 0 85px;
  margin-top: 72px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.home .lp-result-card {
  width: calc((100% - 40px) / 3);
  border: 3px solid #333;
  border-radius: 28px;
  background: #fff;
  overflow: hidden;
}

.home .lp-result-card-head {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

.home .lp-result-card-case {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  font-weight: 700;
}

.home .lp-result-card-type {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.home .lp-result-card-body {
  min-height: 0;
  padding: 10px 0 20px;
  box-sizing: border-box;
  background: #fff;
	display: flex;
	justify-content: center;
}

.home .lp-result-card-label {
  margin: 0;
  font-size: var(--lp-result-label-fz);
  font-weight: 600;
  line-height: 1;
  color: #c74141;
  letter-spacing: 0.09em;
}

.home .lp-result-card-copy {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  color: #c74141;
}

.home .lp-result-card-flex {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
}

.home .lp-result-card-value {
  margin: 0;
  line-height: 1;
  color: #c74141;
  font-weight: 800;
}

.home .lp-result-line {
  display: inline-block;
  position: relative;
  font-size: 66px;
  line-height: 0.9;
  color: #c74141;
  z-index: 1;
  letter-spacing: -0.02em;
}

.home .lp-result-line::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  bottom: -0.05em;
  height: 0.18em;
  background: #f6d61b;
  z-index: -1;
}

.home .lp-result-sub {
  display: inline-block;
  font-size: 40px;
  line-height: 1;
  vertical-align: baseline;
}

.home .lp-result-note {
  display: inline-block;
  margin-left: 4px;
  font-size: 50px;
  line-height: 1;
  color: #c74141;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: baseline;
}

.home .lp-result-note2 {
  display: inline-block;
  margin-left: 4px;
  font-size: 24px;
  line-height: 1;
  color: #c74141;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: baseline;
}

.home .lp-result-card-side {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.18;
  color: #c74141;
  text-align: left;
  letter-spacing: 0.01em;
}

.home .lp-results-company {
  margin-top: 30px;
  text-align: center;
}

.home .lp-results-company-lead {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

.home .lp-results-company-number {
  display: inline-block;
  margin-left: 14px;
  font-size: 100px;
  font-weight: 800;
  line-height: 1;
  color: #c74141;
}

.home .lp-results-company-unit {
  display: inline-block;
  font-size: 0.6em;
  line-height: 1;
}

.home .lp-results-tags {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.home .lp-results-tags span {
  display: inline-block;
  padding: 8px 10px;
  background: #e5e5e5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
}

.home .lp-results-company-text {
  margin: 28px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

/* =========================
  1000px以下
========================= */
@media screen and (max-width: 1000px) {
  .home .lp-results {
    padding: 72px 20px 80px;
  }

  .home .lp-results-cases {
    margin-top: 56px;
    display: block;
  }

  .home .lp-result-card {
    width: 100%;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-result-card + .lp-result-card {
    margin-top: 20px;
  }

  .home .lp-result-card-body {
    min-height: 0;
    padding: 18px 14px;
    text-align: center;
  }

  .home .lp-result-card-label,
  .home .lp-result-card-copy,
  .home .lp-result-card-value {
    text-align: center;
  }

  .home .lp-result-card-flex {
    justify-content: center;
    gap: 12px;
  }

  .home .lp-result-card-side {
    text-align: left;
  }

  .home .lp-results-company {
    margin-top: 56px;
  }
}

/* =========================
  767px以下
========================= */
@media screen and (max-width: 767px) {
  .home .lp-results {
    padding: 56px 16px 60px;
  }

  .home .lp-results-sub {
    margin-bottom: 8px;
  }

  .home .lp-results-title {
    font-size: 35px;
  }

  .home .lp-results-cases {
	  padding: 0;
    margin-top: 32px;
  }

  .home .lp-result-card {
    width: 100%;
    max-width: none;
    border-width: 2px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-result-card + .lp-result-card {
    margin-top: 16px;
  }

  .home .lp-result-card-head {
    padding: 12px 10px 11px;
  }

  .home .lp-result-card-body {
    padding: 16px 12px;
    text-align: center;
  }

  .home .lp-result-card-label,
  .home .lp-result-card-copy,
  .home .lp-result-card-value {
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-result-card-copy {
    margin-bottom: 0;
  }

  .home .lp-result-card-flex {
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
  }

  .home .lp-result-card-side {
    line-height: 1.35;
    text-align: left;
  }

  .home .lp-results-company {
    margin-top: 40px;
  }

  .home .lp-results-company-lead {
    line-height: 1.5;
  }

  .home .lp-results-company-number {
    margin-left: 3px;
  }

  .home .lp-results-company-unit {
    font-size: 0.5em;
  }

  .home .lp-results-tags {
    margin-top: 18px;
    gap: 8px;
  }

  .home .lp-results-tags span {
    padding: 8px 10px;
  }

  .home .lp-results-company-text {
    margin-top: 18px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 767px) {
  .home .lp-results {
        --lp-results-sub-fz: 19px;
        --lp-results-title-fz: 33px;
        --lp-result-case-fz: 14px;
        --lp-result-type-fz: 20px;
        --lp-result-label-fz: 23px;
        --lp-result-copy-fz: 23px;
        --lp-result-number-fz: 65px;
        --lp-result-subrate: 0.65;
        --lp-result-note-fz: 55px;
        --lp-result-note2-fz: 25px;
        --lp-result-side-fz: 19px;
    }
}


/* こんなことはありませんか？ チェックリスト */
.home .lp-checklist {
  background: #f8dc08;
  padding: 88px 20px 94px;
}

.home .lp-checklist-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.home .lp-checklist-box {
  max-width: 830px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  padding: 60px 95px 54px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.home .lp-checklist-title {
  margin: 0 0 42px;
  text-align: center;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-checklist-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home .lp-checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 10px 16px;
  border-bottom: 2px dashed #666;
}

.home .lp-check-icon {
  position: relative;
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin-top: 6px;
  box-sizing: border-box;
  border: 2px solid #2f3550;
  background: #fff;
}

/* 赤いチェック */
.home .lp-check-icon::before,
.home .lp-check-icon::after {
  content: "";
  position: absolute;
  background: #c74141;
  border-radius: 2px;
  transform-origin: left top;
}

/* 左下から中央へ上がる短い線 */
.home .lp-check-icon::before {
  width: 4px;
  height: 10px;
  left: 3px;
  top: 11px;
  transform: rotate(-45deg);
}

/* 中央から右上へ伸びる長い線 */
.home .lp-check-icon::after {
  width: 26px;
  height: 4px;
  left: 8px;
  top: 16px;
  transform: rotate(-45deg);
}

.home .lp-check-text {
  display: inline-block;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.6;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-check-accent {
  color: #c74141;
  font-weight: 700;
}

.home .lp-checklist-note {
  margin: 48px 0 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/* =========================
  1000px以下
========================= */
@media screen and (max-width: 1000px) {

  .home .lp-checklist {
    padding: 72px 16px 78px;
  }

  .home .lp-checklist-box {
    max-width: 760px;
    padding: 44px 40px 42px;
  }

  .home .lp-checklist-title {
    margin-bottom: 32px;
  }

  .home .lp-checklist-list li {
    gap: 12px;
    padding: 16px 6px 14px;
  }

  .home .lp-check-text {
    font-size: 22px;
    line-height: 1.6;
  }

  .home .lp-checklist-note {
    margin-top: 36px;
    font-size: 22px;
  }
}

/* =========================
  767px以下
========================= */
@media screen and (max-width: 767px) {

  .home .lp-checklist {
    padding: 56px 12px 60px;
  }

  .home .lp-checklist-box {
    max-width: none;
    padding: 32px 18px 30px;
    border-radius: 14px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.08);
  }

  .home .lp-checklist-title {
    margin-bottom: 20px;
  }

  .home .lp-checklist-list li {
    gap: 10px;
    padding: 14px 2px;
  }

  .home .lp-check-icon {
    width: 20px;
    height: 20px;
    margin-top: 6px;
  }

  .home .lp-check-icon::before {
    width: 3px;
    height: 11px;
    left: 1px;
    top: 7px;
  }

  .home .lp-check-icon::after {
    width: 20px;
    height: 3px;
    left: 7px;
    top: 13px;
  }

  .home .lp-check-text {
    font-size: 18px;
  }

  .home .lp-checklist-note {
    margin-top: 28px;
    font-size: 17px;
    line-height: 1.5;
  }
}


/* =========================
  売れるLP 3つのメソッド
========================= */

.home .lp-method,
.home .lp-method * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-method {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 96px 0 120px;
}

.home .lp-method-bg-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 265px;
  background: #fff;
  z-index: 0;
}

.home .lp-method-bg-bottom {
  position: absolute;
  top: 265px;
  left: 0;
  width: 100%;
  height: calc(100% - 265px);
  z-index: 0;
}

.home .lp-method-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.home .lp-method::after {
  content: "";
  position: absolute;
  top: 310px;
  right: 0;
  bottom: 120px;
  width: 90%;
  background: #f4efbf;
  z-index: 0;
  border-radius: 100px 0 0 100px;
}

@media screen and (max-width: 1199px) {
  .home .lp-method::after {
    display: none;
  }
}

.home .lp-method-bg-bottom {
  display: none;
}

.home .lp-method-sub {
  margin: 0 0 30px 0;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: var(--lp-section-title-lh);
  color: #222;
}

.home .lp-method-bubble {
  width: 240px;
  height: 240px;
  margin: 0 auto -105px;
  background: #c74141;
  border-radius: 50%;
  color: #fff;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.home .lp-method-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 28px solid #c74141;
}

.home .lp-method-panel {
  max-width: 1100px;
  margin: 0 auto;
  background: #f4efbf;
  border-radius: 100px 0 0 100px;
  padding: 130px 60px 30px;
}

.home .lp-method-lead {
  margin: 0;
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.55;
}

.home .lp-method-title {
  margin: 100px 0 35px;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.home .lp-method-title span.text-l {
  color: #c74141;
  font-size: 1.8em;
  line-height: 1.1;
}

.home .lp-method-card {
  background: #fddb18;
	margin-right: 120px;
  margin-left: calc(50% - 50vw);
  margin-bottom: 80px;
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
	display: flex;
	justify-content: flex-end;
	padding: 20px 0 50px;
}
.home .lp-method-card.lp-method-card--reverse {
	margin-left: 120px;
  margin-right: calc(50% - 50vw);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
	justify-content: flex-start;
}




.home .lp-method-card .content {
	max-width: 1050px;
  display: flex;
  justify-content: space-between;
  align-items: center;
	margin-right: -120px;
}
.home .lp-method-card.lp-method-card--reverse .content {
	flex-direction: row-reverse;
	margin-right: 0;
	margin-left: -120px;
}






@media screen and (max-width: 1199px) {

	.home .lp-method-card .content {
		margin-right: 0;
	}
	.home .lp-method-card.lp-method-card--reverse .content {
		margin-left: 0;
	}
	
}


@media screen and (max-width: 1000px) {

	.home .lp-method-card .content {
		display: block;
	}
	
}



.home .lp-method-card-text {
  width: 535px;
}

.home .lp-method-no {
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1;
	display: inline-block;
	border-bottom: 6px solid #fffeea;

}

.home .lp-method-no span {
  font-size: 30px;
	margin-right: 10px;
}

.home .lp-method-no {
  font-size: 80px;
	padding-bottom: 4px;
}

.home .lp-method-catch {
  margin: 0 0 5px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}
.home .lp-method-catch span {
  font-size: 32px;
  font-weight: 700;
  color: #c74141;
}

.home .lp-method-heading {
  margin: 0 0 26px;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.35;
  color: #c74141;
}

.home .lp-method-desc {
  margin: 0;
  font-size: 1.15em;
  font-weight: 400;
  line-height: 2;
  color: #222;
}

.home .lp-method-card-image {
  width: 445px;
  text-align: center;
  position: relative;
  right: -6%;
  margin-top: 4%;
}
.home .lp-method-card--reverse .lp-method-card-image {
  right: 0;
  left: -6%;
}

@media screen and (max-width: 1199px) {

	.home .lp-method-card-image {
	  right: 0;
	}
	.home .lp-method-card--reverse .lp-method-card-image {
	  left: 0;
	}

}



.home .lp-method-card-image img {
  display: block;
  width: 100%;
}





/* =========================
  method support ブロック
========================= */
.home .lp-support-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
	align-items: stretch;
}

.home .lp-support-text {
  width: 50%;
  position: relative;
  z-index: 2;
	padding-right: 30px;
	box-sizing: border-box;
}

.home .lp-support-image {
  width: 50%;
}

/* 右画像を画面右端にぴったり付ける */
.home .lp-support-image .wrap-image {
	background: url("../images/method-support.png") no-repeat left 40% / cover;
	height: 420px;
	margin-right: calc(490px - 50vw);
	border-top-left-radius: 22px;
	border-bottom-left-radius: 22px;
}


.home .lp-support-sub {
  margin: 0 0 26px;
  text-align: center;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  color: #222;
}

.home .lp-support-sub::before,
.home .lp-support-sub::after {
  content: "＼";
  display: inline-block;
  font-size: 0.95em;
  margin: 0 14px;
  transform: translateY(-1px);
}

.home .lp-support-lead {
  margin: 0 0 5px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
}

.home .lp-support-heading {
  margin: 0 0 22px;
  font-size: 39px;
  font-weight: 700;
  line-height: 1.3;
  color: #c74141;
}

.home .lp-support-desc {
  margin: 0;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 2;
  color: #222;
}

.home .lp-contents-copy-sub::before,
.home .lp-support-sub::before {
  content: "＼";
  display: inline-block;
  font-size: 0.95em;
  margin: 0 14px;
  transform: translateY(-1px);
}

.home .lp-contents-copy-sub::after,
.home .lp-support-sub::after {
  content: "／";
  display: inline-block;
  font-size: 0.95em;
  margin: 0 14px;
  transform: translateY(-1px);
}

/* =========================
  method last 装飾メッセージ
========================= */
.home .lp-message,
.home .lp-message * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-message {
  background: #f4efbf;
  padding: 145px 0 190px;
}

.home .lp-message-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home .lp-message-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 15px 29px 15px;
  border: 3px solid #333;
  background: #fff;
  color: #c74141;
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.home .lp-message-title {
  margin: 0;
  font-size: 57px;
  font-weight: 700;
  line-height: 1.2;
}



/* =========================
  売れるLP 3つのメソッド
  1199px以下
========================= */
@media screen and (max-width: 1199px) {

	.home .lp-support-image .wrap-image {
		background: url("../images/method-support.png") no-repeat 30% 40% / cover;
		margin-right: calc(50% - 50vw);
	}

}



/* =========================
  売れるLP 3つのメソッド
  1000px以下
========================= */
@media screen and (max-width: 1000px) {

  .home .lp-method {
    padding: 72px 20px 90px;
  }

  .home .lp-method-bg-top {
    height: 210px;
  }

  .home .lp-method-bg-bottom {
    top: 210px;
    height: calc(100% - 210px);
  }

  .home .lp-method-sub {
    text-align: center;
  }

  .home .lp-method-bubble {
    width: 160px;
    height: 160px;
    margin: 24px auto -70px;
    font-size: 20px;
    text-align: center;
  }

  .home .lp-method-panel {
    border-radius: 70px 0 0 70px;
    padding: 95px 36px 24px;
  }

  .home .lp-method-lead {
    font-size: 30px;
    line-height: 1.5;
    text-align: center;
  }

  .home .lp-method-title {
    margin: 24px 0 32px;
    font-size: 42px;
    text-align: center;
  }

  .home .lp-method-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    padding: 44px 28px;
    border-radius: 40px;
    gap: 22px;
  }

  .home .lp-method-card-text {
    width: 100%;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    order: 2;
  }

  .home .lp-method-card-image {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    right: 0;
    left: 0;
    margin-top: 0;
    order: 1;
    text-align: center;
  }

  .home .lp-method-card-image img {
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-method-no {
    margin-bottom: 18px;
    font-size: 52px;
    justify-content: center;
    text-align: center;
  }

  .home .lp-method-catch {
    font-size: 22px;
    text-align: center;
  }

  .home .lp-method-heading {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-method-desc {
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .home .lp-support-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 56px;
    align-items: center;
  }

  .home .lp-support-text,
  .home .lp-support-image {
    width: 100%;
    max-width: 760px;
    flex: none;
    margin-left: auto;
    margin-right: auto;
  }
	.home .lp-support-image .wrap-image {
		background: url("../images/method-support.png") no-repeat 0 40% / cover;
		margin-right: 0;
		border-radius: 22px;
	}

  .home .lp-support-image img {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-left: 0;
    border-radius: 22px;
  }

  .home .lp-support-sub {
    margin-bottom: 18px;
    font-size: 28px;
    text-align: center;
  }

  .home .lp-support-lead {
    font-size: 22px;
    text-align: center;
  }

  .home .lp-support-heading {
    font-size: 30px;
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-support-desc {
    font-size: 18px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .home .lp-message {
    padding: 56px 20px 64px;
  }

  .home .lp-message-badge {
    margin-bottom: 22px;
    padding: 12px 22px;
    font-size: 28px;
    text-align: center;
  }

  .home .lp-message-title {
    font-size: 32px;
    text-align: center;
  }
}

/* =========================
  売れるLP 3つのメソッド
  1199px以下
========================= */
@media screen and (max-width: 1199px) {

  .home .lp-method {
    padding: 56px 12px 64px;
  }

  .home .lp-method-bg-top {
    height: 150px;
  }

  .home .lp-method-bg-bottom {
    top: 150px;
    height: calc(100% - 150px);
  }

  .home .lp-method-sub {
    line-height: var(--lp-section-title-lh);
    text-align: center;
  }

  .home .lp-method-bubble {
    width: 120px;
    height: 120px;
    margin: 18px auto -48px;
    font-size: 1.1em;
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-method-bubble::after {
    bottom: -16px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 20px;
  }

  .home .lp-method-panel {
    border-radius: 28px;
    padding: 72px 16px 18px;
  }

  .home .lp-method-lead {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
  }

  .home .lp-method-title {
    margin: 18px 0 24px;
    font-size: 1.6em;
    line-height: 1.3;
    text-align: center;
  }

  .home .lp-method-card,
	.home .lp-method-card.lp-method-card--reverse {
    width: auto;
    padding: 28px 16px;
    border-radius: 24px;
    gap: 18px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 28px;
  }

  .home .lp-method-card-text {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
	  text-align: center;
  }

  .home .lp-method-card-image {
    width: 100%;
    max-width: 220px;
	  margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home .lp-method-card-image img {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-method-no {
    margin-bottom: 12px;
    gap: 9px;
    font-size: 3em;
    justify-content: center;
    text-align: center;
  }

  .home .lp-method-catch {
    margin-bottom: 4px;
    font-size: 1.3em;
    line-height: 1.5;
    text-align: center;
  }

  .home .lp-method-heading {
    margin-bottom: 16px;
    font-size: 1.6em;
    line-height: 1.45;
    text-align: center;
  }

  .home .lp-method-desc {
    font-size: 14px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .home .lp-support-block {
    gap: 18px;
    margin-top: 36px;
    align-items: center;
  }

  .home .lp-support-text,
  .home .lp-support-image {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-support-sub {
    margin-bottom: 14px;
    font-size: 25px;
    text-align: center;
  }

  .home .lp-support-sub::before,
  .home .lp-support-sub::after {
    margin: 0 8px;
  }

  .home .lp-support-lead {
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
  }

  .home .lp-support-heading {
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.45;
    text-align: center;
  }

  .home .lp-support-desc {
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
    text-justify: inter-ideograph;
  }

  .home .lp-message {
    padding: 40px 12px 48px;
  }

  .home .lp-message-badge {
    margin-bottom: 16px;
    padding: 10px 16px;
    font-size: 25px;
    line-height: 1.2;
    text-align: center;
  }

  .home .lp-message-title {
    font-size: 27px;
    line-height: 1.4;
    text-align: center;
  }
}

/* =========================
  売れるLP 3つのメソッド
  767px以下
========================= */
@media screen and (max-width: 767px) {

	.home .lp-support-image .wrap-image {
		height: 200px;
	}
	
}





/* =========================
  お問い合わせプラン
========================= */
.home .lp-contact-plan,
.home .lp-contact-plan * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-contact-plan {
  background: #c74141;
  padding: 78px 20px 102px;
}

.home .lp-contact-plan-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.home .lp-contact-plan-limit {
  margin: 0 0 8px;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
.home .lp-contact-plan-limit span {
  font-size: 80px;
}

.home .lp-contact-plan-main {
  margin: 0 0 34px;
  font-size: 125px;
  font-weight: 800;
  line-height: 1;
  color: #f8dc08;
  letter-spacing: 0.01em;
}
.home .lp-contact-plan-main span {
  font-size: 80px;
}

.home .lp-contact-plan-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 40px;
  background: #fff;
  border-radius: 20px;
  box-sizing: border-box;
}

.home .lp-contact-plan-flow {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 35px;
}

.home .lp-contact-plan-flow span {
  position: relative;
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px 12px 0;
  background: url("../images/bg3.png") no-repeat center center / 100% 100%;
  color: #222;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-sizing: border-box;
}

.home .lp-contact-plan-flow span:not(:last-child)::after {
  display: none;
}

.home .lp-contact-plan-title {
	max-width: 725px;
  margin: 0 auto -55px;
  font-size: 40px;
  font-weight: 700;
	text-align: left;
}

.home .wrap-lp-contact-plan-pricebox {
  display: flex;
  justify-content: center;
}
.home .lp-contact-plan-pricebox {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.home .lp-contact-plan-normal {
  text-align: left;
	padding-bottom: 5px;
}

.home .lp-contact-plan-normal-label {
  margin-bottom: -5px;
  font-size: 30px;
}

.home .lp-contact-plan-normal-price {
    margin: 0;
    position: relative;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.home .lp-contact-plan-normal-price::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 50%;
  height: 2px;
  background: #333;
  transform: rotate(-16deg);
}

.home .lp-contact-plan-normal-price span {
  font-size: 27px;
}

.home .lp-contact-plan-arrow {
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 16px solid #777;
	margin: 0 0 30px 10px;
}

.home .lp-contact-plan-special {
  position: relative;
  text-align: left;
}

.home .lp-contact-plan-special-price {
    margin: 0;
    font-size: 137px;
    font-weight: 800;
    line-height: 1;
    color: #c74141;
    letter-spacing: -0.03em;
}

.home .lp-contact-plan-special-tax {
    position: absolute;
    top: 40px;
    right: -2px;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: #c74141;
}

.home .lp-contact-plan-badge {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  margin-left: 10px;
  background: #f8dc08;
  border-radius: 50%;
  color: #c74141;
  font-size: 2.5em;
  font-weight: 800;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home .lp-contact-plan-badge::before {
  content: "";
  position: absolute;
  left: -6%;
  top: 70%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 30px solid #f8dc08;
	transform: rotate(-30deg);
}

.home .lp-contact-plan-present {
  margin-bottom: 40px;
  border: 6px solid #c74141;
  background: #fff;
}

.home .lp-contact-plan-present-head {
  margin: 0;
  background: #c74141;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  padding: 4px 14px 10px;
}

.home .lp-contact-plan-present-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px 12px;
}

.home .lp-contact-plan-present-text {
  width: 63%;
  text-align: left;
}

.home .lp-contact-plan-present-sub {
  margin: 0 0 8px;
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
}

.home .lp-contact-plan-present-main {
  margin: 0;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.25;
  color: #c74141;
}

.home .lp-contact-plan-present-image {
  width: 37%;
}

.home .lp-contact-plan-present-image img {
  display: block;
  width: 100%;
  height: auto;
}

.home .lp-contact-plan-button-wrap {
  margin-bottom: 45px;
}

.home .lp-contact-plan-button {
  display: block;
  max-width: 814px;
  padding: 35px 5px;
	margin: 0 auto;
  border-radius: 9999px;
  background: #2b971f;
  color: #fff;
  font-size: 2.15em;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 7px 0 #17690f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.home .lp-contact-plan-button:hover {
  transform: translateY(3px);
  box-shadow: 0 4px 0 #17690f;
}

.home .lp-contact-plan-note {
  max-width: 814px;
  margin: 0 auto;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
}

.home .lp-contact-plan-normal-unit {
  font-size: 69px;
}

.home .lp-contact-plan-badge {
  position: relative;
  flex: 0 0 auto;
  width: 188px;
  height: 188px;
  margin-left: 10px;
  background: #f8dc08;
  border-radius: 50%;
  color: #c74141;
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home .lp-contact-plan-badge-top {
  display: block;
  line-height: 1;
}

.home .lp-contact-plan-badge-num {
    font-size: 80px;
}

.home .lp-contact-plan-badge-bottom {
  display: block;
  line-height: 1;
}


/* =========================
  毎月10社限定
  1000px以下
========================= */
@media screen and (max-width: 1000px) {

  .home .lp-contact-plan {
    padding: 64px 20px 78px;
  }

  .home .lp-contact-plan-limit {
    font-size: 50px;
	  margin: 0;
  }
	.home .lp-contact-plan-limit span {
	  font-size: 70px;
	}

  .home .lp-contact-plan-main {
    margin-bottom: 28px;
    font-size: 100px;
  }
  .home .lp-contact-plan-main span {
    font-size: 65px;
  }

  .home .lp-contact-plan-card {
    max-width: 760px;
    padding: 48px 32px 48px;
  }


  .home .lp-contact-plan-flow span {
    font-size: 18px;
    padding: 12px 3% 12px 0;
  }


  .home .lp-contact-plan-flow span:not(:last-child)::after {
    display: none;
  }

  .home .lp-contact-plan-title {
    margin-bottom: -7vw;
	  font-size: 3.6vw;
	  max-width: 70vw;
  }

	.home .lp-contact-plan-pricebox {
		gap: 1vw;
	}
	.home .lp-contact-plan-normal-label {
		margin-bottom: -1vw;
	  font-size: 2.8vw;
	}
	.home .lp-contact-plan-normal-price {
		font-size: 6vw;
	}
	.home .lp-contact-plan-normal-price span {
		font-size: 2.8vw;
	}
	.home .lp-contact-plan-special-price {
		font-size: 12vw;
	}
	.home .lp-contact-plan-normal-unit {
		font-size: 7vw;
	}
	.home .lp-contact-plan-special-tax {
		font-size: 2.5vw;
		top: 2.3vw;
	}
	
	.home .lp-contact-plan-badge {
		width: 18.6vw;
		height: 18.6vw;
		font-size: 5vw;
	}
	
	.home .lp-contact-plan-badge::before {
	  border-top: 1.5vw solid transparent;
	  border-bottom: 1.5vw solid transparent;
	  border-right: 3.5vw solid #f8dc08;
	}

	.home .lp-contact-plan-badge-num{
		font-size: 8vw;
	}
	
	.home .lp-contact-plan-arrow {
	  border-top: 2vw solid transparent;
	  border-bottom: 2vw solid transparent;
	  border-left: 1.5vw solid #777;
		margin: 0 0 2.2vw 1vw;
	}



  .home .lp-contact-plan-present-head {
    font-size: 22px;
  }

  .home .lp-contact-plan-present-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 16px 16px 16px;
  }

  .home .lp-contact-plan-present-text,
  .home .lp-contact-plan-present-image {
    width: 100%;
  }

  .home .lp-contact-plan-present-sub {
    font-size: 28px;
    text-align: center;
  }

  .home .lp-contact-plan-present-main {
    font-size: 36px;
    text-align: center;
  }

  .home .lp-contact-plan-present-image img {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-contact-plan-button {
    min-width: 0;
    width: 90%;
    padding: 20px 20px 22px;
    font-size: 30px;
    text-align: center;
  }

  .home .lp-contact-plan-note {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* =========================
  毎月10社限定
  767px以下
========================= */
@media screen and (max-width: 767px) {

  .home .lp-contact-plan {
    padding: 52px 12px 60px;
  }

  .home .lp-contact-plan-inner {
    max-width: 100%;
  }

  .home .lp-contact-plan-limit {
    font-size: 28px;
  }
  .home .lp-contact-plan-limit span {
    font-size: 42px;
  }

  .home .lp-contact-plan-main {
    margin-bottom: 22px;
    font-size: 56px;
  }

  .home .lp-contact-plan-main span {
    font-size: 34px;
  }

  .home .lp-contact-plan-card {
    padding: 28px 14px 30px;
    border-radius: 16px;
  }

  .home .lp-contact-plan-flow {
    margin-bottom: 20px;
	  gap: 3px;
  }

  .home .lp-contact-plan-flow span {
    font-size: 10px;
    padding: 10px 3% 10px 0;
  }

  .home .lp-contact-plan-flow span:not(:last-child)::after {
    display: none;
  }



	.lp-contact-plan-title,
	.home .lp-contact-plan-pricebox {
		transform: scale(1.15);
	}
	.home .lp-contact-plan-pricebox {
		margin-bottom: 20px;
	}
  .home .lp-contact-plan-title {
	  max-width: 72vw;
  }
	
	.home .lp-contact-plan-normal-price::after {
		height: 1px;
	}
	
  .home .lp-contact-plan-present {
    margin-bottom: 22px;
    border-width: 3px;
  }

  .home .lp-contact-plan-present-head {
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 10px;
  }

  .home .lp-contact-plan-present-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 14px 12px 14px;
  }

  .home .lp-contact-plan-present-text,
  .home .lp-contact-plan-present-image {
    width: 100%;
  }
  .home .lp-contact-plan-present-image {
    text-align: center;
  }

  .home .lp-contact-plan-present-sub {
    margin-bottom: 6px;
    font-size: 20px;
    text-align: center;
  }

  .home .lp-contact-plan-present-main {
    font-size: 1.5em;
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-contact-plan-present-image img {
    max-width: 254px;
	  margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }

  .home .lp-contact-plan-button {
    min-width: 0;
    width: 89%;
    padding: 16px 16px 18px;
    font-size: 22px;
    line-height: 1.4;
    text-align: center;
  }

  .home .lp-contact-plan-note {
    font-size: 13px;
    line-height: 1.8;
  }
}





/* =========================
  FAQ
========================= */
.home .lp-faq,
.home .lp-faq * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-faq {
  padding: 120px 12px 110px;
	position: relative;
}

.home .lp-faq::after {
  content: "";
  position: absolute;
  top: 115px;
  left: 0;
  bottom: 0;
  width: 90%;
  background: #f4efbf;
  border-radius: 0 100px 0 0;
}




.home .lp-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 16px 40px;
	position: relative;
	z-index: 1;
}


@media screen and (max-width: 1499px) {
	
	.home .lp-faq {
	  padding: 90px 12px 0;
	}
	.home .lp-faq::after {
	  display: none;
	}
	.home .lp-faq-inner {
  		background: #f4efbf;
		padding-top: 50px;
		border-radius: 28px;
	}

}

.home .lp-faq-title {
  margin: 0 0 46px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.home .lp-faq-list {
  max-width: 1000px;
  margin: 0 auto;
}

.home .lp-faq-item + .lp-faq-item {
  margin-top: 0;
}

.home .lp-faq-question {
  width: 100%;
  border: 0;
  background: #f8dc08;
  padding: 24px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;
}

.home .lp-faq-q {
  flex: 0 0 auto;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
	position: relative;
	top: -4px;
}

.home .lp-faq-question-text {
  flex: 1 1 auto;
  font-size: 33px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
}

.home .lp-faq-icon {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 18px solid #333;
  transition: transform 0.25s ease;
}

.home .lp-faq-item.is-open .lp-faq-icon {
  transform: rotate(180deg);
}

.home .lp-faq-answer {
  background: #f4efbf;
  overflow: hidden;
  height: 0;
  transition: height 0.35s ease;
}

.home .lp-faq-answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 5px 25px 60px;
}

.home .lp-faq-a {
  flex: 0 0 auto;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  color: #c74141;
}

.home .lp-faq-answer-inner p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

/* =========================
  767px以下 FAQ文字調整
========================= */
@media screen and (max-width: 767px) {
  .home .lp-faq {
    padding: 56px 12px 64px;
  }

  .home .lp-faq-inner {
    border-top-right-radius: 28px;
    padding-bottom: 20px;
  }

  .home .lp-faq-title {
    margin-bottom: 24px;
  }

  .home .lp-faq-question {
    padding: 14px 14px 14px 12px;
    gap: 10px;
  }

  .home .lp-faq-q,
	.home .lp-faq-a {
    font-size: 2.4em;
  }

  .home .lp-faq-question-text {
    font-size: 1.4em;
    line-height: 1.5;
  }

  .home .lp-faq-icon {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #333;
  }

  .home .lp-faq-answer-inner {
    gap: 10px;
    padding: 14px 12px 18px;
  }

  .home .lp-faq-answer-inner p {
    font-size: 0.95em;
    line-height: 1.7;
  }
}



/* =========================
  BLOG
========================= */
.home .lp-blog,
.home .lp-blog * {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

.home .lp-blog {
  background: #fff;
  padding: 100px 20px 90px;
}

.home .lp-blog-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.home .lp-blog-title {
  margin: 0 0 56px;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  line-height: var(--lp-section-title-lh);
}

.home .lp-blog-list {
  display: flex;
  justify-content: flex-start;
  gap: 36px;
}

.home .lp-blog-card {
  width: calc((100% - 72px) / 3);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.home .lp-blog-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.home .lp-blog-thumb {
  background: #f8dc08;
  aspect-ratio: 4 / 2.7;
  overflow: hidden;
}

.home .lp-blog-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home .lp-blog-body {
  min-height: 150px;
  padding: 26px 24px 30px;
  box-sizing: border-box;
}

.home .lp-blog-card-title {
  margin: 0;
  font-size: 1.7em;
  font-weight: 700;
  line-height: 1.5;
  color: #333;
  word-break: break-word;
}

.home .lp-blog-more-wrap {
  margin-top: 42px;
  text-align: right;
}

.home .lp-blog-more {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

/* =========================
  1000px以下
========================= */
@media screen and (max-width: 1000px) {
  .home .lp-blog {
    padding: 80px 20px 72px;
  }

  .home .lp-blog-title {
    margin-bottom: 44px;
  }

  .home .lp-blog-list {
    gap: 20px;
  }

  .home .lp-blog-card {
    width: calc((100% - 40px) / 3);
  }

  .home .lp-blog-body {
    min-height: 128px;
    padding: 20px 18px 24px;
  }

  .home .lp-blog-card-title {
    font-size: 1.35em;
  }
}

/* =========================
  767px以下
========================= */
@media screen and (max-width: 767px) {
  .home .lp-blog {
    padding: 64px 16px 60px;
  }

  .home .lp-blog-title {
    margin-bottom: 32px;
  }

  .home .lp-blog-list {
    display: block;
  }

  .home .lp-blog-card {
    width: 100%;
  }

  .home .lp-blog-card + .lp-blog-card {
    margin-top: 20px;
  }

  .home .lp-blog-body {
    min-height: auto;
    padding: 18px 16px 22px;
  }

  .home .lp-blog-card-title {
    font-size: 1.25em;
    line-height: 1.5;
  }

  .home .lp-blog-more-wrap {
    margin-top: 28px;
    text-align: right;
  }

  .home .lp-blog-more {
    font-size: 1.2em;
  }
}


/*　お問い合わせ　*/
.home .lp-contact-form {
  background: #f4efbf;
  padding: 60px 20px;
}

.home .lp-contact-form-inner {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-sizing: border-box;
}

.home .lp-contact-form-title {
  margin: 0 0 30px;
  text-align: center;
  font-size: var(--lp-section-title-fz);
  font-weight: 700;
  line-height: var(--lp-section-title-lh);
  color: #222;
}

.home .lp-contact-form .wpcf7 input[type="text"],
.home .lp-contact-form .wpcf7 input[type="email"],
.home .lp-contact-form .wpcf7 input[type="tel"],
.home .lp-contact-form .wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

.home .lp-contact-form .wpcf7 textarea {
  min-height: 160px;
}

.home .lp-contact-form .wpcf7-submit {
  display: inline-block;
  padding: 14px 30px;
  border: none;
  background: #2b971f;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

.home .lp-contact-form .cf7-lp-form {
  width: 100%;
}
.home .lp-contact-form .cf7-lp-form p {
  margin: 0;
}

.home .lp-contact-form .cf7-lp-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.home .lp-contact-form .cf7-lp-row + .cf7-lp-row {
  margin-top: 14px;
}

.home .lp-contact-form .cf7-lp-head {
  flex: 0 0 230px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  box-sizing: border-box;
}

.home .lp-contact-form .cf7-lp-title {
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.home .lp-contact-form .cf7-lp-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 28px;
  padding: 0 8px;
  background: #ff0000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

.home .lp-contact-form .cf7-lp-body {
  flex: 1 1 auto;
}

.home .lp-contact-form .cf7-lp-body-col2 {
  display: flex;
  gap: 12px;
}

.home .lp-contact-form .cf7-lp-col {
  flex: 1 1 0;
}

.home .lp-contact-form .cf7-lp-body .wpcf7-form-control-wrap {
  display: block;
}

.home .lp-contact-form .wpcf7 input[type="text"],
.home .lp-contact-form .wpcf7 input[type="email"],
.home .lp-contact-form .wpcf7 input[type="tel"],
.home .lp-contact-form .wpcf7 textarea {
  width: 100%;
  border: 2px solid #bdbdbd;
  border-radius: 6px;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  font-size: 16px;
}

.home .lp-contact-form .wpcf7 input[type="text"],
.home .lp-contact-form .wpcf7 input[type="email"],
.home .lp-contact-form .wpcf7 input[type="tel"] {
  height: 42px;
  padding: 0 12px;
}

.home .lp-contact-form .wpcf7 textarea {
  min-height: 220px;
  padding: 12px;
  line-height: 1.8;
  resize: vertical;
}

.home .lp-contact-form .wpcf7 input::placeholder,
.home .lp-contact-form .wpcf7 textarea::placeholder {
  color: #b5b5b5;
  opacity: 1;
}

.home .lp-contact-form .cf7-lp-submit {
  margin-top: 28px;
  text-align: center;
}

.home .lp-contact-form .wpcf7-submit {
  display: inline-block;
  min-width: 0;
  width: 320px;
  max-width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 9999px;
  background: #2b971f;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 7px 0 #17690f;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  height: auto;
  -webkit-appearance: none;
  appearance: none;
  margin: 0 auto;
}

.home .lp-contact-form .wpcf7-submit:hover {
  transform: translateY(3px);
  box-shadow: 0 4px 0 #17690f;
}

@media screen and (max-width: 767px) {
  .home .lp-contact-form .wpcf7-submit {
    width: 100%;
    max-width: 280px;
    padding: 14px 18px 16px;
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .home .lp-contact-form .cf7-lp-row {
    display: block;
  }

  .home .lp-contact-form .cf7-lp-head {
    flex: none;
    width: 100%;
    justify-content: flex-start;
    padding-top: 0;
    margin-bottom: 8px;
  }

  .home .lp-contact-form .cf7-lp-body-col2 {
    display: block;
  }

  .home .lp-contact-form .cf7-lp-col + .cf7-lp-col {
    margin-top: 10px;
  }

  .home .lp-contact-form .cf7-lp-title {
    font-size: 15px;
  }

  .home .lp-contact-form .cf7-lp-required {
    min-width: 44px;
    height: 26px;
    font-size: 13px;
  }
}

.home .lp-contact-form .wpcf7 p:last-child {
  text-align: center;
}

/* 追従お問い合わせボタン */
.home .lp-floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
}

.home .lp-floating-contact__link {
  display: block;
  width: 180px;
  text-decoration: none;
	box-sizing: border-box;
}

.home .lp-floating-contact__image {
  position: relative;
  display: block;
  width: 100%;
}

.home .lp-floating-contact__img {
  display: block;
  width: 100%;
  height: auto;
}

.home .lp-floating-contact__img--off {
  transition: opacity 0.25s ease;
}

.home .lp-floating-contact__img--on {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.home .lp-floating-contact__link:hover .lp-floating-contact__img--on,
.home .lp-floating-contact__link:focus-visible .lp-floating-contact__img--on {
  opacity: 1;
	transition: 0.1s;
}

.home .lp-floating-contact__link:hover .lp-floating-contact__img--off,
.home .lp-floating-contact__link:focus-visible .lp-floating-contact__img--off {
  opacity: 0;
}
.home .lp-floating-contact__link:hover,
.home .lp-floating-contact__link:focus-visible {
  padding: 1.5% 0 0 1.5%;
}

@media screen and (max-width: 767px) {
  .home .lp-floating-contact__link {
    width: 26vw;
    min-width: 96px;
    max-width: 140px;
  }
}


/* 目次 */
div#toc_container {
	box-sizing: border-box;
}


