@charset "utf-8";
/* ----------------------------------------
リセット・共通
---------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
}
body {
  padding-top: 80px;
}
img {
	width: 100%;
	height: auto;
}
a:hover img  {
	opacity: 0.7;
}

footer .ft_nav {
	display: none; /* 共通フッターナビを非表示 */
}


/* ----------------------------------------
既存ヘッダーCSSの影響をリセット
---------------------------------------- */
header#special, header#special:not(.scroll) {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  color: #000;
  background-color: #fff;
}
/* 既存の header:not(.scroll) * { color:#fff; } を上書き */
header#special *, header#special:not(.scroll) * {
  color: #000 !important;
}
/* 見積もりボタン内は画像なので影響なし */
header#special .special__cv-button {
  color: inherit !important;
}
/* 「お急ぎの方は」のみ青緑 */
header#special .special__attention, header#special:not(.scroll) .special__attention {
  color: #00a6bd !important;
}
/* 会社名 */
header#special .special__company-name {
  color: #000 !important;
}
/* 電話番号 */
header#special .special__tel-number {
  color: #000 !important;
}
/* 受付時間 */
header#special .special__business-hours {
  color: #000 !important;
}
.pc-only {
	display: block !important;
}
.sp-only {
	display: none !important;
}

/* 既存CSSのホバー処理を受けても色を維持 */
@media screen and (min-width: 1025px) {
  header#special:hover, header#special:hover * {
    color: #000 !important;
  }
  header#special:hover .special__attention {
    color: #00a6bd !important;
  }
}
/* 既存CSSでは1024px以下でposition:absoluteになるため再上書き */
@media screen and (max-width: 1024px) {
  header#special {
    position: fixed;
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 430px) {
.pc-only {
	display: none !important;
}
.sp-only {
	display: block !important;
}
}




/* ----------------------------------------
 共通
---------------------------------------- */
.display_pc {
	display: block;
}
.display_sp{
	display: none;
}
@media screen and (max-width: 835px) {
.display_pc {
	display: none;
}
.display_sp{
	display: block;
}
}

/* ----------------------------------------
固定ヘッダー
---------------------------------------- */
#special {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 15px 30px;
  background-color: #fff;
}
#special p {
  margin: 0;
}
#special a {
  color: inherit;
  text-decoration: none;
}


/* ----------------------------------------
左側：ロゴ
---------------------------------------- */
.special__logo-area {
  flex: 0 0 auto;
}
.special__logo-link {
  display: flex;
  align-items: center;
  gap: 18px;
}
.special__logo-image {
  display: block;
  width: 42px;
  height: auto;
}
.special__company-name {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}
a.special__logo-link:hover img {
	opacity: 1;
}

/* ----------------------------------------
右側：見積ボタン・電話
---------------------------------------- */
.special__contact-area {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 30px;
}
.special__cv-button {
  display: block;
  flex: 0 0 auto;
}
.special__cv-button img {
  display: block;
  width: auto;
  height: 50px;
}
.special__tel-area {
  flex: 0 0 auto;
}
.special__attention {
  margin-bottom: 2px;
  color: #00a6bd;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.special__tel-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.special__tel-number {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.special__business-hours {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}
.pc-time {
  display: inline;
}
@media screen and (max-width:1100px) {
  /* CVボタンを非表示 */
  .special__cv-button {
    display: none;
  }
  /* 右側は電話だけ */
  .special__contact-area {
    gap: 0;
  }
}


/* ----------------------------------------
小さいスマートフォン430px以下
---------------------------------------- */
@media screen and (max-width: 430px) {
  body {
    padding-top: 72px;
  }
  #special {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 72px;
    padding: 10px 15px;
  }
  /* 左側：ロゴ＋会社名 */
  .special__logo-area {
    flex: 0 1 auto;
    min-width: 0;
  }
  .special__logo-link {
    justify-content: flex-start;
    gap: 8px;
  }
  .special__logo-image {
    flex-shrink: 0;
    width: 30px;
  }
  .special__company-name {
    font-size: 13px;
    line-height: 1.3;
    white-space: nowrap;
  }
  /* 右側：電話情報 */
  .special__contact-area {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
  }
  .special__cv-button {
    display: none;
  }
  .special__tel-area {
    text-align: left;
  }
  .special__attention {
    margin-bottom: 1px;
    font-size: 10px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .special__tel-row {
    display: block;
  }
  .special__tel-number {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .special__business-hours {
    display: block;
    margin-top: 1px;
    font-size: 9px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .pc-time {
    display: none;
  }
}





/* ----------------------------------------
MV
---------------------------------------- */
#mv {
	max-width: 1400px;
	margin: 0 auto;
}
#mv h1 {
	margin: 0 0 50px;
	padding: 0;
	line-height: 1.5;
}






/* ----------------------------------------
見積もりボタン
---------------------------------------- */
#conversion {
	max-width: 700px;
	margin: 0 auto 150px;
}
@media screen and (max-width: 835px) {
	#conversion {
		width: calc(100% - 30px);
		margin-bottom: 80px;
	}
}






