@charset "UTF-8";

:root {
	/* radius */
	--radius-sp: 30px;
	--radius-pc: 60px;

	/* container */
	--container: 1000px;
	--inner: 900px;

	/* space */
	--space-s: clamp(10px, 2vw, 20px);
	--space-m: clamp(20px, 4vw, 40px);
	--space-l: clamp(40px, 6vw, 80px);

	/* font */
	--text: clamp(13px, 0.3vw + 12px, 15px);
	--title: clamp(20px, 1vw + 16px, 30px);
}

/*----------------------
		base
----------------------*/
html {
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}

@media screen and (min-width: 766px) {
	html {
		scroll-padding-top: 100px;
	}
}

#portable-battery {
	background: #e6f3f0;
	background-image:
		repeating-radial-gradient(circle at 0 0, transparent 0, #e6f3f0 77px),
		repeating-linear-gradient(#dcece955, #dcece9);
	color: #424242;
	line-height: 1.7;
}

#portable-battery img {
	display: block;
	max-width: 100%;
	height: auto;
}

#portable-battery .nobr {
	white-space: nowrap;
}

#portable-battery .annotation {
	display: block;
	margin: 0 auto;
	width: 75%;
	font-size: 11px;
	font-weight: 300;
	color: #003d3a;
}


/*----------------------
	Container
----------------------*/
#portable-battery .wrapper {
	position: relative;
	width: min(100%, var(--container));
	margin: clamp(0px, 2vw, 80px) auto;
	padding-block: clamp(20px, 2vw, 80px);
}

#portable-battery .inner {
	position: relative;
	width: clamp(85%, 90%, 100%);
	max-width: var(--inner);
	margin: auto;
	padding: clamp(2.5rem, 6vw, 4rem);
	background: #fff;
	border-radius: var(--radius-sp);
}

@media (min-width:768px) {
	#portable-battery .inner {
		border-radius: var(--radius-pc);
	}
}

#portable-battery .inner p {
	font-size: var(--text);
	font-weight: 400;
	color: #424242;
	line-height: 1.7;
	text-align: justify;
}

/*----------------------
	見出し
----------------------*/
#portable-battery h2 {
	position: relative;
	margin: 9rem auto 1.5rem;
	font-size: clamp(20px, 1vw + 16px, 30px);
	font-weight: 600;
	color: #003d3a;
	text-align: center;
}

#portable-battery h2::before {
	display: block;
	width: fit-content;
	margin: 0 auto 12px;
	padding: 2px 1rem 1px;
	background: #cf6a34;
	border-radius: 2rem;
	content: "ポータブルバッテリー";
	font-size: clamp(11px, 0.3vw + 10px, 13px);
	font-weight: 400;
	color: #fff;
}

#portable-battery h2 p {
	width: 75%;
	margin: 1rem auto;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;
}

#portable-battery h2 .h2-battery {
	position: absolute;
	width: 40px;
	top: -85px;
	left: 50%;
	transform: translateX(-50%);
}


/*----------------------
		SP
	----------------------*/

/* KV & Nav SP -----------------------*/
#portable-battery .pb-header {
	position: relative;
	display: block;
	margin: 0 auto;
}

#portable-battery .pb-header .kv_left {
	padding-top: 120px;
}

#portable-battery h1 img {
	display: block;
	width: 65%;
	margin: 0 auto;
}

#portable-battery nav {
	width: 70%;
	max-width: 240px;
	margin: 30px auto 0;
}

#portable-battery nav ul {
	margin: 0 auto;
}

#portable-battery nav li {
	max-width: 200px;
	margin: 10px auto 0;
	padding: 8px 1rem;
	background-color: #fff;
	border: 1px solid #003d3a20;
	border-radius: 3rem;
	color: #003d3a;
	text-align: center;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}

#portable-battery nav a {
	font-size: 18px;
	line-height: 1;
}

#portable-battery nav a:hover {
	opacity: 1;
}

#portable-battery nav li:hover {
	background-color: #007771;
	font-weight: 600;
	color: #fff;
	letter-spacing: 0.15em;
}