/* ----------------------------------------
使い方
---------------------------------------- */
#how_to_use {
	max-width: 1300px;
	margin: 0 auto 150px;
	padding: 0 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#product {
	max-width: 625px;
	width: 100%;
	margin: 0 80px 0 0;
	padding: 0;
}
#howto {
	max-width: 495px;
	width: 100%;
	margin: 0;
	padding: 0;
}
#howto span {
	display: block;
	text-align: center;
	font-size: 15px;
	margin-top: 20px;
	line-height: 1.5;
	font-weight: 700;
}

@media screen and (max-width: 835px) {

	#how_to_use {
		display: block;
		width: calc(100% - 30px);
		padding: 0;
		margin: 0 auto 80px;
	}

	#product {
		max-width: 500px;
		width: 100%;
		margin: 0 auto 40px;
	}

	#howto {
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}

	#product img,
	#howto img {
		display: block;
		width: 100%;
		height: auto;
	}

	#howto span {
		margin-top: 15px;
		font-size: 14px;
		line-height: 1.5;
	}
}




/* ----------------------------------------
youtubeとかのエリア
---------------------------------------- */

#detail_wrap {
	width: calc(100% - 100px);
	max-width: 1200px;
	margin: 0 auto 150px;
}

#detail_wrap .detail {
	display: grid;
	grid-template-columns: minmax(0, 500px) minmax(0, 660px);
	column-gap: 40px;
	margin-bottom: 50px;
}

#detail_wrap .detail:last-child {
	margin-bottom: 0;
}

/* youtube */
#detail_wrap .youtube {
	width: 100%;
	max-width: 500px;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

#detail_wrap .youtube iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

/* 画像 */
#detail_wrap .imgs {
	width: 100%;
	max-width: 500px;
	text-align: center;
}

#detail_wrap .imgs img {
	display: block;
	width: 100%;
	height: auto;
}

#detail_wrap .caption {
	display: block;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.5;
}

/* テキスト */
#detail_wrap .yt_text h2 {
	margin: 0 0 18px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

#detail_wrap .yt_text h2 span {
	display: block;
	margin-bottom: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

#detail_wrap .yt_text h2::after {
	content: "";
	display: block;
	width: 100px;
	height: 5px;
	margin-top: 15px;
	background-color: #10abc3;
}

#detail_wrap .yt_text p {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.75;
}

#detail_wrap .yt_text strong {
	font-weight: 700;
}

/* 835px以下：縦積み */
@media screen and (max-width: 835px) {

	#detail_wrap {
		width: calc(100% - 60px);
		max-width: none;
	}

	#detail_wrap .detail {
		display: block;
		margin-bottom: 64px;
	}

	#detail_wrap .youtube,
	#detail_wrap .imgs,
	#detail_wrap .yt_text {
		width: 100%;
		max-width: none;
	}

	#detail_wrap .youtube,
	#detail_wrap .imgs {
		margin-bottom: 32px;
	}

	#detail_wrap .yt_text h2 {
		margin-bottom: 20px;
		font-size: 30px;
	}

	#detail_wrap .yt_text h2 span {
		margin-bottom: 4px;
		font-size: 20px;
	}
	#detail_wrap .yt_text h2::after {
		margin-top: 16px;
	}
	#detail_wrap .yt_text p {
		font-size: 17px;
		line-height: 1.8;
	}
}