#portable-battery nav li.cta {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	height: 63px;
	margin: 30px auto 0;
	padding: 20px 2rem;
	background: #74b5b1;
	background: linear-gradient(90deg, rgba(116, 181, 177, 1) 0%, rgba(0, 119, 113, 1) 0%, rgba(0, 119, 113, 1) 100%);
	color: #fff;
}

#portable-battery nav li.cta::before {
	content: "\f303";
	display: inline-block;
	margin-right: 10px;
	font-family: "Font Awesome 6 Pro";
	font-size: 24px;
	font-weight: 100;
	vertical-align: middle;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}

#portable-battery nav li.cta:hover {
	height: 63px;
	background: #007771;
	background: linear-gradient(90deg, rgba(0, 119, 113, 1) 0%, rgba(0, 119, 113, 1) 100%, rgba(116, 181, 177, 1) 100%);
}

#portable-battery nav li.cta:hover::before {
	animation: fa-bounce 1s infinite;
}

#portable-battery .pb-header .kv_right {
	display: none;
}

/*----------------------
		悩み
----------------------*/
#portable-battery #nayami h2 {
	margin: 1rem auto;
}

#portable-battery #nayami h2 i {
	display: block;
	margin-bottom: 12px;
	font-size: 3.5rem;
	color: #e4a72c;
	animation: fa-flip 5s infinite;
}

#portable-battery #nayami h2::before {
	display: none;
}

#portable-battery #nayami .wrapper {
	padding-inline: clamp(16px, 4vw, 40px);
}

#portable-battery #nayami .inner {
	padding: clamp(2.5rem, 4vw, 4rem);
}

#portable-battery #nayami ul {
	margin: 0 1rem 1.5rem;
}

#portable-battery #nayami ul li {
	display: flex;
	margin-bottom: 10px;
	font-size: 17px;
	font-weight: 500;
	line-height: 1.4;
	color: #007771;
}

#portable-battery #nayami ul li::before {
	font-family: "Font Awesome 6 Pro";
	font-weight: 900;
	content: "\f058";
	margin-right: 0.5em;
}

#portable-battery #nayami img.illust {
	display: none;
}


/*----------------------
		メリット
----------------------*/
#portable-battery #merit ul {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(20px, 3vw, 40px);
	width: min(85%, var(--inner));
	margin: auto;
}

#portable-battery #merit li {
	position: relative;
	width: 85%;
	margin: 0 auto clamp(0px, 4vw, 20px);
	padding: clamp(2.5rem, 4vw, 3rem) 3rem;
	background: #fff;
	border-radius: var(--radius-sp);
	font-weight: 400;
	color: #424242;
	text-align: center;
}

#portable-battery #merit li>img {
	display: block;
	width: 64px;
	margin: 0 auto 20px;
}

#portable-battery #merit .tit {
	margin: 10px auto 20px;
	font-size: 17px;
	font-weight: 600;
	color: #cc7201;
	text-align: center;
	line-height: 1.3;
}

#portable-battery #merit .txt {
	font-size: clamp(13px, 0.3vw + 12px, 14px);
	font-weight: 400;
	line-height: 1.6;
	text-align: justify;
}

#portable-battery #merit img.illust {
	display: none;
}

/* おすすめ活用方法 SP -----------------------*/
#portable-battery #how2use .inner .illust {
	display: none;
}

#portable-battery #how2use ul.better-place {
	display: block;
	width: 75%;
	margin: 7rem auto;
}

#portable-battery #how2use ul.better-place li {
	margin: 30px 0;
}

#portable-battery #how2use ul.better-place li .tit01,
#portable-battery #how2use ul.better-place li .tit02 {
	display: block;
	margin: 20px;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

#portable-battery #how2use ul.better-place li .tit01 {
	color: #003d3a;
}

#portable-battery #how2use ul.better-place li .tit02 {
	color: #434343;
}

#portable-battery #how2use ul.better-place li .tit01::before {
	display: block;
	content: url(https://test.officebusters.com/facility/wp-content/themes/main/_page/deco/portable-battery/img/img_portable-battery__icon_osusume01.svg) / "バッテリーアイコン";
	margin: 20px auto 8px;
	width: 50px;
}

#portable-battery #how2use ul.better-place li .tit02::before {
	display: block;
	content: url(https://test.officebusters.com/facility/wp-content/themes/main/_page/deco/portable-battery/img/img_portable-battery__icon_osusume02.svg) / "プラグアイコン";
	margin: 20px auto 8px;
	width: 35px;
}

#portable-battery #how2use ul.better-place li .photo {
	position: relative;
}

#portable-battery #how2use ul.better-place li .photo img {
	object-fit: cover;
	border-radius: 30px 30px 0 0;
}

#portable-battery #how2use ul.better-place li .photo ul.tag {
	position: absolute;
	bottom: 16px;
	left: 16px;
	display: flex;
	flex-wrap: wrap;
}

#portable-battery #how2use ul.better-place li .photo ul.tag li {
	width: fit-content;
	margin: 3px;
	padding: 4px 12px 2px;
	background-color: #fff;
	border-radius: 2rem;
	font-size: 11px;
	font-weight: 400;
	color: #003c3a;
}

#portable-battery #how2use ul.better-place li .list {
	display: block;
	padding: 1rem 1.5rem 1.5rem;
	background-color: #fff;
	border-radius: 0 0 30px 30px;
	color: #303030;
}

#portable-battery #how2use ul.better-place li .list ul li {
	width: 100%;
	margin: 10px;
	list-style-type: disc;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}

#portable-battery #how2use ul.better-place li .list ul li span {
	font-size: 10px;
	font-weight: 400;
}

#portable-battery #how2use .inner.ob {
	width: 85%;
	margin-top: -5rem;
	background: transparent;
	color: #003c3a;
}

#portable-battery #how2use .inner.ob .illust {
	display: block;
	width: 130px;
	margin:0 auto 1rem;
	animation: fa-bounce 2s infinite;
}

#portable-battery #how2use .inner.ob .ob-inner {
	display: block;
	text-align: center;
}

#portable-battery #how2use .inner.ob .ob-inner h3 {
	font-size: 16px;
	line-height: 1.4;
}

#portable-battery #how2use .inner.ob .ob-inner p {
	margin: 12px auto;
	font-size: 14px;
	text-align: center;
	color: #003c3a;
}

#portable-battery #how2use .inner.ob .ob-inner a {
	display: inline-block;
	width: 210px;
	height: 63px;
	border-radius: 3rem;
	margin: 4px 1rem 0 0;
	padding: 16px 2rem;
	background: #007771;
	background: linear-gradient(90deg, rgba(0, 119, 113, 1) 0%, rgba(0, 119, 113, 1) 100%, rgba(116, 181, 177, 1) 100%);
	line-height: 1.4;
	color: #fff;
	text-align: center;
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
}

#portable-battery #how2use .inner.ob .ob-inner a::before {
	content: "\f303";
	display: inline-block;
	margin-right: 10px;
	font-family: "Font Awesome 6 Pro";
	font-size: 24px;
	font-weight: 100;
	vertical-align: middle;
}

#portable-battery #how2use .inner.ob .ob-inner a:hover {
	height: 63px;
	background: #74b5b1;
	background: linear-gradient(90deg, rgba(116, 181, 177, 1) 0%, rgba(0, 119, 113, 1) 0%, rgba(0, 119, 113, 1) 100%);
	transition: .4s cubic-bezier(0.37, 0, 0.63, 1);
	text-align: center;
	letter-spacing: 1px;
}

#portable-battery #how2use .inner.ob .ob-inner a:hover::before {
	animation: fa-bounce 1s infinite;
}

/* 導入事例 SP -----------------------*/
#portable-battery #case .inner .case-photo {
	margin-top: 0;
	border-radius: 15px;
}

#portable-battery #case .inner .info {
	display: block;
	margin: 1rem auto 0;
}