/* 480px以下：縦積み */
@media screen and (max-width: 430px) {

	#detail_wrap {
		width: calc(100% - 30px);
		margin-bottom: 80px;
	}

	#detail_wrap .detail {
		margin-bottom: 48px;
	}

	#detail_wrap .youtube,
	#detail_wrap .imgs {
		margin-bottom: 24px;
	}

	#detail_wrap .caption {
		margin-top: 8px;
		font-size: 13px;
	}

	#detail_wrap .yt_text h2 {
		margin-bottom: 16px;
		font-size: 24px;
		line-height: 1.45;
		text-align: center;
	}
	
	#detail_wrap .yt_text h2::after {
		margin-left: auto;
		margin-right: auto;
	}
	#detail_wrap .yt_text h2 span {
		font-size: 17px;
		line-height: 1.5;
	}

	#detail_wrap .yt_text p {
		font-size: 15px;
		line-height: 1.8;
	}
}




/* ----------------------------------------
選ばれる4つの理由・メリット
---------------------------------------- */

#merit {
	width: calc(100% - 100px);
	max-width: 1400px;
	margin: 0 auto 150px;
	padding: 0;
}

#merit h2 {
	margin: 0 0 40px;
	color: #000;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

#merit h2::after {
	display: block;
	width: 100px;
	height: 5px;
	margin: 10px auto 0;
	background-color: #10abc3;
	content: "";
}

#merit .merit_wrap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 50px;
	padding: 80px 100px;
	background-color: #e7f6f9;
}

#merit .merit_box {
	display: flex;
	align-items: center;
	gap: 35px;
	min-width: 0;
	padding: 40px;
	background-color: #fff;
	border-radius: 16px;
	box-sizing: border-box;
}

#merit .merit_box > p {
	margin: 0;
}

#merit .merit_box > p:first-child {
	flex-shrink: 0;
	color: #10abc3;
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
}

#merit .merit_box > p:last-child {
	min-width: 0;
	color: #000;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.8;
}

#merit .merit_box > p:last-child span {
	display: block;
	color: #10abc3;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.4;
}


/* タブレット */
@media screen and (max-width: 1100px) {
	#merit {
		width: calc(100% - 60px);
	}

	#merit .merit_wrap {
		padding: 60px;
		gap: 30px;
	}

	#merit .merit_box {
		align-items: flex-start;
		gap: 24px;
		padding: 32px;
	}

	#merit .merit_box > p:first-child {
		font-size: 4rem;
	}

	#merit .merit_box > p:last-child span {
		font-size: 1.4rem;
	}
}


/* スマートフォン */
@media screen and (max-width: 835px) {
	#merit {
		width: calc(100% - 40px);
	}

	#merit h2 {
		margin-bottom: 30px;
		font-size: 30px;
	}

	#merit h2::after {
		height: 5px;
		margin-top: 8px;
	}

	#merit .merit_wrap {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 40px 20px;
	}

	#merit .merit_box {
		gap: 20px;
		padding: 25px 20px;
		border-radius: 16px;
	}

	#merit .merit_box > p:first-child {
		font-size: 3.5rem;
	}

	#merit .merit_box > p:last-child {
		font-size: 16px;
		line-height: 1.7;
	}

	#merit .merit_box > p:last-child span {
		margin-bottom: 6px;
		font-size: 24px;
	}
}

@media screen and (max-width: 430px) {
	#merit {
		width: calc(100% - 30px);
		margin-bottom: 80px;
	}

	#merit h2 {
		font-size: 24px;
	}

	#merit .merit_wrap {
		padding: 30px 15px;
	}

	#merit .merit_box {
		gap: 15px;
		padding: 22px 18px;
	}

	#merit .merit_box > p:first-child {
		font-size: 3rem;
	}

	#merit .merit_box > p:last-child span {
		font-size: 20px;
	}
}






/* ----------------------------------------
導入実績・利用シーン
---------------------------------------- */

#scene {
	width: calc(100% - 100px);
	max-width: 1400px;
	margin: 0 auto 150px;
	padding: 0;
}

#scene h2 {
	margin: 0 0 40px;
	color: #000;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

#scene h2::after {
	display: block;
	width: 100px;
	height: 5px;
	margin: 10px auto 0;
	background-color: #10abc3;
	content: "";
}

#scene .merit_wrap {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#scene .merit_wrap li {
	min-width: 0;
	text-align: center;
}

#scene .merit_wrap img {
	display: block;
	width: 100%;
	height: auto;
}