#portable-battery #case .inner .info a.company-name {
	display: block;
	margin-bottom: 1rem;
	font-size: 18px;
	text-align: center;
	text-decoration: none;
}

#portable-battery #case .inner .info a.company-name:hover {
	text-decoration: underline;
}

#portable-battery #case .inner .info a.company-name i {
	margin-left: 8px;
	color: #1ba9bb;
}

#portable-battery #case .inner .info a.company-name span {
	margin-left: 4px;
	font-size: 16px;
	font-weight: 400;
}

#portable-battery #case .inner .info .list p {
	text-align-last: left;
}

#portable-battery #case .inner .info .list p span {
	padding: 2px 1rem;
	border-radius: 2rem;
	text-align: center;
}

#portable-battery #case .inner .info .list p span::after {
	content: "|";
	margin-left: 10px;
}

/* 選び方 SP -----------------------*/
#portable-battery #how2choose .inner .table-wrapper {
	position: relative;
	overflow-x: auto;
	scrollbar-width: thin;
	scrollbar-color: #6f9795 #ffffff00;
}

/* 初期：右に余白あり */
#portable-battery #how2choose .inner .table-wrapper.is-scrollable {
	mask-image: linear-gradient(to right, black 85%, transparent);
}

/* 右端まで到達 */
#portable-battery #how2choose .inner .table-wrapper.is-end {
	mask-image: none;
}

#portable-battery #how2choose table {
	width: max(100%, 500px);
	margin-top: 2rem;
	border-collapse: separate;
	border-spacing: 5px;
	font-size: 12px;
}

#portable-battery #how2choose table th,
#portable-battery #how2choose table td {
	border-radius: 5px;
	text-align: center;
	padding: 10px 0;
}

#portable-battery #how2choose table th {
	background-color: #007771;
	font-weight: 400;
	letter-spacing: 2px;
	color: white;
}

#portable-battery #how2choose table td {
	background-color: #fff;
	border: solid 1px #e2e2e2;
	color: #003d3a;
}

#portable-battery #how2choose table td:first-child {
	background-color: #e6f2f0;
	border: solid 1px #d0dcda;
}

#portable-battery #how2choose table td i {
	color: #d49800;
}

#portable-battery #how2choose .illust {
	display: block;
	width: 200px;
	margin: 2rem auto 0;
}

/* おすすめ商品 SP -----------------------*/
#portable-battery .product-list {
	display: grid;
	gap: 1.5rem;
	position: relative;
	width: min(100%, var(--container));
	margin: clamp(0px, 2vw, 80px) auto;
	padding-block: clamp(20px, 2vw, 80px);
}

#portable-battery .product {
	width: 85%;
	margin: 0 auto;
	padding: 1.5rem;
	background: #fff;
	border-radius: 30px;
	box-sizing: border-box;
}

#portable-battery .product figure {
	min-width: 100%;
	margin: 1rem auto .5rem;
}

#portable-battery .product figure img {
	width: 140px;
	margin: 0 auto;
}

#portable-battery .product figcaption {
	min-height: 38px;
	margin-top: 1rem;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #007771;
	letter-spacing: 1px;
	line-height: 1.2;
}

#portable-battery ._spec div {
	padding: 0.5rem 0 1rem;
	border-top: 1px solid #cfd9d8;
}

#portable-battery ._spec div:last-child {
	padding-bottom: 0;
}

#portable-battery ._spec dt {
	font-size: 12px;
	font-weight: 300;
	color: #888;
}

#portable-battery ._spec dt span {
	margin-left: 8px;
	font-size: 9px;
	text-align: right;
}

#portable-battery ._spec dt span::before {
	content: "|";
	padding-right: 10px;
	color: #dbe2e2;
}

#portable-battery ._spec dd {
	font-size: 14px;
	font-weight: 500;
	text-align: right;
}

#portable-battery ._spec dt+dd {
	margin-top: 0;
}

#portable-battery ._spec dd .left {
	margin-right: 4px;
	font-size: 10px;
	font-weight: 300;
}

#portable-battery ._spec dd .right {
	margin-left: 2px;
	font-size: 10px;
	font-weight: 300;
}

#portable-battery ._spec dd .right.line {
	display: inline-block;
	width: 40px;
	margin: 0 3px 0 px;
	padding: 0 3px;
	border: 1px solid #ececec;
	border-radius: 2rem;
	font-size: 10px;
	font-weight: 300;
	text-align: center;
	vertical-align: middle;
}

#portable-battery ._spec dd i {
	margin: 0 2px;
	font-size: 10px;
}

/* よくある質問 SP -----------------------*/
#portable-battery #faq .inner .qna-list {
	margin-bottom: 1rem;
	padding: 1rem 0;
	border: none;
	border-radius: 20px;
	background-color: #f7f3ec;
}

#portable-battery #faq .inner .qna-list:last-child {
	margin-bottom: 0;
}

#portable-battery #faq .inner .qna-list summary {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 30px 0 44px;
	font-size: 13px;
	line-height: 1.4;
	cursor: pointer;
}

#portable-battery #faq .inner .qna-list summary::before {
	content: "\51";
	position: absolute;
	left: 16px;
	font-family: "Font Awesome 6 Pro";
	font-size: 18px;
	font-weight: 600;
	color: #009367;
}

#portable-battery #faq .inner .qna-list summary::after {
	content: '';
	position: absolute;
	right: 16px;
	width: 9px;
	height: 9px;
	margin-left: 9px;
	transform: translateY(-25%) rotate(45deg);
	border-bottom: 3px solid #333333b3;
	border-right: 3px solid #333333b3;
}

#portable-battery #faq .inner .qna-list p {
	position: relative;
	transform: translateY(-10px);
	margin: 0;
	padding: 2rem 2rem .5rem 3rem;
	font-size: 12px;
	line-height: 1.4;
	color: #006443;
	transition: transform .5s, opacity .5s;
	opacity: 0;
}

#portable-battery #faq .inner .qna-list p::before {
	content: "\41";
	position: absolute;
	left: 18px;
	font-size: 18px;
	font-family: "Font Awesome 6 Pro";
	font-weight: 600;
}

#portable-battery #faq .inner .qna-list[open] p {
	opacity: 1;
}

#portable-battery #faq .inner .qna-list[open] summary::after {
	transform: rotate(225deg);
}

/* お問い合わせ SP -----------------------*/
#portable-battery #kantan {
	scroll-padding-top: 100px;
	margin: 8rem auto 0;
	padding-bottom: 3rem;
	background-color: unset;
}

#portable-battery #kantan .inner {
	width: 85%;
	padding: 1rem 0 0;
	background: #fff;
	background: linear-gradient(180deg, #fbfffd, #e6f3f0);
	border-radius: var(--radius-sp);
}

#portable-battery #kantan h2 {
	padding: 2.5rem 0 0;
	font-size: clamp(20px, 1vw + 16px, 30px);
	color: #003d3a;
	line-height: initial;
}

#portable-battery #kantan .inner th {
	font-size: 13px;
}

#portable-battery #kantan .inner .inpt {
	width: 100%;
	padding: 0 2.5rem;
}

#portable-battery #kantan .inner .wpcf7-list-item-label {
	display: inline-block;
	vertical-align: middle;
	margin-left: 2px;
	font-size: 12px;
	color: #003d3a;
	line-height: 1.4;
}

#portable-battery #kantan .inner .inpt input[type="url"],
#portable-battery #kantan .inner .inpt input[type="text"],
#portable-battery #kantan .inner .inpt input[type="date"],
#portable-battery #kantan .inner .inpt input[type="tel"],
#portable-battery #kantan .inner .inpt input[type="email"],
#portable-battery #kantan .inner .inpt input[type="number"],
#portable-battery #kantan .inner .inpt textarea,
#portable-battery #kantan .inner .inpt select {
	font-size: 12px;
}

#portable-battery #kantan .inner .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
	margin-left: 8px;
	font-size: 13px;
}