#scene .merit_wrap span {
	display: block;
	margin-top: 22px;
	color: #000;
	font-size: 24px;
	font-weight: 400;
	line-height: 1.5;
}


/* 2列表示 */
@media screen and (max-width: 835px) {
	#scene {
		width: calc(100% - 60px);
	}

	#scene .merit_wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 30px;
	}

	#scene .merit_wrap span {
		font-size: 21px;
	}
}


/* スマートフォン */
@media screen and (max-width: 767px) {
	#scene {
		width: calc(100% - 40px);
		margin-bottom: 100px;
	}

	#scene h2 {
		margin-bottom: 30px;
		font-size: 30px;
	}

	#scene h2::after {
		height: 5px;
		margin-top: 8px;
	}
}


/* 1列表示 */
@media screen and (max-width: 430px) {
	#scene {
		width: calc(100% - 30px);
		margin-bottom: 80px;
	}
	#scene .merit_wrap {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 40px 15px;
	}
	#scene .merit_wrap span {
		margin-top: 10px;
		font-size: 14px;
	}
	#scene h2 {
		font-size: 24px;
	}
}




/* ----------------------------------------
ご利用の流れ
---------------------------------------- */

#flow {
	width: calc(100% - 100px);
	max-width: 1400px;
	margin: 0 auto 150px;
	padding: 0;
}

#flow h2 {
	margin: 0 0 40px;
	color: #000;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

#flow h2::after {
	display: block;
	width: 100px;
	height: 5px;
	margin: 10px auto 0;
	background-color: #10abc3;
	content: "";
}

.display_sp835 {
	display: none;
}
.display_pc835 {
	display: block;
}

/* スマートフォン */
@media screen and (max-width: 835px) {
	#flow {
		width: calc(100% - 40px);
		margin-bottom: 100px;
	}

	#flow h2 {
		margin-bottom: 30px;
		font-size: 30px;
	}

	#flow h2::after {
		height: 5px;
		margin-top: 8px;
	}
.display_sp835 {
	display: block;
}
.display_pc835 {
	display: none;
}
}


/* 1列表示 */
@media screen and (max-width: 430px) {
	#flow {
		width: calc(100% - 30px);
		margin-bottom: 100px;
	}
	#flow h2 {
		font-size: 24px;
	}
}




/* ----------------------------------------
お問い合わせ
---------------------------------------- */

#contact_box {
	width: 100%;
	padding: 100px 50px;
	background-color: #e7f6f9;
	text-align: center;
	box-sizing: border-box;
}

#contact_box h2 {
	margin: 0 0 40px;
	color: #000;
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

#contact_box h2::after {
	display: block;
	width: 100px;
	height: 5px;
	margin: 10px auto 0;
	background-color: #10abc3;
	content: "";
}

#contact_box #cv_btn {
	margin: 0 auto 30px;
}

#contact_box #cv_btn a {
	display: inline-block;
	transition: opacity .3s;
}

#contact_box #cv_btn a:hover {
	opacity: .8;
}

#contact_box #cv_btn img {
	display: block;
	width: 100%;
	max-width: 700px;
	height: auto;
	margin: 0 auto;
}

#contact_box .text {
	margin: 0 0 12px;
	color: #10abc3;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
}

#contact_box .tel {
	margin: 0;
	color: #000;
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
}

#contact_box .tel span {
	display: block;
	margin-top: 5px;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
}


/* ----------------------------------------
SP
---------------------------------------- */

@media screen and (max-width: 767px) {

	#contact_box {
		padding: 70px 20px;
	}

	#contact_box h2 {
		margin-bottom: 30px;
		font-size: 28px;
	}

	#contact_box #cv_btn {
		margin-bottom: 35px;
	}

	#contact_box .text {
		margin-bottom: 10px;
		font-size: 20px;
	}

	#contact_box .tel {
		font-size: 42px;
		line-height: 1.2;
	}

	#contact_box .tel span {
		margin-top: 10px;
		font-size: 16px;
	}
}

@media screen and (max-width: 430px) {

	#contact_box {
		padding: 60px 15px;
	}

	#contact_box h2 {
		font-size: 24px;
	}

	#contact_box .text {
		font-size: 18px;
	}

	#contact_box .tel {
		font-size: 34px;
	}

	#contact_box .tel span {
		font-size: 15px;
	}
}