#portable-battery #kantan .inner .wpcf7-form-control.has-spinner.wpcf7-submit {
	font-size: 13px;
}

#portable-battery #kantan .inner .inpt .privacy .wpcf7-acceptance .wpcf7-list-item input[type="checkbox"] {
	width: 18px;
}

#portable-battery #kantan .inner .privacy p {
	font-size: 11px;
	text-align: center;
	line-height: 1.4;
}

#portable-battery #kantan .required::before {
	content: '*';
	border-radius: initial;
	background-color: initial;
	padding: 6px 2px;
	margin-right: 4px;
	font-size: 1rem;
	font-weight: 400;
	color: #d61717;
}

#portable-battery #kantan .optional::before {
	display: none;
}


/*----------------------
	Tablet
	----------------------*/
@media screen and (min-width: 768px) {

	/* KV & Nav Tablet -----------------------*/
	#portable-battery .pb-header {
		display: flex;
		align-items: stretch;
		justify-content: space-around;
		width: 768px;
	}

	#portable-battery .pb-header .kv_left {
		width: 50%;
		min-width: 400px;
		padding-top: 180px;
	}

	#portable-battery h1 img {
		width: 300px;
	}

	#portable-battery nav {
		width: 100%;
		max-width: initial;
	}

	#portable-battery nav ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		width: 90%;
	}

	#portable-battery nav li {
		width: calc(50% - 20px);
		margin: 10px 5px 0;
	}

	#portable-battery nav ul li.cta {
		width: 80%;
	}

	#portable-battery .pb-header .kv_right {
		display: block;
		height: 720px;
		margin-left: 0;
		object-fit: cover;
		border-radius: 0 0 60px 60px;
	}


	/* こんな悩みありませんか？ Tablet -----------------------*/
	#portable-battery #nayami h2 i {
		font-size: 4.5rem;
	}

	#portable-battery #nayami h2::before {
		display: none;
	}

	#portable-battery #nayami ul {
		width: 70%;
		margin: 1rem 0 0 2rem;
	}

	#portable-battery #nayami ul li {
		font-size: 22px;
	}

	#portable-battery #nayami ul li i {
		margin-right: 10px;
	}

	#portable-battery #nayami p {
		width: 72%;
		margin: 2rem 0 1rem 1rem;
	}

	#portable-battery #nayami img.illust {
		position: absolute;
		display: block;
		bottom: -30px;
		right: 15px;
		width: 190px;
	}


	/* 活用のメリット Tablet -----------------------*/
	#portable-battery #merit ul {
		width: 85%;
	}

	#portable-battery #merit ul li img {
		width: 100px;
		margin: 0 auto 30px;
	}


	/* おすすめ活用方法 Tablet -----------------------*/
	#portable-battery #how2use .inner p {
		width: 68%;
	}

	#portable-battery #how2use .inner .illust {
		position: absolute;
		display: block;
		right: 14px;
		bottom: -30px;
		width: 230px;
	}

	#portable-battery #how2use ul.better-place {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		margin: 2rem auto;
	}

	#portable-battery #how2use ul.better-place li {
		width: calc(50% - 20px);
		margin: 20px 0;
	}

	#portable-battery #how2use ul.better-place li .tit01,
	#portable-battery #how2use ul.better-place li .tit02 {
		font-size: 17px;
	}

	#portable-battery #how2use ul.better-place li .tit01::before {
		width: 90px;
	}

	#portable-battery #how2use ul.better-place li .tit02::before {
		width: 50px;
	}

	#portable-battery #how2use ul.better-place li .photo ul.tag li {
		font-size: 12px;
	}

	#portable-battery #how2use ul.better-place li .list {
		padding: 1rem 3rem 1.5rem;
	}

	#portable-battery #how2use ul.better-place li .list ul li {
		margin: 7px;
	}

	#portable-battery #how2use ul.better-place li .list ul li span {
		font-size: 11px;
	}

	#portable-battery #how2use .inner.ob {
		display: flex;
		justify-content: flex-start;
		width: 590px;
		margin-top: 0;
	}

	#portable-battery #how2use .inner.ob .illust {
		right: 50px;
		left: inherit;
		transform: initial;
		top: initial;
		bottom: 36px;
		width: 140px;
	}


	#portable-battery #how2use .inner.ob .ob-inner {
		text-align: left;
	}

	#portable-battery #how2use .inner.ob .ob-inner h3 {
		font-size: 22px;
	}

	#portable-battery #how2use .inner.ob .ob-inner p {
		width: 100%;
		margin: 6px 0 0;
		font-size: 20px;
		text-align: left;
		text-indent: 1rem;
	}

	#portable-battery #how2use .inner.ob .ob-inner a {
		margin: 16px 1rem 0;
	}


	/* 導入事例 Tablet -----------------------*/
	#portable-battery #case .inner .case-photo {
		border-radius: var(--radius-sp);
	}

	#portable-battery #case .inner .info {
		display: flex;
		justify-content: center;
		align-items: flex-start;
		margin: 2rem auto 0;
	}

	#portable-battery #case .inner .info a.company-name {
		margin-right: 2rem;
		font-size: 20px;
	}


	/* 選び方 -----------------------*/
	#portable-battery #how2choose table {
		width: 100%;
		font-size: 15px;
	}

	#portable-battery #how2choose table th,
	#portable-battery #how2choose table td {
		border-radius: 5px;
		text-align: center;
		padding: 10px 0;
	}

	#portable-battery #how2choose .illust {
		width: 50%;
		margin: 4rem auto 0;
	}


	/* おすすめ商品 Tablet -----------------------*/
	#portable-battery .product-list {
		width: 90%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
		padding: 0;
	}

	#portable-battery .product {
		width: 100%;
		margin: 0 auto;
		padding: 2.5rem;
	}

	#portable-battery .product figure {
		width: 180px;
		margin: 0 auto 1rem;
	}

	#portable-battery ._spec dd {
		padding-top: 0;
	}

	#portable-battery ._spec dt+dd {
		margin-top: 8px;
	}


	/* よくある質問 Tablet -----------------------*/
	#portable-battery #faq .inner .qna-list summary::after {
		width: 10px;
		height: 10px;
		margin: 0 24px;
	}

	#portable-battery #faq .inner .qna-list p {
		padding: 2rem 7rem .5rem;
		font-size: 16px;
		line-height: 1.6;
	}

	#portable-battery #faq .inner .qna-list p::before {
		left: 4rem;
	}


	/* お問い合わせ Tablet -----------------------*/
	#portable-battery #kantan {
		margin-bottom: 0;
	}

	#portable-battery #kantan .inner {
		width: 600px;
	}

	#portable-battery #kantan .inner th {
		font-size: 15px;
	}

	#portable-battery #kantan .inner .wpcf7-list-item-label {
		font-size: 12px;
	}

	#portable-battery #kantan .inner .inpt {
		width: 100%;
		padding: 0 2.5rem;
	}

	#portable-battery #kantan .inner .inpt input[type="url"],
	#portable-battery #kantan .inner .inpt input[type="text"],
	#portable-battery #kantan .inner .inpt input[type="date"],
	#portable-battery #kantan .inner .inpt input[type="tel"],
	#portable-battery #kantan .inner .inpt input[type="email"],
	#portable-battery #kantan .inner .inpt input[type="number"],
	#portable-battery #kantan .inner .inpt textarea,
	#portable-battery #kantan .inner .inpt select {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .wpcf7-form-control.has-spinner.wpcf7-submit {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .privacy p {
		font-size: 12px;
		text-align: center;
	}
}


/*----------------------
		PC
	----------------------*/
@media screen and (min-width: 1024px) {

	/* KV & Nav PC -----------------------*/
	#portable-battery .pb-header {
		width: var(--inner);
	}

	#portable-battery .kv_left {
		width: 40%;
	}

	#portable-battery nav ul {
		justify-content: space-around;
		width: 400px;
	}

	#portable-battery nav li {
		width: calc(50% - 12px);
	}

	#portable-battery .pb-header .kv_right {
		margin-left: 2rem;
	}


	/* こんな悩みありませんか？ PC -----------------------*/
	#portable-battery #nayami h2 i {
		font-size: 4.5rem;
	}

	#portable-battery #nayami h2::before {
		display: none;
	}

	#portable-battery #nayami ul li i {
		margin-right: 10px;
	}

	#portable-battery #nayami img.illust {
		right: 30px;
		bottom: -40px;
		width: 200px;
	}


	/* 活用のメリット PC -----------------------*/
	#portable-battery #merit ul {
		width: 80%;
		grid-template-columns: 1fr 1fr;
	}

	#portable-battery #merit ul li {
		width: calc(100% - 20px);
		border-radius: var(--radius-pc);
	}

	#portable-battery #merit ul li img {
		width: 130px;
	}

	#portable-battery #merit img.illust {
		position: absolute;
		top: 300px;
		left: -200px;
		display: block;
		width: 250px;
	}


	/* おすすめ活用方法 PC -----------------------*/
	#portable-battery #how2use .inner .illust {
		right: -6px;
		bottom: -60px;
		width: 285px;
	}

	#portable-battery #how2use ul.better-place {
		margin: 3rem auto;
	}

	#portable-battery #how2use ul.better-place li .tit01,
	#portable-battery #how2use ul.better-place li .tit02 {
		font-size: 22px;
	}

	#portable-battery #how2use ul.better-place li .tit01::before {
		width: 90px;
	}

	#portable-battery #how2use ul.better-place li .tit02::before {
		width: 50px;
	}

	#portable-battery #how2use ul.better-place li .list ul li {
		font-size: 14px;
	}

	#portable-battery #how2use .inner.ob {
		width: 610px;
	}


	/* おすすめ商品 PC -----------------------*/
	#portable-battery .product-list {
		width: var(--container);
		grid-template-columns: repeat(4, 1fr);
		gap: 1rem;
	}

	#portable-battery .product {
		padding: 2rem;
	}

	#portable-battery .product figure {
		width: fit-content;
	}

	#portable-battery .annotation {
		display: flex;
		margin: 1rem auto;
		width: fit-content;
		justify-content: space-evenly;
		font-size: 12px;
		letter-spacing: 1px;
	}

	#portable-battery .annotation p {
		margin: 0 20px;
	}

	/* よくある質問 PC -----------------------*/
	#portable-battery #faq .inner .qna-list summary {
		padding: 1em 2em 1em 5em;
		font-size: 18px;
		font-weight: 600;
	}

	#portable-battery #faq .inner .qna-list summary::before {
		left: 2em;
		font-size: 24px;
	}

	#portable-battery #faq .inner .qna-list p {
		padding: 2rem 9rem .5rem;
	}

	#portable-battery #faq .inner .qna-list p::before {
		left: 6rem;
		font-size: 20px;
	}


	/* お問い合わせ PC -----------------------*/
	#portable-battery #kantan .inner {
		width: 800px;
		border-radius: var(--radius-pc);
	}

	#portable-battery #kantan .inner th {
		font-size: 15px;
	}

	#portable-battery #kantan .inner .wpcf7-list-item-label {
		font-size: 12px;
	}

	#portable-battery #kantan .inner .inpt {
		width: 100%;
		padding: 0 2.5rem;
	}

	#portable-battery #kantan .inner .inpt input[type="url"],
	#portable-battery #kantan .inner .inpt input[type="text"],
	#portable-battery #kantan .inner .inpt input[type="date"],
	#portable-battery #kantan .inner .inpt input[type="tel"],
	#portable-battery #kantan .inner .inpt input[type="email"],
	#portable-battery #kantan .inner .inpt input[type="number"],
	#portable-battery #kantan .inner .inpt textarea,
	#portable-battery #kantan .inner .inpt select {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .wpcf7-form-control.has-spinner.wpcf7-submit {
		font-size: 14px;
	}

	#portable-battery #kantan .inner .privacy p {
		font-size: 12px;
		text-align: center;
	}
}